add missing commas to fix yaml syntax error
Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
parent
da825870d1
commit
79a170bfb0
1 changed files with 6 additions and 6 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue