There is no enabled column here.
This commit is contained in:
parent
4a77be6bfe
commit
7e797ac45b
1 changed files with 2 additions and 2 deletions
|
@ -72,8 +72,8 @@ BEGIN;
|
|||
-- add our staging builders, dynamically pulled from ansible inventory
|
||||
select now() as time, 'adding extra host(s)' as msg;
|
||||
|
||||
{% for host in groups['buildvm-stg'] %}
|
||||
insert into users (name, usertype, status, enabled) values ('{{ host }}', 1, 0, True);
|
||||
{% for host in groups['buildvm-stg'] + groups['koji-stg'] %}
|
||||
insert into users (name, usertype, status) values ('{{ host }}', 1, 0);
|
||||
insert into host (user_id, name, arches) values (
|
||||
(select id from users where name='{{host}}'), '{{host}}', 'i386 x86_64');
|
||||
insert into host_channels (host_id, channel_id) values (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue