Subversion Repositories ALCASAR

Rev

Rev 2221 | Rev 2226 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2221 Rev 2223
1
 
-
 
2
#!/bin/bash
1
#!/bin/bash
3
# $Id: alcasar-uninstall.sh 2221 2017-05-13 13:47:30Z richard $
2
# $Id: alcasar-uninstall.sh 2223 2017-05-14 14:38:01Z tom.houdayer $
4
 
3
 
5
# alcasar-uninstall.sh
4
# alcasar-uninstall.sh
6
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
5
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
7
# This script is distributed under the Gnu General Public License (GPL)
6
# This script is distributed under the Gnu General Public License (GPL)
8
 
7
 
9
# Désisntallation ou mise à jour d'ALCASAR
8
# Désisntallation ou mise à jour d'ALCASAR
10
# Uninstall or update ALCASAR
9
# Uninstall or update ALCASAR
11
 
10
 
12
usage="Usage: alcasar-uninstall.sh {-update or --update} | {-full or --full}"
11
usage="Usage: alcasar-uninstall.sh {-update or --update} | {-full or --full}"
13
SED="/bin/sed -i"
12
SED="/bin/sed -i"
14
 
13
 
15
nb_args=$#
14
nb_args=$#
16
args=$1
15
args=$1
17
if [ $nb_args -eq 0 ]
16
if [ $nb_args -eq 0 ]
18
then
17
then
19
	nb_args=1
18
	nb_args=1
20
	args="-h"
19
	args="-h"
21
fi
20
fi
22
case $args in
21
case $args in
23
	-\? | -h* | --h*)
22
	-\? | -h* | --h*)
24
		echo "$usage"
23
		echo "$usage"
25
		exit 0
24
		exit 0
26
		;;
25
		;;
27
	--update | -update)
26
	--update | -update)
28
		mode="update"
27
		mode="update"
29
		;;
28
		;;
30
	--full | -full)
29
	--full | -full)
31
		mode="full"
30
		mode="full"
32
		;;
31
		;;
33
	*)
32
	*)
34
		echo "Argument inconnu :$1";
33
		echo "Argument inconnu :$1";
35
		echo "$usage"
34
		echo "$usage"
36
		exit 1
35
		exit 1
37
		;;
36
		;;
38
esac
37
esac
39
 
38
 
40
clear
39
clear
41
if [ $mode == "full" ]
40
if [ $mode == "full" ]
42
then
41
then
43
	echo "----------------------------------------------------------------------------"
42
	echo "----------------------------------------------------------------------------"
44
	echo "**                     Uninstall/Désinstallation d'ALCASAR		**"
43
	echo "**                     Uninstall/Désinstallation d'ALCASAR		**"
45
	echo "----------------------------------------------------------------------------"
44
	echo "----------------------------------------------------------------------------"
46
	services="alcasar-load_balancing vnstat havp freshclam ntpd httpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban iptables ulogd-ext-access ulogd-ssh ulogd-traceability dansguardian dnsmasq sshd chilli"
45
	services="alcasar-load_balancing vnstat havp freshclam ntpd httpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban iptables ulogd-ext-access ulogd-ssh ulogd-traceability dansguardian dnsmasq sshd chilli"
47
	/usr/local/bin/alcasar-logout.sh all # logout everybody
46
	/usr/local/bin/alcasar-logout.sh all # logout everybody
48
else
47
else
49
	echo "----------------------------------------------------------------------------"
48
	echo "----------------------------------------------------------------------------"
50
	echo "**                     update/mise à jour d'ALCASAR			**"
49
	echo "**                     update/mise à jour d'ALCASAR			**"
51
	echo "----------------------------------------------------------------------------"
50
	echo "----------------------------------------------------------------------------"
52
	# dnsmasq & sshd should stay on to allow remote update
51
	# dnsmasq & sshd should stay on to allow remote update
53
	services="alcasar-load_balancing vnstat havp freshclam ntpd httpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban ulogd-ext-access ulogd-ssh ulogd-traceability dansguardian chilli"
52
	services="alcasar-load_balancing vnstat havp freshclam ntpd httpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban ulogd-ext-access ulogd-ssh ulogd-traceability dansguardian chilli"
54
	/usr/local/bin/alcasar-bypass.sh -on # to allow remote update
53
	/usr/local/bin/alcasar-bypass.sh -on # to allow remote update
55
fi
54
fi
56
echo "Stopping service : "
55
echo "Stopping service : "
57
/usr/local/bin/alcasar-sms.sh --stop
56
/usr/local/bin/alcasar-sms.sh --stop
58
for i in $services 
57
for i in $services 
59
do
58
do
60
	if [ -e /lib/systemd/system/$i.service ] 
59
	if [ -e /lib/systemd/system/$i.service ] 
61
	then
60
	then
62
		/usr/bin/systemctl disable $i.service
61
		/usr/bin/systemctl disable $i.service
63
	        /usr/bin/systemctl stop $i.service 1>/dev/null
62
	        /usr/bin/systemctl stop $i.service 1>/dev/null
64
		sleep 1
63
		sleep 1
65
	else
64
	else
66
		echo "The service $i.service doesn't exist !"
65
		echo "The service $i.service doesn't exist !"
67
	fi
66
	fi
68
done
67
done
69
echo "Check the service clearing"
68
echo "Check the service clearing"
70
for i in $services
69
for i in $services
71
do
70
do
72
	if [ `systemctl is-active $i.service` == "active" ]
71
	if [ `systemctl is-active $i.service` == "active" ]
73
	then
72
	then
74
		echo "The service '$i' need to be killed"
73
		echo "The service '$i' need to be killed"
75
		/usr/bin/systemctl stop $i.service
74
		/usr/bin/systemctl stop $i.service
76
		killall $i
75
		killall $i
77
	fi
76
	fi
78
done
77
done
79
echo "Reset ALCASAR main functions : "
78
echo "Reset ALCASAR main functions : "
80
echo -en "\n- init(1) : "
79
echo -en "\n- init(1) : "
81
# The files in /usr/local/ will be removed at the end (usefull here)
80
# The files in /usr/local/ will be removed at the end (usefull here)
82
rm -f /root/ALCASAR* && echo -n "1"
81
rm -f /root/ALCASAR* && echo -n "1"
83
sleep 1
82
sleep 1
84
 
83
 
85
echo -en "\n- ACC(11) : "
84
echo -en "\n- ACC(11) : "
86
[ -d /var/www/html ] && rm -rf /var/www/html && echo -n "1, "
85
[ -d /var/www/html ] && rm -rf /var/www/html && echo -n "1, "
87
[ -d /etc/freeradius-web ] && rm -rf /etc/freeradius-webl && echo -n "2, "
86
[ -d /etc/freeradius-web ] && rm -rf /etc/freeradius-webl && echo -n "2, "
88
[ -e /etc/php.ini.default ] && mv /etc/php.ini.default /etc/php.ini && echo -n "3, "
87
[ -e /etc/php.ini.default ] && mv /etc/php.ini.default /etc/php.ini && echo -n "3, "
89
[ -e /etc/httpd/conf/httpd.conf.default ] && mv /etc/httpd/conf/httpd.conf.default /etc/httpd/conf/httpd.conf && echo -n "4, "
88
[ -e /etc/httpd/conf/httpd.conf.default ] && mv /etc/httpd/conf/httpd.conf.default /etc/httpd/conf/httpd.conf && echo -n "4, "
90
[ -e /etc/httpd/conf/modules.d/00_base.conf.default ] && mv /etc/httpd/conf/modules.d/00_base.conf.default /etc/httpd/conf/modules.d/00_base.conf && echo -n "5, "
89
[ -e /etc/httpd/conf/modules.d/00_base.conf.default ] && mv /etc/httpd/conf/modules.d/00_base.conf.default /etc/httpd/conf/modules.d/00_base.conf && echo -n "5, "
91
[ -e /etc/httpd/conf/conf.d/ssl.conf.default ] && mv /etc/httpd/conf/conf.d/ssl.conf.default /etc/httpd/conf/conf.d/ssl.conf && echo -n "6, "
90
[ -e /etc/httpd/conf/conf.d/ssl.conf.default ] && mv /etc/httpd/conf/conf.d/ssl.conf.default /etc/httpd/conf/conf.d/ssl.conf && echo -n "6, "
92
[ -e /etc/httpd/conf/conf.d/multilang-errordoc.conf.default ] && mv /etc/httpd/conf/conf.d/multilang-errordoc.conf.default /etc/httpd/conf/conf.d/multilang-errordoc.conf && echo -n "7, "
91
[ -e /etc/httpd/conf/conf.d/multilang-errordoc.conf.default ] && mv /etc/httpd/conf/conf.d/multilang-errordoc.conf.default /etc/httpd/conf/conf.d/multilang-errordoc.conf && echo -n "7, "
93
[ -e /usr/share/httpd/error/include/top.html.default ] && mv /usr/share/httpd/error/include/top.html.default /usr/share/httpd/error/include/top.html && echo -n "8, "
92
[ -e /usr/share/httpd/error/include/top.html.default ] && mv /usr/share/httpd/error/include/top.html.default /usr/share/httpd/error/include/top.html && echo -n "8, "
94
[ -e /usr/share/httpd/error/include/bottom.html.default ] && mv /usr/share/httpd/error/include/bottom.html.default /usr/share/httpd/error/include/top.html && echo -n "9, "
93
[ -e /usr/share/httpd/error/include/bottom.html.default ] && mv /usr/share/httpd/error/include/bottom.html.default /usr/share/httpd/error/include/top.html && echo -n "9, "
95
[ -d /usr/local/etc/digest ] && rm -rf /usr/local/etc/digest && echo -n "10, "
94
[ -d /usr/local/etc/digest ] && rm -rf /usr/local/etc/digest && echo -n "10, "
96
[ -e /etc/httpd/conf/webapps.d/alcasar.conf ] && rm -f /etc/httpd/conf/webapps.d/alcasar.conf && echo -n "11"
95
[ -e /etc/httpd/conf/webapps.d/alcasar.conf ] && rm -f /etc/httpd/conf/webapps.d/alcasar.conf && echo -n "11"
97
sleep 1
96
sleep 1
98
 
97
 
99
echo -en "\n- CA(5) : "
98
echo -en "\n- CA(5) : "
100
[ -e /etc/pki/CA/alcasar-ca.crt ] && rm -f /etc/pki/CA/alcasar-ca.crt && echo -n "1, "
99
[ -e /etc/pki/CA/alcasar-ca.crt ] && rm -f /etc/pki/CA/alcasar-ca.crt && echo -n "1, "
101
[ -e /etc/pki/CA/private/alcasar-ca.key ] && rm -f /etc/pki/CA/private/alcasar-ca.key && echo -n "2, "
100
[ -e /etc/pki/CA/private/alcasar-ca.key ] && rm -f /etc/pki/CA/private/alcasar-ca.key && echo -n "2, "
102
[ -e /etc/pki/tls/certs/alcasar.crt ] && rm -f /etc/pki/tls/certs/alcasar.crt && echo -n "3, "
101
[ -e /etc/pki/tls/certs/alcasar.crt ] && rm -f /etc/pki/tls/certs/alcasar.crt && echo -n "3, "
103
[ -e /etc/pki/tls/private/alcasar.key ] && rm -f /etc/pki/tls/private/alcasar.key && echo -n "4, "
102
[ -e /etc/pki/tls/private/alcasar.key ] && rm -f /etc/pki/tls/private/alcasar.key && echo -n "4, "
104
[ -e /etc/httpd/conf/vhosts-ssl.default ] && FIC_VIRTUAL_SSL=`find /etc/httpd/conf -type f -name *default_ssl_vhost.conf` && mv /etc/httpd/conf/vhosts-ssl.default $FIC_VIRTUAL_SSL && echo -n "5"
103
[ -e /etc/httpd/conf/vhosts-ssl.default ] && FIC_VIRTUAL_SSL=`find /etc/httpd/conf -type f -name *default_ssl_vhost.conf` && mv /etc/httpd/conf/vhosts-ssl.default $FIC_VIRTUAL_SSL && echo -n "5"
105
sleep 1
104
sleep 1
106
 
105
 
107
echo -en "\n- time_server(2) : "
106
echo -en "\n- time_server(2) : "
108
[ -e /etc/ntp/step-tickers.default ] && mv /etc/ntp/step-tickers.default /etc/ntp/step-tickers && echo -n "1, "
107
[ -e /etc/ntp/step-tickers.default ] && mv /etc/ntp/step-tickers.default /etc/ntp/step-tickers && echo -n "1, "
109
[ -e /etc/ntp.conf.default ] && mv /etc/ntp.conf.default /etc/ntp.conf && echo -n "2"
108
[ -e /etc/ntp.conf.default ] && mv /etc/ntp.conf.default /etc/ntp.conf && echo -n "2"
110
 
109
 
111
echo -en "\n- init_db(2) : "
110
echo -en "\n- init_db(2) : "
112
[ -e /etc/my.cnf.default ] && mv -f /etc/my.cnf.default /etc/my.cnf && echo -n "1, "
111
[ -e /etc/my.cnf.default ] && mv -f /etc/my.cnf.default /etc/my.cnf && echo -n "1, "
113
[ -e /lib/systemd/system/mysqld.service.default ] && mv -f /lib/systemd/system/mysqld.service.default /lib/systemd/system/mysqld.service && echo -n "2"
112
[ -e /lib/systemd/system/mysqld.service.default ] && mv -f /lib/systemd/system/mysqld.service.default /lib/systemd/system/mysqld.service && echo -n "2"
114
/usr/bin/systemctl daemon-reload
113
/usr/bin/systemctl daemon-reload
115
rm -rf /var/lib/mysql
114
rm -rf /var/lib/mysql
116
sleep 1
115
sleep 1
117
 
116
 
118
echo -en "\n- radius(9) : "
117
echo -en "\n- radius(9) : "
119
[ -e /etc/raddb/empty-radiusd-db.sql ] && rm -f /etc/raddb/empty-radiusd-db.sql && echo -n "1, "
118
[ -e /etc/raddb/empty-radiusd-db.sql ] && rm -f /etc/raddb/empty-radiusd-db.sql && echo -n "1, "
120
[ -e /etc/raddb/radiusd.conf.default ] && mv /etc/raddb/radiusd.conf.default /etc/raddb/radiusd.conf && echo -n "2, "
119
[ -e /etc/raddb/radiusd.conf.default ] && mv /etc/raddb/radiusd.conf.default /etc/raddb/radiusd.conf && echo -n "2, "
121
[ -e /etc/raddb/sites-enabled/alcasar ] && rm /etc/raddb/sites-enabled/alcasar && echo -n "3, "
120
[ -e /etc/raddb/sites-enabled/alcasar ] && rm /etc/raddb/sites-enabled/alcasar && echo -n "3, "
122
[ -e /etc/raddb/sites-available/alcasar ] && rm /etc/raddb/sites-available/alcasar && echo -n "4, "
121
[ -e /etc/raddb/sites-available/alcasar ] && rm /etc/raddb/sites-available/alcasar && echo -n "4, "
123
[ -e /etc/raddb/clients.conf.default ] && mv /etc/raddb/clients.conf.default /etc/raddb/clients.conf && echo -n "5, "
122
[ -e /etc/raddb/clients.conf.default ] && mv /etc/raddb/clients.conf.default /etc/raddb/clients.conf && echo -n "5, "
124
[ -e /etc/raddb/sql.conf.default ] && mv /etc/raddb/sql.conf.default /etc/raddb/sql.conf && echo -n "6, "
123
[ -e /etc/raddb/sql.conf.default ] && mv /etc/raddb/sql.conf.default /etc/raddb/sql.conf && echo -n "6, "
125
[ -e /etc/raddb/sql/mysql/dialup.conf.default ] && mv /etc/raddb/sql/mysql/dialup.conf.default /etc/raddb/sql/mysql/dialup.conf && echo -n "7, "
124
[ -e /etc/raddb/sql/mysql/dialup.conf.default ] && mv /etc/raddb/sql/mysql/dialup.conf.default /etc/raddb/sql/mysql/dialup.conf && echo -n "7, "
126
[ -e /etc/raddb/sql/mysql/counter.conf.default ] && mv /etc/raddb/sql/mysql/counter.conf.default /etc/raddb/sql/mysql/counter.conf && echo -n "8, "
125
[ -e /etc/raddb/sql/mysql/counter.conf.default ] && mv /etc/raddb/sql/mysql/counter.conf.default /etc/raddb/sql/mysql/counter.conf && echo -n "8, "
127
[ -e /lib/systemd/system/radiusd.service.default ] && mv /lib/systemd/system/radiusd.service.default /lib/systemd/system/radiusd.service && echo -n "9"
126
[ -e /lib/systemd/system/radiusd.service.default ] && mv /lib/systemd/system/radiusd.service.default /lib/systemd/system/radiusd.service && echo -n "9"
128
sleep 1
127
sleep 1
129
 
128
 
130
echo -en "\n- chilli(4) : "
129
echo -en "\n- chilli(4) : "
131
[ -e /etc/init.d/chilli.default ] && mv /etc/init.d/chilli.default /etc/init.d/chilli && echo -n "1, "
130
[ -e /etc/init.d/chilli.default ] && mv /etc/init.d/chilli.default /etc/init.d/chilli && echo -n "1, "
132
[ -e /usr/libexec/chilli ] && rm /usr/libexec/chilli && echo -n "2, "
131
[ -e /usr/libexec/chilli ] && rm /usr/libexec/chilli && echo -n "2, "
133
[ -e /etc/chilli.conf.default ] && mv /etc/chilli.conf.default /etc/chilli.conf && echo -n "3, "
132
[ -e /etc/chilli.conf.default ] && mv /etc/chilli.conf.default /etc/chilli.conf && echo -n "3, "
134
[ -e /lib/systemd/system/chilli.service ] && rm /lib/systemd/system/chilli.service && echo -n "4"
133
[ -e /lib/systemd/system/chilli.service ] && rm /lib/systemd/system/chilli.service && echo -n "4"
135
sleep 1
134
sleep 1
136
 
135
 
137
echo -en "\n- dansguardian(8) : "
136
echo -en "\n- dansguardian(8) : "
138
[ -d /var/dansguardian ] && rm -rf /var/dansguardian && echo -n "1, "
137
[ -d /var/dansguardian ] && rm -rf /var/dansguardian && echo -n "1, "
139
[ -e /etc/dansguardian/dansguardian.conf.default ] && mv /etc/dansguardian/dansguardian.conf.default /etc/dansguardian/dansguardian.conf && echo -n "2, "
138
[ -e /etc/dansguardian/dansguardian.conf.default ] && mv /etc/dansguardian/dansguardian.conf.default /etc/dansguardian/dansguardian.conf && echo -n "2, "
140
[ -e /etc/dansguardian/lists/bannedphraselist.default ] && mv /etc/dansguardian/lists/bannedphraselist.default /etc/dansguardian/lists/bannedphraselist && echo -n "3, "
139
[ -e /etc/dansguardian/lists/bannedphraselist.default ] && mv /etc/dansguardian/lists/bannedphraselist.default /etc/dansguardian/lists/bannedphraselist && echo -n "3, "
141
[ -e /etc/dansguardian/dansguardianf1.conf.default ] && mv /etc/dansguardian/dansguardianf1.conf.default /etc/dansguardian/dansguardianf1.conf && echo -n "4, "
140
[ -e /etc/dansguardian/dansguardianf1.conf.default ] && mv /etc/dansguardian/dansguardianf1.conf.default /etc/dansguardian/dansguardianf1.conf && echo -n "4, "
142
[ -e /etc/dansguardian/lists/bannedextensionlist.default ] && mv /etc/dansguardian/lists/bannedextensionlist.default /etc/dansguardian/lists/bannedextensionlist && echo -n "5, "
141
[ -e /etc/dansguardian/lists/bannedextensionlist.default ] && mv /etc/dansguardian/lists/bannedextensionlist.default /etc/dansguardian/lists/bannedextensionlist && echo -n "5, "
143
[ -e /etc/dansguardian/lists/bannedmimetypelist.default ] && mv /etc/dansguardian/lists/bannedmimetypelist.default /etc/dansguardian/lists/bannedmimetypelist && echo -n "6, "
142
[ -e /etc/dansguardian/lists/bannedmimetypelist.default ] && mv /etc/dansguardian/lists/bannedmimetypelist.default /etc/dansguardian/lists/bannedmimetypelist && echo -n "6, "
144
[ -e /etc/dansguardian/lists/exceptioniplist.default ] && mv /etc/dansguardian/lists/exceptioniplist.default /etc/dansguardian/lists/exceptioniplist && echo -n "7, "
143
[ -e /etc/dansguardian/lists/exceptioniplist.default ] && mv /etc/dansguardian/lists/exceptioniplist.default /etc/dansguardian/lists/exceptioniplist && echo -n "7, "
145
[ -e /etc/dansguardian/lists/bannedsitelist.default ] && mv /etc/dansguardian/lists/bannedsitelist.default /etc/dansguardian/lists/bannedsitelist && echo -n "8"
144
[ -e /etc/dansguardian/lists/bannedsitelist.default ] && mv /etc/dansguardian/lists/bannedsitelist.default /etc/dansguardian/lists/bannedsitelist && echo -n "8"
146
sleep 1
145
sleep 1
147
 
146
 
148
echo -en "\n- antivirus(5) : "
147
echo -en "\n- antivirus(5) : "
149
if [ -e /etc/init.d/havp ] 
148
if [ -e /etc/init.d/havp ] 
150
then
149
then
151
	[ -e /etc/havp/havp.config.default ] && mv /etc/havp/havp.config.default /etc/havp/havp.config && echo -n "1, "
150
	[ -e /etc/havp/havp.config.default ] && mv /etc/havp/havp.config.default /etc/havp/havp.config && echo -n "1, "
152
	userdel -r havp 2>/dev/null && echo -n "2, "
151
	userdel -r havp 2>/dev/null && echo -n "2, "
153
	[ -e /etc/init.d/havp.default ] && mv /etc/init.d/havp.default /etc/init.d/havp && echo -n "3, "
152
	[ -e /etc/init.d/havp.default ] && mv /etc/init.d/havp.default /etc/init.d/havp && echo -n "3, "
154
	[ -e /lib/systemd/system/havp.service.default ] && mv /lib/systemd/system/havp.service.default /lib/systemd/system/havp.service && echo -n "4, "
153
	[ -e /lib/systemd/system/havp.service.default ] && mv /lib/systemd/system/havp.service.default /lib/systemd/system/havp.service && echo -n "4, "
155
	[ -e /etc/freshclam.conf.default ] && mv /etc/freshclam.conf.default /etc/freshclam.conf && echo -n "5"
154
	[ -e /etc/freshclam.conf.default ] && mv /etc/freshclam.conf.default /etc/freshclam.conf && echo -n "5"
156
else	echo -n "uninstalled"
155
else	echo -n "uninstalled"
157
fi
156
fi
158
sleep 1
157
sleep 1
159
 
158
 
160
echo -en "\n- tinyproxy(2) : "
159
echo -en "\n- tinyproxy(2) : "
161
if [ -e /etc/init.d/tinyproxy ] 
160
if [ -e /etc/init.d/tinyproxy ] 
162
then
161
then
163
	[ -e /etc/tinyproxy/tinyproxy.conf.default ] && mv /etc/tinyproxy/tinyproxy.conf.default /etc/tinyproxy/tinyproxy.conf && echo -n "1, "
162
	[ -e /etc/tinyproxy/tinyproxy.conf.default ] && mv /etc/tinyproxy/tinyproxy.conf.default /etc/tinyproxy/tinyproxy.conf && echo -n "1, "
164
	userdel -r tinyproxy 2>/dev/null && echo -n "2"
163
	userdel -r tinyproxy 2>/dev/null && echo -n "2"
165
else	echo -n "uninstalled"
164
else	echo -n "uninstalled"
166
fi
165
fi
167
sleep 1
166
sleep 1
168
 
167
 
169
echo -en "\n- ulogd(6) : "
168
echo -en "\n- ulogd(6) : "
170
i=0
169
i=0
171
for log_type in traceability ssh ext-access
170
for log_type in traceability ssh ext-access
172
do
171
do
173
	i=`expr $i + 1`
172
	i=`expr $i + 1`
174
	[ -e /etc/ulogd-$log_type.conf ] && rm -f /etc/ulogd-$log_type.conf && echo -n "$i, "
173
	[ -e /etc/ulogd-$log_type.conf ] && rm -f /etc/ulogd-$log_type.conf && echo -n "$i, "
175
	i=`expr $i + 1`
174
	i=`expr $i + 1`
176
	[ -e /lib/systemd/system/ulogd-$log_type.service ] && rm -f /lib/systemd/system/ulogd-$log_type.service && echo -n "$i, "
175
	[ -e /lib/systemd/system/ulogd-$log_type.service ] && rm -f /lib/systemd/system/ulogd-$log_type.service && echo -n "$i, "
177
done
176
done
178
sleep 1
177
sleep 1
179
 
178
 
180
echo -en "\n- nfsen(1) : "
179
echo -en "\n- nfsen(1) : "
181
[ -e /lib/systemd/system/nfsen.service ] && rm -f /lib/systemd/system/nfsen.service && echo -n "1"
180
[ -e /lib/systemd/system/nfsen.service ] && rm -f /lib/systemd/system/nfsen.service && echo -n "1"
182
sleep 1
181
sleep 1
183
 
182
 
184
echo -en "\n- vnstat(1) : "
183
echo -en "\n- vnstat(1) : "
185
[ -e /etc/vnstat.conf.default ] && mv /etc/vnstat.conf.default /etc/vnstat.conf && echo -n "1"
184
[ -e /etc/vnstat.conf.default ] && mv /etc/vnstat.conf.default /etc/vnstat.conf && echo -n "1"
186
sleep 1
185
sleep 1
187
 
186
 
188
echo -en "\n- dnsmasq(6 or 9) : "
187
echo -en "\n- dnsmasq(6 or 9) : "
189
if [ mode == "full " ] # don't remove dnsmasq in update mode (DHCP + DNS !)
188
if [ mode == "full " ] # don't remove dnsmasq in update mode (DHCP + DNS !)
190
then
189
then
191
	if [ -e /lib/systemd/system/dnsmasq.service ]
190
	if [ -e /lib/systemd/system/dnsmasq.service ]
192
	then
191
	then
193
		[ -e /etc/sysconfig/dnsmasq.default ] && mv /etc/sysconfig/dnsmasq.default /etc/sysconfig/dnsmasq && echo -n "1, "
192
		[ -e /etc/sysconfig/dnsmasq.default ] && mv /etc/sysconfig/dnsmasq.default /etc/sysconfig/dnsmasq && echo -n "1, "
194
		[ -e /etc/dnsmasq.conf.default ] && mv /etc/dnsmasq.conf.default /etc/dnsmasq.conf && echo -n "2, "
193
		[ -e /etc/dnsmasq.conf.default ] && mv /etc/dnsmasq.conf.default /etc/dnsmasq.conf && echo -n "2, "
195
		[ -e /lib/systemd/system/dnsmasq.service.default ] && mv /lib/systemd/system/dnsmasq.service.default /lib/systemd/system/dnsmasq.service && echo -n "3, "
194
		[ -e /lib/systemd/system/dnsmasq.service.default ] && mv /lib/systemd/system/dnsmasq.service.default /lib/systemd/system/dnsmasq.service && echo -n "3, "
196
		i=3
195
		i=3
197
	else
196
	else
198
		i=0
197
		i=0
199
	fi
198
	fi
200
fi
199
fi
201
for list in blacklist whitelist blackhole
200
for list in blacklist whitelist blackhole
202
do
201
do
203
	i=`expr $i + 1`
202
	i=`expr $i + 1`
204
	[ -e /etc/dnsmasq-$list.conf ] && rm /etc/dnsmasq-$list.conf && echo -n "$i, "
203
	[ -e /etc/dnsmasq-$list.conf ] && rm /etc/dnsmasq-$list.conf && echo -n "$i, "
205
	i=`expr $i + 1`
204
	i=`expr $i + 1`
206
	[ -e /lib/systemd/system/dnsmasq-$list.service ] && rm /lib/systemd/system/dnsmasq-$list.service && echo -n "$i, "
205
	[ -e /lib/systemd/system/dnsmasq-$list.service ] && rm /lib/systemd/system/dnsmasq-$list.service && echo -n "$i, "
207
done
206
done
208
sleep 1
207
sleep 1
209
 
208
 
210
echo -en "\n- fail2ban(8) : "
209
echo -en "\n- fail2ban(8) : "
211
[ -e /etc/fail2ban/fail2ban.conf.default ] && mv /etc/fail2ban/fail2ban.conf.default /etc/fail2ban/fail2ban.conf && echo -n "1, "
210
[ -e /etc/fail2ban/fail2ban.conf.default ] && mv /etc/fail2ban/fail2ban.conf.default /etc/fail2ban/fail2ban.conf && echo -n "1, "
212
[ -e /etc/fail2ban/jail.conf.default ] && mv /etc/fail2ban/jail.conf.default /etc/fail2ban/jail.conf && echo -n "2, "
211
[ -e /etc/fail2ban/jail.conf.default ] && mv /etc/fail2ban/jail.conf.default /etc/fail2ban/jail.conf && echo -n "2, "
213
[ -e /etc/fail2ban/action.d/iptables-allports.conf.default ] && mv /etc/fail2ban/action.d/iptables-allports.conf.default /etc/fail2ban/action.d/iptables-allports.conf && echo -n "3, "
212
[ -e /etc/fail2ban/action.d/iptables-allports.conf.default ] && mv /etc/fail2ban/action.d/iptables-allports.conf.default /etc/fail2ban/action.d/iptables-allports.conf && echo -n "3, "
214
[ -e /etc/fail2ban/filter.d/alcasar_mod-evasive.conf ] && rm /etc/fail2ban/filter.d/alcasar_mod-evasive.conf && echo -n "4, "
213
[ -e /etc/fail2ban/filter.d/alcasar_mod-evasive.conf ] && rm /etc/fail2ban/filter.d/alcasar_mod-evasive.conf && echo -n "4, "
215
[ -e /etc/fail2ban/filter.d/alcasar_htdigest.conf ] && rm /etc/fail2ban/filter.d/alcasar_htdigest.conf && echo -n "5, "
214
[ -e /etc/fail2ban/filter.d/alcasar_htdigest.conf ] && rm /etc/fail2ban/filter.d/alcasar_htdigest.conf && echo -n "5, "
216
[ -e /etc/fail2ban/filter.d/alcasar_intercept.conf ] && rm /etc/fail2ban/filter.d/alcasar_intercept.conf && echo -n "6, "
215
[ -e /etc/fail2ban/filter.d/alcasar_intercept.conf ] && rm /etc/fail2ban/filter.d/alcasar_intercept.conf && echo -n "6, "
217
[ -e /etc/fail2ban/filter.d/alcasar_change-pwd.conf ] && rm /etc/fail2ban/filter.d/alcasar_change-pwd.conf && echo -n "7, "
216
[ -e /etc/fail2ban/filter.d/alcasar_change-pwd.conf ] && rm /etc/fail2ban/filter.d/alcasar_change-pwd.conf && echo -n "7, "
218
[ -e /lib/systemd/system/fail2ban.service.default ] && mv /lib/systemd/system/fail2ban.service.default /lib/systemd/system/fail2ban.service && echo -n "8"
217
[ -e /lib/systemd/system/fail2ban.service.default ] && mv /lib/systemd/system/fail2ban.service.default /lib/systemd/system/fail2ban.service && echo -n "8"
219
sleep 1
218
sleep 1
220
 
219
 
221
echo -en "\n- cron(10) : "
220
echo -en "\n- cron(10) : "
222
[ -e /etc/crontab.default ] && mv /etc/crontab.default /etc/crontab && echo -n "1, "
221
[ -e /etc/crontab.default ] && mv /etc/crontab.default /etc/crontab && echo -n "1, "
223
[ -e /etc/anacrontab.default ] && mv /etc/anacrontab.default /etc/anacrontab && echo -n "2, "
222
[ -e /etc/anacrontab.default ] && mv /etc/anacrontab.default /etc/anacrontab && echo -n "2, "
224
[ -e /etc/cron.d/alcasar-mysql ] && rm -f /etc/cron.d/alcasar-mysql && echo -n "3, "
223
[ -e /etc/cron.d/alcasar-mysql ] && rm -f /etc/cron.d/alcasar-mysql && echo -n "3, "
225
[ -e /etc/cron.d/alcasar-archive ] && rm -f /etc/cron.d/alcasar-archive && echo -n "4, "
224
[ -e /etc/cron.d/alcasar-archive ] && rm -f /etc/cron.d/alcasar-archive && echo -n "4, "
226
[ -e /etc/cron.d/alcasar-ticket-clean ] && rm -f /etc/cron.d/alcasar-ticket-clean && echo -n "5, "
225
[ -e /etc/cron.d/alcasar-ticket-clean ] && rm -f /etc/cron.d/alcasar-ticket-clean && echo -n "5, "
227
[ -e /etc/cron.d/alcasar-distrib-updates ] && rm -f /etc/cron.d/alcasar-distrib-updates && echo -n "6, "
226
[ -e /etc/cron.d/alcasar-distrib-updates ] && rm -f /etc/cron.d/alcasar-distrib-updates && echo -n "6, "
228
[ -e /etc/cron.d/alcasar-connections-stats ] && rm -f /etc/cron.d/alcasar-connections-stats && echo -n "7, "
227
[ -e /etc/cron.d/alcasar-connections-stats ] && rm -f /etc/cron.d/alcasar-connections-stats && echo -n "7, "
229
[ -e /etc/cron.d/alcasar-watchdog ] && rm -f /etc/cron.d/alcasar-watchdog && echo -n "8, "
228
[ -e /etc/cron.d/alcasar-watchdog ] && rm -f /etc/cron.d/alcasar-watchdog && echo -n "8, "
230
[ -e /etc/cron.d/alcasar-daemon-watchdog ] && rm -f /etc/cron.d/alcasar-daemon-watchdog && echo -n "9,"
229
[ -e /etc/cron.d/alcasar-daemon-watchdog ] && rm -f /etc/cron.d/alcasar-daemon-watchdog && echo -n "9,"
231
[ -e /etc/cron.d/alcasar-rsync-bl ] && rm -f /etc/cron.d/alcasar-rsync-bl && echo -n "10,"
230
[ -e /etc/cron.d/alcasar-rsync-bl ] && rm -f /etc/cron.d/alcasar-rsync-bl && echo -n "10,"
232
sleep 1
231
sleep 1
233
 
232
 
234
echo -en "\n- gammu-smsd(3) : "
233
echo -en "\n- gammu-smsd(3) : "
235
[ -e /etc/gammu_smsd_conf ] && rm -f /etc/gammu_smsd_conf && echo -n "1, "
234
[ -e /etc/gammu_smsd_conf ] && rm -f /etc/gammu_smsd_conf && echo -n "1, "
236
[ -e /etc/udev/rules.d/66-huawei.rules ] && rm -f /etc/udev/rules.d/66-huawei.rules && echo -n "2, "
235
[ -e /etc/udev/rules.d/66-huawei.rules ] && rm -f /etc/udev/rules.d/66-huawei.rules && echo -n "2, "
237
[ -e /var/log/gammu-smsd ] && rm -rf /var/log/gammu-smsd && echo -n "3"
236
[ -e /var/log/gammu-smsd ] && rm -rf /var/log/gammu-smsd && echo -n "3"
238
sleep 1
237
sleep 1
239
 
238
 
240
echo -en "\n- msec(2) : "
239
echo -en "\n- msec(2) : "
241
[ -e /etc/security/msec/security.conf.default ] && mv /etc/security/msec/security.conf.default /etc/security/msec/security.conf && echo -n "1, "
240
[ -e /etc/security/msec/security.conf.default ] && mv /etc/security/msec/security.conf.default /etc/security/msec/security.conf && echo -n "1, "
242
[ -e /etc/security/msec/perm.local ] && rm -f /etc/security/msec/perm.local && echo -n "2"
241
[ -e /etc/security/msec/perm.local ] && rm -f /etc/security/msec/perm.local && echo -n "2"
243
sleep 1
242
sleep 1
244
 
243
 
245
if [ mode == "full " ]
244
if [ mode == "full " ]
246
then
245
then
247
	echo -en "\n- network(9) : "
246
	echo -en "\n- network(9) : "
248
	hostname localhost
247
	hostname localhost
249
	CONF_FILE="/usr/local/etc/alcasar.conf"
248
	CONF_FILE="/usr/local/etc/alcasar.conf"
250
	EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`		# EXTernal InterFace
249
	EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`		# EXTernal InterFace
251
	INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`		# INTernal InterFace
250
	INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`		# INTernal InterFace
252
	i=0
251
	i=0
253
	for nic in $EXTIF $INTIF
252
	for nic in $EXTIF $INTIF
254
	do
253
	do
255
		i=`expr $i + 1`
254
		i=`expr $i + 1`
256
		/sbin/ifdown $nic
255
		/sbin/ifdown $nic
257
		[ -e /etc/sysconfig/network-scripts/default-ifcfg-$nic ] && mv -f /etc/sysconfig/network-scripts/default-ifcfg-$nic /etc/sysconfig/network-scripts/ifcfg-$nic && echo -n "$i, "
256
		[ -e /etc/sysconfig/network-scripts/default-ifcfg-$nic ] && mv -f /etc/sysconfig/network-scripts/default-ifcfg-$nic /etc/sysconfig/network-scripts/ifcfg-$nic && echo -n "$i, "
258
	done
257
	done
259
	[ -e /etc/sysconfig/network.default ] && mv /etc/sysconfig/network.default /etc/sysconfig/network && echo -n "3, "
258
	[ -e /etc/sysconfig/network.default ] && mv /etc/sysconfig/network.default /etc/sysconfig/network && echo -n "3, "
260
	[ -e /etc/hosts.default ] && mv /etc/hosts.default /etc/hosts && echo -n "4, "
259
	[ -e /etc/hosts.default ] && mv /etc/hosts.default /etc/hosts && echo -n "4, "
261
	[ -e /etc/hosts.allow.default ] && mv /etc/hosts.allow.default /etc/hosts.allow && echo -n "5, "
260
	[ -e /etc/hosts.allow.default ] && mv /etc/hosts.allow.default /etc/hosts.allow && echo -n "5, "
262
	[ -e /etc/hosts.deny.default ] && mv /etc/hosts.deny.default /etc/hosts.deny && echo -n "6, "
261
	[ -e /etc/hosts.deny.default ] && mv /etc/hosts.deny.default /etc/hosts.deny && echo -n "6, "
263
	[ -e /etc/modprobe.preload.default ] && mv /etc/modprobe.preload.default /etc/modprobe.preload && echo -n "7, "
262
	[ -e /etc/modprobe.preload.default ] && mv /etc/modprobe.preload.default /etc/modprobe.preload && echo -n "7, "
264
	[ -e /lib/systemd/system/iptables.service.default ] && mv /lib/systemd/system/iptables.service.default /lib/systemd/system/iptables.service && echo -n "8, "
263
	[ -e /lib/systemd/system/iptables.service.default ] && mv /lib/systemd/system/iptables.service.default /lib/systemd/system/iptables.service && echo -n "8, "
265
	[ -e /usr/libexec/iptables.init.default ] && mv /usr/libexec/iptables.init.default /usr/libexec/iptables.init && echo -n "9"
264
	[ -e /usr/libexec/iptables.init.default ] && mv /usr/libexec/iptables.init.default /usr/libexec/iptables.init && echo -n "9"
266
	/sbin/ifup $EXTIF
265
	/sbin/ifup $EXTIF
267
	sleep 1
266
	sleep 1
268
fi
267
fi
269
 
268
 
270
#post_install
269
#post_install
271
echo -en "\n- post_install(6) : "
270
echo -en "\n- post_install(6) : "
272
[ -e /etc/mageia-release.default ] && mv /etc/mageia-release.default /etc/mageia-release && echo -n "1, "
271
[ -e /etc/mageia-release.default ] && mv /etc/mageia-release.default /etc/mageia-release && echo -n "1, "
273
[ -e /etc/ssh/alcasar-banner-ssh ] && rm -f /etc/ssh/alcasar-banner-ssh && echo -n "2, "
272
[ -e /etc/ssh/alcasar-banner-ssh ] && rm -f /etc/ssh/alcasar-banner-ssh && echo -n "2, "
274
[ -e /etc/ssh/sshd_config.default ] && mv /etc/ssh/sshd_config.default /etc/ssh/sshd_config && echo -n "3, "
273
[ -e /etc/ssh/sshd_config.default ] && mv /etc/ssh/sshd_config.default /etc/ssh/sshd_config && echo -n "3, "
275
[ -e /etc/bashrc.default ] && mv /etc/bashrc.default /etc/bashrc && echo -n "4, "
274
[ -e /etc/bashrc.default ] && mv /etc/bashrc.default /etc/bashrc && echo -n "4, "
276
[ -e /etc/sudoers.default ] && mv /etc/sudoers.default /etc/sudoers && echo -n "5, "
275
[ -e /etc/sudoers.default ] && mv /etc/sudoers.default /etc/sudoers && echo -n "5, "
277
[ -e /lib/systemd/system/alcasar-load_balancing.service ] && rm -f /lib/systemd/system/alcasar-load_balancing.service && echo -n "6"
276
[ -e /lib/systemd/system/alcasar-load_balancing.service ] && rm -f /lib/systemd/system/alcasar-load_balancing.service && echo -n "6"
278
sleep 1
277
sleep 1
279
 
278
 
280
# nettoyage (on retire les services supprimés ou remplacés dans la nouvelle version)
279
# nettoyage (on retire les services supprimés ou remplacés dans la nouvelle version)
281
echo -en "\n- cleaning() : "
280
echo -en "\n- cleaning() : "
282
for rm_fic in /usr/local/bin /usr/local/etc /usr/local/sbin
281
for rm_fic in /usr/local/bin /usr/local/etc /usr/local/sbin
283
do
282
do
284
	rm -rf $rm_fic/alcasar*
283
	rm -rf $rm_fic/alcasar*
285
done
284
done
286
echo
285
echo
287
 
286
 
288
 
287