add missing commas to fix yaml syntax error

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2016-04-07 22:04:55 +00:00
parent da825870d1
commit 79a170bfb0

View file

@ -102,9 +102,9 @@
auth: { auth: {
type: basic, type: basic,
basic: { basic: {
destdir: "/etc/httpd/" destdir: "/etc/httpd/",
userfile_src: "{{private}}/files/httpd/osbs.htpasswd" userfile_src: "{{private}}/files/httpd/osbs.htpasswd",
userfile_dest: "osbs.htpasswd" userfile_dest: "osbs.htpasswd",
} }
}, },
when: env == "staging" when: env == "staging"
@ -122,9 +122,9 @@
auth: { auth: {
type: basic, type: basic,
basic: { basic: {
destdir: "/etc/httpd/" destdir: "/etc/httpd/",
userfile_src: "{{private}}/files/httpd/osbs.htpasswd" userfile_src: "{{private}}/files/httpd/osbs.htpasswd",
userfile_dest: "osbs.htpasswd" userfile_dest: "osbs.htpasswd",
} }
}, },
when: env == "staging" when: env == "staging"