[ansible] Fixup packages and add koji cert tag
by Nicolas Chauvet
commit f81b3e70ca118ccdb180be31bdaf2f7423a5f01e
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Oct 8 18:22:17 2019 +0200
Fixup packages and add koji cert tag
roles/koji_builder/tasks/main.yml | 14 ++++----------
1 files changed, 4 insertions(+), 10 deletions(-)
---
diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml
index 67681f0..6924367 100644
--- a/roles/koji_builder/tasks/main.yml
+++ b/roles/koji_builder/tasks/main.yml
@@ -76,19 +76,15 @@
name:
- koji-builder
- koji-builder-plugins
- - python2-koji
- - python-krbV
+ - python3-koji
- koji-containerbuild-builder
- strace
- mock
- kernel-firmware
- kernel-modules
- - ntp
- - ntpdate
- rsyslog
- audit
- - pycdio
- - python-kickstart
+ - python3-kickstart
- libvirt-client
- oz
- imagefactory
@@ -100,11 +96,7 @@
- imagefactory-plugins-OVA
- imagefactory-plugins-EC2
- imagefactory-plugins-RHEVM
- - python-psphere
- - VMDKstream
- - pykickstart
- nosync
- - yum
tags:
- koji_builder
@@ -187,6 +179,8 @@
- name: copy over builder cert to /etc/kojid/kojibuilder.pem
copy: src="{{ private }}/files/koji/buildercerts/{{ inventory_hostname }}.pem" dest=/etc/kojid/kojibuilder.pem mode=600
+ tags:
+ - koji_builder_certs
# oz.cfg upstream ram and cpu definitions are not enough
- name: oz.cfg
5 years, 2 months
[ansible] Drop some global packages
by Nicolas Chauvet
commit c8095e06afd30917cf12fc3299f6026b073d092f
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Oct 8 18:21:50 2019 +0200
Drop some global packages
vars/global.yml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/vars/global.yml b/vars/global.yml
index 4f16050..9d4f968 100644
--- a/vars/global.yml
+++ b/vars/global.yml
@@ -65,7 +65,7 @@ hostbase: transient
global_pkgs_inst: ['bind-utils', 'mailx', 'nc', 'openssh-clients',
'patch', 'postfix', 'rsync', 'strace',
'tmpwatch', 'traceroute', 'vim-enhanced', 'xz', 'zsh',
- 'libselinux-python', 'ntpdate', 'bash-completion', 'telnet',
+ 'bash-completion', 'telnet',
'atop', 'htop', 'rsyslog' ]
# Set up variables for various files to make sure we don't forget to use.
repoSpanner_rpms_http: 8445
5 years, 2 months
[ansible] Disable ntpd stop
by Nicolas Chauvet
commit f0b89ffb901e999557ba5a630eb054cd1aa344c2
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Oct 8 18:21:09 2019 +0200
Disable ntpd stop
roles/chrony/tasks/main.yml | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
---
diff --git a/roles/chrony/tasks/main.yml b/roles/chrony/tasks/main.yml
index 2e5609f..b1ad9ba 100644
--- a/roles/chrony/tasks/main.yml
+++ b/roles/chrony/tasks/main.yml
@@ -12,14 +12,6 @@
- config
- base
-- name: disable and stop ntp
- service: name=ntpd state=stopped enabled=no
- tags:
- - chrony
- - service
- - base
- when: ansible_distribution_major_version|int != 8
-
- name: Start and enable chrony
service: name=chronyd state=started enabled=yes
tags:
5 years, 2 months
[ansible] Disable keepalive
by Nicolas Chauvet
commit 4510cc229d04972ce90214aacc1c8e4edf5de072
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Oct 8 18:20:39 2019 +0200
Disable keepalive
roles/koji_builder/templates/kojid.conf | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/roles/koji_builder/templates/kojid.conf b/roles/koji_builder/templates/kojid.conf
index 68e9e79..1a60b48 100644
--- a/roles/koji_builder/templates/kojid.conf
+++ b/roles/koji_builder/templates/kojid.conf
@@ -11,9 +11,6 @@ maxjobs=4
; The directory root where work data can be found from the koji hub
; topdir=/mnt/koji
-; Disable keepalive for now since it's not working in f23.
-keepalive=False
-
{% if inventory_hostname.startswith('arm') %}
rpmbuild_timeout=259200
{% else %}
5 years, 2 months