diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | cloudinit/config/cc_salt_minion.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ 0.6.4: - support relative path in AuthorizedKeysFile (LP: #970071). - make apt-get update run with --quiet (suitable for logging) (LP: #1012613) + - cc_salt_minion: use package 'salt-minion' rather than 'salt' (LP: #996166) 0.6.3: - add sample systemd config files [Garrett Holmstrom] - add Fedora support [Garrent Holstrom] (LP: #883286) diff --git a/cloudinit/config/cc_salt_minion.py b/cloudinit/config/cc_salt_minion.py index ff90d07a..79ed8807 100644 --- a/cloudinit/config/cc_salt_minion.py +++ b/cloudinit/config/cc_salt_minion.py @@ -31,7 +31,7 @@ def handle(name, cfg, cloud, log, _args): salt_cfg = cfg['salt_minion'] # Start by installing the salt package ... - cloud.distro.install_packages(["salt"]) + cloud.distro.install_packages(["salt-minion"]) # Ensure we can configure files at the right dir config_dir = cloud.paths.join(False, salt_cfg.get("config_dir", |