Fixed issue #199 - set permissions properly for /etc/cron.d/msm

This commit is contained in:
Dave Fallon 2013-09-09 21:38:54 -07:00
parent 0ef89241d2
commit 8ab5471321

View File

@ -116,7 +116,7 @@ function install_config() {
# Installs msm.cron into /etc/cron.d # Installs msm.cron into /etc/cron.d
function install_cron() { function install_cron() {
install_log "Installing MSM cron file" 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) # Reloads cron service (if necessary)