diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php
index 94adf1b43f3635491ac9798bb0917efee8e40b0d..daef564b446134d8f9e05ca3c2c5d986f1e1217d 100644
--- a/install/lib/installer_base.lib.php
+++ b/install/lib/installer_base.lib.php
@@ -700,6 +700,12 @@ class installer_base {
 		// Make the Clamav log files readable by ISPConfig
 		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');
+		
 	}
 	
 	public function install_crontab()