diff options
author | Fatih Degirmenci <fdegir@gmail.com> | 2018-03-21 16:47:55 +0100 |
---|---|---|
committer | Fatih Degirmenci <fdegir@gmail.com> | 2018-03-21 16:50:44 +0100 |
commit | a3dc7a6e17f954e32eb692da4e65994bde39b787 (patch) | |
tree | 59baa7637e7b206c979d1583890457df474a5cf4 /xci/installer | |
parent | 8cb2bc0cdf0565ce59546b1ec2aac513fb7fecaa (diff) |
Use package_state:present to avoid package installation issues
Using package_state:present should give our jobs better chance
to finish on time and perhaps improve the overall deployment times
even.
Change-Id: Ifa4e01318fe364a91c32f5326024d34c364e25c8
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Diffstat (limited to 'xci/installer')
-rw-r--r-- | xci/installer/osa/files/ha/user_variables.yml | 3 | ||||
-rw-r--r-- | xci/installer/osa/files/mini/user_variables.yml | 3 | ||||
-rw-r--r-- | xci/installer/osa/files/noha/user_variables.yml | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/xci/installer/osa/files/ha/user_variables.yml b/xci/installer/osa/files/ha/user_variables.yml index ea349456..c6f1b065 100644 --- a/xci/installer/osa/files/ha/user_variables.yml +++ b/xci/installer/osa/files/ha/user_variables.yml @@ -21,6 +21,9 @@ # # Debug and Verbose options. debug: false +# package_state: present should give us a better chance to finish +package_state: present + # Allow root logins security_sshd_permit_root_login: yes diff --git a/xci/installer/osa/files/mini/user_variables.yml b/xci/installer/osa/files/mini/user_variables.yml index c812f1df..9fb2001e 100644 --- a/xci/installer/osa/files/mini/user_variables.yml +++ b/xci/installer/osa/files/mini/user_variables.yml @@ -21,6 +21,9 @@ # # Debug and Verbose options. debug: false +# package_state: present should give us a better chance to finish +package_state: present + # Allow root logins security_sshd_permit_root_login: yes diff --git a/xci/installer/osa/files/noha/user_variables.yml b/xci/installer/osa/files/noha/user_variables.yml index 91ceba2d..95450937 100644 --- a/xci/installer/osa/files/noha/user_variables.yml +++ b/xci/installer/osa/files/noha/user_variables.yml @@ -21,6 +21,9 @@ # # Debug and Verbose options. debug: false +# package_state: present should give us a better chance to finish +package_state: present + # Allow root logins security_sshd_permit_root_login: yes |