Next round of updates for legacy-install-afs-with-puppet

We need to quote "false" for SETUP_PIP, other wise yaml will convert
it to False.

Run puppet as root and clean up a puppet warning.

Change-Id: Ibb1d67bb8c95b99af7e9b5d1b28cd51cd9ba5089
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-09-22 19:47:46 -04:00
parent 94a988033a
commit dd2049f0c9
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
class { 'openafs::client':
class { '::openafs::client':
cell => 'openstack.org',
realm => 'OPENSTACK.ORG',
admin_server => 'kdc.openstack.org',

View File

@ -4,7 +4,7 @@
chdir: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/system-config"
environment:
# Skip setting up pip, our images have already done this.
SETUP_PIP: false
SETUP_PIP: "false"
become: yes
- name: Copy reduced scope modules.env into place
@ -26,3 +26,4 @@
- name: Run puppet
puppet:
manifest: "{{ ansible_user_dir }}/manifest.pp"
become: yes