blob: 8c6c98c8e98feca68d1b8bf679a9f47c637451ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/bash
uid=`id -u`
if [ "$uid" != "0" ]; then
echo "Must be root to run this script. Use sudo /bin/bash first"
exit 1
fi
apt-get clean
if [ -f /etc/icpc/postgresql.version ]; then
. /etc/icpc/postgresql.version
else
POSTGRESV=""
if [ ! -f /etc/init.d/postgresql ]; then
POSTGRESV="-8.4"
fi
fi
pass=\$`echo -n icpc | makepasswd --clearfrom - --crypt-md5 | cut -d'$' -f2-`
usermod -p "$pass" icpc
rm -f /etc/icpc/.isserver
rm -f /etc/icpc/.firsttimedone
rm -f /etc/icpc/bocaserver.sh
/etc/icpc/cleandisk.sh
/etc/init.d/apache2 stop
/etc/init.d/postgresql$POSTGRESV stop
rm -f /var/log/apache2/*
rm -f /var/log/postgresql/*
update-rc.d -f apache2 remove
update-rc.d -f postgresql$POSTGRESV remove
|