mirror of https://github.com/zulip/zulip.git
puppet: Allow /etc/zulip to be a symlink.
This PR updates the puppet manifest to allow /etc/zulip to be a symlink. The current behaviour overwrites /etc/zulip if it is link to another directory, which is problematic with docker-zulip and in particular the `LINK_SETTINGS_TO_DATA` setting.
This commit is contained in:
parent
bcb8def308
commit
fd34bc5161
|
@ -119,6 +119,7 @@ class zulip::base {
|
|||
mode => '0644',
|
||||
owner => 'zulip',
|
||||
group => 'zulip',
|
||||
links => 'follow',
|
||||
}
|
||||
file { ['/etc/zulip/zulip.conf', '/etc/zulip/settings.py']:
|
||||
ensure => 'file',
|
||||
|
|
Loading…
Reference in New Issue