Hi all,
I tried to update Git Master 20131121 with the update-script 0.9 today - it seems to stop working performing step 20 of 22 and there at step 13 of 13: "Processing Htgroup (tochange) tasks: statistics:5 (ID5)". No error-message, but no more change of the message since nearly two hours.
Here is the update-script:
Shell-Script
- #!/bin/sh
- #
- # i-MSCP automatic Update process Debian
- # Version: 0.0.9
- # License: GPLv2
- # Author : gOOvER
- # Author : i-MSCP Team
- # Credits: i-mscp development Team
- #==== Installing/Updating distro packages ====
- aptitude update && aptitude safe-upgrade
- aptitude install -y git lsb-release
- #==== Downloading current git/master branch state ====
- echo "#### CLONING i-MSCP git/master branch ####"
- mkdir -p /usr/local/src/imscp
- if [ ! -d /usr/local/src/imscp/.git ]; then
- git clone git://github.com/i-MSCP/imscp.git /usr/local/src/imscp
- else
- cd /usr/local/src/imscp
- git pull
- fi
- #==== Start i-MSCP installer ====
- perl /usr/local/src/imscp/imscp-autoinstall
/etc/cron.d/imscp is temporarily renamed and imscp-processes are killed
System is Ubuntu 10.4
Any Idea, what's going wrong?