1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-09-19 15:30:34 +00:00

Replace deprecated squash_actions syntax

This commit is contained in:
Kris Lamoureux 2020-05-22 12:28:31 -04:00
parent f920594f53
commit 404d0c56af
Signed by: kris
GPG Key ID: A30022791E1719A4
3 changed files with 9 additions and 41 deletions

View File

@ -1,11 +1,7 @@
- name: install mysql, mariadb packages
yum:
name: '{{ item }}'
name: ['mysql-devel', 'mariadb-server', 'MySQL-python']
become: yes
with_items:
- mysql-devel
- mariadb-server
- MySQL-python
- name: manage MySql/MariaDB database service
service:

View File

@ -1,20 +1,9 @@
- name: install redmine package depdendencies
yum:
name: '{{ item }}'
name: ['mysql-devel', 'unzip', 'rubygems', 'ruby-devel', 'libuuid-devel',
'zlib-devel', 'openssl-devel', 'gcc-c++', 'ImageMagick-devel',
'expect', 'subversion', 'git']
become: yes
with_items:
- mysql-devel
- unzip
- rubygems
- ruby-devel
- libuuid-devel
- zlib-devel
- openssl-devel
- gcc-c++
- ImageMagick-devel
- expect # for install_wrapper
- subversion # Repository integration
- git # Repository integration
# these gems are not user_install but the RVM path is for local redmine
# user so installations are localized to rvm1_install_path (e.g. ~/.rvm)

View File

@ -3,29 +3,12 @@
- name: install system tools
yum:
name: '{{ item }}'
name: ['rsync', 'strace', 'nmap', 'yum-utils', 'sendmail',
'nfs-utils', 'vim-enhanced', 'tmpwatch', 'ntpdate',
'at', 'cronie-noanacron', 'ruby', 'mailx', 'crontabs',
'logrotate', 'which', 'net-tools', 'lsof', 'screen',
'mlocate']
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
- name: manage sendmail service
service: