Subversion Repositories ALCASAR

Rev

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

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