diff options
author | Markos Chandras <mchandras@suse.de> | 2017-09-28 08:01:45 +0100 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2017-09-28 08:44:13 +0100 |
commit | eaf4a782fb3dc672180ac9551e00e02624057223 (patch) | |
tree | 8af5259f7787f162ab512e7ca1378280566d6b9f /xci/playbooks | |
parent | a9ec5d588eaeece632ad9f0e5f27b7313a291d6a (diff) |
xci: configure-opnfvhost: Do not check /etc/ssl/certs on SUSE
This is similar to Ibc188b76f47c4f7d1c5aa452a21e838420d65e6a
/etc/ssl/certs is a symlink so skip this task on SUSE.
Change-Id: Iae38640501748dc3dd802ce795acfaeefd836c97
Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci/playbooks')
-rw-r--r-- | xci/playbooks/configure-opnfvhost.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xci/playbooks/configure-opnfvhost.yml b/xci/playbooks/configure-opnfvhost.yml index 7b16c5aa..73516d5a 100644 --- a/xci/playbooks/configure-opnfvhost.yml +++ b/xci/playbooks/configure-opnfvhost.yml @@ -123,6 +123,7 @@ file: path: "/etc/ssl/certs" state: directory + when: ansible_pkg_mgr != 'zypper' - name: create key directory /etc/ssl/private file: path: "/etc/ssl/private" |