2017-06-21 22:00:48 +00:00
|
|
|
Index: cloud-init-0.7.9/cloudinit/distros/rhel.py
|
|
|
|
===================================================================
|
|
|
|
--- cloud-init-0.7.9.orig/cloudinit/distros/rhel.py
|
|
|
|
+++ cloud-init-0.7.9/cloudinit/distros/rhel.py
|
|
|
|
@@ -190,13 +190,18 @@ class Distro(distros.Distro):
|
2015-02-20 02:14:45 +00:00
|
|
|
if pkgs is None:
|
|
|
|
pkgs = []
|
|
|
|
|
|
|
|
- cmd = ['yum']
|
|
|
|
- # If enabled, then yum will be tolerant of errors on the command line
|
|
|
|
- # with regard to packages.
|
|
|
|
- # For example: if you request to install foo, bar and baz and baz is
|
|
|
|
- # installed; yum won't error out complaining that baz is already
|
|
|
|
- # installed.
|
|
|
|
- cmd.append("-t")
|
2017-06-21 22:00:48 +00:00
|
|
|
+ if util.which('dnf'):
|
|
|
|
+ LOG.debug('Using DNF for package management')
|
2015-02-20 02:14:45 +00:00
|
|
|
+ cmd = ['dnf']
|
|
|
|
+ else:
|
2017-06-21 22:00:48 +00:00
|
|
|
+ LOG.debug('Using YUM for package management')
|
|
|
|
+ # the '-t' argument makes yum tolerant of errors on the command
|
|
|
|
+ # line with regard to packages.
|
|
|
|
+ #
|
|
|
|
+ # For example: if you request to install foo, bar and baz and baz
|
|
|
|
+ # is installed; yum won't error out complaining that baz is already
|
2017-01-20 17:56:07 +00:00
|
|
|
+ # installed.
|
2015-02-20 02:14:45 +00:00
|
|
|
+ cmd = ['yum', '-t']
|
|
|
|
# Determines whether or not yum prompts for confirmation
|
|
|
|
# of critical actions. We don't want to prompt...
|
|
|
|
cmd.append("-y")
|