mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-12 23:50:34 +00:00
44 lines
699 B
YAML
44 lines
699 B
YAML
|
|
- import_tasks: addswap.yml
|
|
|
|
- name: install system tools
|
|
yum:
|
|
name: '{{ item }}'
|
|
become: yes
|
|
with_items:
|
|
- rsync
|
|
- strace
|
|
- nmap
|
|
- yum-utils
|
|
- sendmail
|
|
- at
|
|
- nfs-utils
|
|
- vim-enhanced
|
|
- tmpwatch
|
|
- ntpdate
|
|
- cronie-noanacron
|
|
- ruby
|
|
- mailx
|
|
- crontabs
|
|
- logrotate
|
|
- which
|
|
- net-tools
|
|
- lsof
|
|
- screen
|
|
- mlocate
|
|
|
|
- service:
|
|
name: sendmail
|
|
state: started
|
|
enabled: yes
|
|
become: yes
|
|
|
|
- name: set up redmine user mail aliases
|
|
lineinfile:
|
|
dest: /etc/aliases
|
|
regexp: "^{{ redmine_owner }}"
|
|
line: "{{ redmine_owner }}: {{ redmine_mail_alias }}"
|
|
become: yes
|
|
notify: rebuild mail aliases
|
|
|