From 14b9778c50b80bceea7631ac754460ae6b7b9141 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Mon, 14 Jul 2014 18:49:27 +0000 Subject: [PATCH] [RPM Packaging] small fix in the install script to adjust the rights in /etc/httpd/conf.d SVN:trunk[3270] --- setup/install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/install/install.sh b/setup/install/install.sh index 94dd675ec..3d0463c1e 100644 --- a/setup/install/install.sh +++ b/setup/install/install.sh @@ -94,6 +94,6 @@ fi # Substitute variables for templates sed -e "s~_ITOP_NAME_~$_ITOP_NAME_~g" -e "s~_ITOP_SYSCONFDIR_~$subconf~g" -e "s~_ITOP_DATADIR_~$sublocal/share~g" -e "s~_ITOP_LOGDIR_~$subvar/log~g" ./web/setup/install/apache.conf.tpl > $webconf/conf.d/$_ITOP_NAME_.conf sed -e "s~_ITOP_NAME_~$_ITOP_NAME_~g" -e "s~_ITOP_SYSCONFDIR_~$subconf~g" -e "s~_ITOP_DATADIR_~$sublocal/share~g" -e "s~_ITOP_LOGDIR_~$subvar/log~g" ./web/setup/install/cron.tpl > $conf/../cron.d/$_ITOP_NAME_ -chmod 644 $_ITOP_WEBCONFDIR_/conf.d/$_ITOP_NAME_.conf $conf/../cron.d/$_ITOP_NAME_ +chmod 644 $webconf/conf.d/$_ITOP_NAME_.conf $conf/../cron.d/$_ITOP_NAME_ exit 0