Skip to content

Commit

Permalink
traymonitor: prevent execute bit on configuration files
Browse files Browse the repository at this point in the history
Fixes #1195: Permissions of the configuration files in /etc/bareos/tray-monitor.d/
  • Loading branch information
joergsteffens committed Jun 10, 2020
1 parent b1d6a4c commit 6953ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/debian/bareos-traymonitor.postinst.in
Expand Up @@ -25,7 +25,7 @@ permissions()
{
CONFIGDIR="@confdir@/tray-monitor.d/"
chown -R root:${daemon_group} ${CONFIGDIR}
chmod -R 755 ${CONFIGDIR}
chmod -R u=rwX,go=rX ${CONFIGDIR}
}

case "$1" in
Expand Down

0 comments on commit 6953ab8

Please sign in to comment.