diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-09-25 13:25:50 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-09-25 13:25:50 +0400 |
commit | c15004f402555df4886b18bba9a837288c6ef250 (patch) | |
tree | 3409606d234b9cec109bfd1de5f721ce6fccb421 /mcp/config | |
parent | eb06e7c953587d5448d7be1d703cac09aa23d8fc (diff) |
Run packages upgrade on openstack nodes only
Change-Id: I53ac0be519df1bb39a6a56e236285fce95228bd4
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/config')
-rwxr-xr-x | mcp/config/states/maas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mcp/config/states/maas b/mcp/config/states/maas index de9d699b9..e184e9120 100755 --- a/mcp/config/states/maas +++ b/mcp/config/states/maas @@ -115,6 +115,6 @@ wait_for 10 "! salt -C 'E@^(?!cfg01|mas01|kvm|cmp00).*' state.apply linux,ntp | wait_for 10 "salt -C 'E@^(?!cfg01|mas01|kvm|cmp00).*' ssh.set_auth_key ${SUDO_USER} \ $(awk 'NR==1{print $2}' "$(eval echo "~${SUDO_USER}/.ssh/authorized_keys")")" -# Get the latest packages -wait_for 10 "! salt '*' pkg.upgrade refresh=False | " \ +# Get the latest packages for openstack nodes +wait_for 10 "! salt -C 'E@^(?!cfg01|mas01|kvm).*' pkg.upgrade refresh=False | " \ "tee /dev/stderr | fgrep -q 'Not connected'" |