diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2017-03-23 15:14:05 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2017-03-23 15:14:05 +0000 |
commit | 46a7b9f5770fa96e1b5b31d97c27415458149108 (patch) | |
tree | 19ba2c409bce4b6c074df4e2a327a5411fabb3d0 | |
parent | 7f0c8479cca034fd82821e5764fb2d06924aa705 (diff) | |
download | ansible-46a7b9f5770fa96e1b5b31d97c27415458149108.tar.gz ansible-46a7b9f5770fa96e1b5b31d97c27415458149108.tar.xz ansible-46a7b9f5770fa96e1b5b31d97c27415458149108.zip |
I had assumed I would be lazy. Let's pretend that that's true
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
-rw-r--r-- | playbooks/manual/staging-sync/templates/koji-reset-staging.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql index aa0cea6cb..09a77cd23 100644 --- a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql +++ b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql @@ -154,7 +154,7 @@ insert into user_perms (user_id, perm_id, active, creator_id) values ( {% for username, principal in [('releng', 'compose/koji.stg.fedoraproject.org'), ('koschei', 'koschei/koschei-backend01.stg.phx2.fedoraproject.org'), ('hotness', 'hotness/hotness01.stg.phx2.fedoraproject.org'), - ('containerbuild', 'osbs/osbs.stg.fedoraproject.org@STG.FEDORAPROJECT.ORG')] %} + ('containerbuild', 'osbs/osbs.stg.fedoraproject.org')] %} update users set krb_principal='{{principal}}@STG.FEDORAPROJECT.ORG' where username='{{username}}'; {% endfir %} |