rename backup-server-state to dump-server-state #150

Closed
gcolpart wants to merge 518 commits from unstable into rename-backup-server-state
3 changed files with 17 additions and 0 deletions
Showing only changes of commit 68ac8fc058 - Show all commits

View file

@ -13,6 +13,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Added
* haproxy: add haproxy_allow_ip_nonlocal_bind to set sysctl value (optional)
* openvpn: configure logrotate
### Changed

View file

@ -0,0 +1,10 @@
/var/log/openvpn.log
{
weekly
rotate 52
missingok
notifempty
delaycompress
compress
copytruncate
}

View file

@ -149,6 +149,12 @@
value: "1"
sysctl_file: "/etc/sysctl.d/openvpn.conf"
- name: Configure logrotate for OpenVPN
copy:
src: logrotate_openvpn
dest: /etc/logrotate.d/openvpn
force: no
- name: Generate a password for the management interface
set_fact:
management_pwd: "{{ lookup('password', '/dev/null length=15 chars=ascii_letters,digits') }}"