From 8ab5471321af6d116984a0948f430c77c013a691 Mon Sep 17 00:00:00 2001 From: Dave Fallon Date: Mon, 9 Sep 2013 21:38:54 -0700 Subject: [PATCH] Fixed issue #199 - set permissions properly for /etc/cron.d/msm --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index dee2294..c824da3 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -116,7 +116,7 @@ function install_config() { # Installs msm.cron into /etc/cron.d function install_cron() { install_log "Installing MSM cron file" - sudo install "$dl_dir/msm.cron" /etc/cron.d/msm || install_error "Couldn't install cron file" + sudo install -m0644 "$dl_dir/msm.cron" /etc/cron.d/msm || install_error "Couldn't install cron file" } # Reloads cron service (if necessary)