ansible/roles/cgit/make_pkgs_list/tasks/main.yml
Patrick Uiterwijk 936e8b261a yum accepted pkg=, package calls it name=
Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
2017-10-09 00:38:26 +02:00

73 lines
2.3 KiB
YAML

---
# tasklist for setting up the CGit file list
- name: install semanage
package: name=/usr/sbin/semanage state=present
tags: cgit
- name: create the git root directory (/srv/git)
file: dest=/srv/git state=directory mode=0755
tags: cgit
- name: ensure the repo list file exists
copy: content="" dest=/srv/git/pkgs-git-repos-list force=no owner=apache group=apache mode=0644
tags: cgit
- name: install the script
copy: src=make-cgit-pkgs-list.sh dest=/usr/local/bin/make-cgit-pkgs-list.sh mode=0755
when: inventory_hostname.startswith('pkgs')
tags: cgit
- name: install the script for fedorapeople
copy: src=make-people-git.sh dest=/usr/local/bin/make-people-git.sh mode=0755
when: inventory_hostname.startswith('people')
tags: cgit
#
# For the batcave we just have a small static list
#
- name: install the file for batcave
copy: src=cgit-projects-batcave dest=/etc/cgit-projects-batcave mode=0644
when: inventory_hostname.startswith('batcave')
tags: cgit
- name: install the file for infinote
copy: src=cgit-projects-infinote dest=/etc/cgit-projects-infinote mode=0644
when: inventory_hostname.startswith('infinote')
tags: cgit
- name: install the cron job
cron: >
name="make-cgit-pkgs-list" cron_file="ansible-make-cgit-pkgs-list"
minute=*/10
user=root
job="/usr/local/bin/lock-wrapper make-cgit-pkgs-list '/usr/local/bin/make-cgit-pkgs-list.sh | /usr/local/bin/nag-once make-cgit-pkgs-list 1d 2>&1'"
when: inventory_hostname.startswith('pkgs')
tags: cgit
- name: install the cron job for fedora people cgit
cron: >
name="make-people-git" cron_file="make-people-git"
minute=*/10
user=root
job="/usr/local/bin/lock-wrapper make-people-git '/usr/local/bin/make-people-git.sh | /usr/local/bin/nag-once make-people-git 1d 2>&1'"
when: inventory_hostname.startswith('people')
tags: cgit
- name: check the selinux context of the repo list
command: matchpathcon /srv/git/pkgs-git-repos-list
register: gitlistcontext
check_mode: no
changed_when: false
tags:
- config
- cgit
- selinux
- name: set the SELinux policy for the repo list
command: semanage fcontext -a -t git_content_t "/srv/git/pkgs-git-repos-list"
when: gitlistcontext.stdout.find('git_content_t') == -1
tags:
- config
- cgit
- selinux