From 66768acec9ab538c978ac7f3a89c21009c7be18e Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 12 Mar 2009 14:48:52 -0400 Subject: [PATCH] Added a new update script. --- install/dist/lib/fedora.lib.php | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/install/dist/lib/fedora.lib.php b/install/dist/lib/fedora.lib.php index 3cb35f9..bc22bf3 100644 --- a/install/dist/lib/fedora.lib.php +++ b/install/dist/lib/fedora.lib.php @@ -735,10 +735,16 @@ //exec('chmod +r /var/log/clamav/clamav.log'); //exec('chmod +r /var/log/clamav/freshclam.log'); - //* Install the SVN update script - exec('cp ../helper_scripts/update_from_svn.sh /usr/local/bin/ispconfig_update_from_svn.sh'); - exec('chown root /usr/local/bin/ispconfig_update_from_svn.sh'); - exec('chmod 700 /usr/local/bin/ispconfig_update_from_svn.sh'); + //* Install the update script + if(is_file('/usr/local/bin/ispconfig_update_from_svn.sh')) unlink('/usr/local/bin/ispconfig_update_from_svn.sh'); + exec('chown root /usr/local/ispconfig/server/scripts/update_from_svn.sh'); + exec('chmod 700 /usr/local/ispconfig/server/scripts/update_from_svn.sh'); + exec('chown root /usr/local/ispconfig/server/scripts/update_from_tgz.sh'); + exec('chmod 700 /usr/local/ispconfig/server/scripts/update_from_tgz.sh'); + exec('chown root /usr/local/ispconfig/server/scripts/ispconfig_update.sh'); + exec('chmod 700 /usr/local/ispconfig/server/scripts/ispconfig_update.sh'); + exec('ln -s /usr/local/ispconfig/server/scripts/ispconfig_update.sh /usr/local/bin/ispconfig_update_from_svn.sh'); + exec('ln -s /usr/local/ispconfig/server/scripts/ispconfig_update.sh /usr/local/bin/ispconfig_update.sh'); // set the fast cgi starter script to executable // exec('chmod 755 '.$install_dir.'/interface/bin/php-fcgi'); -- Gitblit v1.9.1