Nuke some more only_if stragglers

This commit is contained in:
Kevin Fenzi 2013-11-25 19:10:22 +00:00
parent f0a29df52d
commit 4ea8fb7509
3 changed files with 9 additions and 9 deletions

View file

@ -9,7 +9,7 @@
postgresql_user: name=koji password=$aarch64kojidatabasepassword
tags:
- db
only_if: '$is_kojidb'
when: is_kojidb == "True"
#
# create a koji database if not already created
#
@ -17,7 +17,7 @@
postgresql_db: name=koji owner=koji encoding=UTF-8
tags:
- db
only_if: '$is_kojidb'
when: is_kojidb == "True"
#
# Load the initial schema and create a file to note that it's loaded now.
#
@ -25,5 +25,5 @@
shell: creates=/var/lib/pgql/koji-schema psql koji koji < /usr/share/doc/koji*/docs/schema.sql
tags:
- db
only_if: '$is_kojidb'
when: is_kojidb == "True"