From fd34bc516131112716e68d528499b0a66c99d371 Mon Sep 17 00:00:00 2001 From: pemontto <939704+pemontto@users.noreply.github.com> Date: Fri, 17 Apr 2020 20:45:05 +0100 Subject: [PATCH] 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. --- puppet/zulip/manifests/base.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/puppet/zulip/manifests/base.pp b/puppet/zulip/manifests/base.pp index cb7ce64a0f..15c5591114 100644 --- a/puppet/zulip/manifests/base.pp +++ b/puppet/zulip/manifests/base.pp @@ -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',