mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix subversion integration test on Fedora 29. (#51089)
* Fix subversion integration test on Fedora 29. This upgrades the sqlite-libs and subversion packages to make sure that the version of sqlite expected by subversion is installed. * Fix compatibility with RHEL and CentOS.
This commit is contained in:
parent
ce58ebf71d
commit
d4dbc7f2e0
2 changed files with 11 additions and 0 deletions
|
@ -12,6 +12,13 @@
|
|||
name: '{{ subversion_packages }}'
|
||||
state: present
|
||||
|
||||
- name: upgrade SVN pre-reqs
|
||||
package:
|
||||
name: '{{ upgrade_packages }}'
|
||||
state: latest
|
||||
when:
|
||||
- upgrade_packages | default([])
|
||||
|
||||
- name: create SVN home folder
|
||||
file:
|
||||
path: '{{ subversion_server_dir }}'
|
||||
|
|
|
@ -2,5 +2,9 @@
|
|||
subversion_packages:
|
||||
- mod_dav_svn
|
||||
- subversion
|
||||
upgrade_packages:
|
||||
# prevent sqlite from being out-of-sync with the version subversion was compiled with
|
||||
- subversion
|
||||
- sqlite
|
||||
apache_user: apache
|
||||
apache_group: apache
|
||||
|
|
Loading…
Reference in a new issue