Subversion Repositories ALCASAR

Rev

Rev 2494 | Rev 2541 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
672 richard 1
#!/bin/bash
62 franck 2
# $Id: alcasar-uninstall.sh 2521 2018-04-02 19:46:16Z armand.ito $
3
 
1 root 4
# alcasar-uninstall.sh
672 richard 5
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
1 root 6
# This script is distributed under the Gnu General Public License (GPL)
518 stephane 7
 
2206 richard 8
# Désisntallation ou mise à jour d'ALCASAR
9
# Uninstall or update ALCASAR
672 richard 10
 
88 richard 11
SED="/bin/sed -i"
2206 richard 12
 
2494 tom.houday 13
[ -z $DEBUG_ALCASAR ] && DEBUG_ALCASAR='off'
14
 
2464 richard 15
init ()
16
{
17
	echo -en "(3) : "
18
	rm -f /root/ALCASAR* && echo -n "1, " # The files in /usr/local/ will be removed at the end (still usefull here)
19
	[ -e /boot/grub2/user.cfg ] && rm -f /boot/grub2/user.cfg && echo -n "2, "
20
	[ -e /root/grub.default ] && mv -f /root/grub.default /etc/grub.d/10_linux && echo -n "3"
21
}
22
 
23
ACC ()
24
{
2488 lucas.echa 25
	echo -en "(7) : "
2464 richard 26
	[ -d /var/www/html ] && rm -rf /var/www/html && echo -n "1, "
27
	[ -d /etc/freeradius-web ] && rm -rf /etc/freeradius-webl && echo -n "2, "
28
	[ -e /etc/php.ini.default ] && mv -f /etc/php.ini.default /etc/php.ini && echo -n "3, "
2488 lucas.echa 29
	[ -e /etc/lighttpd/lighttpd.conf.default ] && mv /etc/lighttpd/lighttpd.conf.default /etc/lighttpd/lighttpd.conf && echo -n "4, "
30
	[ -e /etc/lighttpd/modules.conf.default ] && mv /etc/lighttpd/modules.conf.default /etc/lighttpd/modules.conf && echo -n "5, "
31
	[ -e /etc/lighttpd/conf.d/fastcgi.conf.default ] && mv /etc/lighttpd/conf.d/fastcgi.conf.default /etc/lighttpd/conf.d/fastcgi.conf && echo -n "6, "
32
	[ -d /usr/local/etc/digest ] && rm -rf /usr/local/etc/digest && echo -n "7, "
33
	[ -e /etc/lighttpd/vhosts.d/alcasar.conf ] && rm -f /etc/lighttpd/vhosts.d/alcasar.conf && echo -n "8"
34
 
35
	# Removing old Apache configuration
36
	[ -e /etc/httpd/conf/httpd.conf.default ] && mv /etc/httpd/conf/httpd.conf.default /etc/httpd/conf/httpd.conf
37
	[ -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
38
	[ -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
39
	[ -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
40
	[ -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
41
	[ -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
42
	[ -e /etc/httpd/conf/webapps.d/alcasar.conf ] && rm -f /etc/httpd/conf/webapps.d/alcasar.conf
2464 richard 43
}
44
 
45
CA ()
46
{
47
	echo -en "(5) : "
48
	[ -e /etc/pki/CA/alcasar-ca.crt ] && rm -f /etc/pki/CA/alcasar-ca.crt && echo -n "1, "
49
	[ -e /etc/pki/CA/private/alcasar-ca.key ] && rm -f /etc/pki/CA/private/alcasar-ca.key && echo -n "2, "
50
	[ -e /etc/pki/tls/certs/alcasar.crt ] && rm -f /etc/pki/tls/certs/alcasar.crt && echo -n "3, "
51
	[ -e /etc/pki/tls/private/alcasar.key ] && rm -f /etc/pki/tls/private/alcasar.key && echo -n "4, "
2488 lucas.echa 52
	[ -e /etc/pki/tls/private/alcasar.pem ] && rm -f /etc/pki/tls/private/alcasar.pem && echo -n "5"
53
 
54
	# Removing old Apache configuration
55
	[ -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
2464 richard 56
}
57
 
58
time_server ()
59
{
60
	echo -en "(2) : "
61
	[ -e /etc/ntp/step-tickers.default ] && mv /etc/ntp/step-tickers.default /etc/ntp/step-tickers && echo -n "1, "
62
	[ -e /etc/ntp.conf.default ] && mv /etc/ntp.conf.default /etc/ntp.conf && echo -n "2"
63
}
64
 
65
init_db ()
66
{
67
	echo -en "(2) : "
68
	[ -e /etc/my.cnf.default ] && mv -f /etc/my.cnf.default /etc/my.cnf && echo -n "1, "
69
	[ -e /lib/systemd/system/mysqld.service.default ] && mv -f /lib/systemd/system/mysqld.service.default /lib/systemd/system/mysqld.service && echo -n "2"
70
	/usr/bin/systemctl daemon-reload
71
	rm -rf /var/lib/mysql
72
}
73
 
74
freeradius ()
75
{
2470 richard 76
	echo -en "(15) : "
2464 richard 77
	[ -e /etc/raddb/empty-radiusd-db.sql ] && rm -f /etc/raddb/empty-radiusd-db.sql && echo -n "1, "
78
	[ -e /etc/raddb/radiusd.conf.default ] && mv /etc/raddb/radiusd.conf.default /etc/raddb/radiusd.conf && echo -n "2, "
79
	[ -e /etc/raddb/sites-enabled/alcasar ] && rm /etc/raddb/sites-enabled/alcasar && echo -n "3, "
80
	[ -e /etc/raddb/sites-available/alcasar ] && rm /etc/raddb/sites-available/alcasar && echo -n "4, "
2467 richard 81
	[ -e /etc/raddb/sites-available/alcasar-with-ldap ] && rm /etc/raddb/sites-available/alcasar-with-ldap && echo -n "5, "
82
	[ -e /etc/raddb/clients.conf.default ] && mv /etc/raddb/clients.conf.default /etc/raddb/clients.conf && echo -n "6, "
83
	[ -e /etc/raddb/mods-enabled/ldap ] && rm /etc/raddb/mods-enabled/ldap && echo -n "7, " #Add here other mods
84
	[ -e /etc/raddb/mods-enabled/sql ] && rm /etc/raddb/mods-enabled/sql && echo -n "7bis, " #Add here other mods
85
	[ -e /etc/raddb/mods-available/ldap-alcasar ] && rm /etc/raddb/mods-available/ldap-alcasar && echo -n "8, "
86
	[ -e /etc/raddb/mods-available/sql.default ] && mv /etc/raddb/mods-available/sql.default /etc/raddb/mods-available/sql && echo -n "9, "
87
	[ -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 "10, "
2470 richard 88
	[ -e /etc/raddb/mods-available/sqlcounter.default ] && mv /etc/raddb/mods-available/sqlcounter.default /etc/raddb/mods-available/sqlcounter && echo -n "11, "
89
	[ -e /etc/raddb/mods-config/sql/counter/mysql/dailycounter.conf.default ] && mv /etc/raddb/mods-config/sql/counter/mysql/dailycounter.conf.default /etc/raddb/mods-config/sql/counter/mysql/dailycounter.conf && echo -n "12, "
90
	[ -e /etc/raddb/mods-config/sql/counter/mysql/monthlycounter.conf.default ] && mv /etc/raddb/mods-config/sql/counter/mysql/monthlycounter.conf.default /etc/raddb/mods-config/sql/counter/mysql/monthlycounter.conf && echo -n "13, "
91
	[ -e /etc/raddb/mods-config/sql/counter/mysql/noresetcounter.conf.default ] && mv /etc/raddb/mods-config/sql/counter/mysql/noresetcounter.conf.default /etc/raddb/mods-config/sql/counter/mysql/noresetcounter.conf && echo -n "14, "
92
	[ -e /lib/systemd/system/radiusd.service.default ] && mv /lib/systemd/system/radiusd.service.default /lib/systemd/system/radiusd.service && echo -n "15"
2464 richard 93
}
94
 
95
chilli ()
96
{
97
	echo -en "(4) : "
98
	[ -e /etc/init.d/chilli.default ] && mv /etc/init.d/chilli.default /etc/init.d/chilli && echo -n "1, "
99
	[ -e /usr/libexec/chilli ] && rm /usr/libexec/chilli && echo -n "2, "
100
	[ -e /etc/chilli.conf.default ] && mv /etc/chilli.conf.default /etc/chilli.conf && echo -n "3, "
101
	[ -e /lib/systemd/system/chilli.service ] && rm /lib/systemd/system/chilli.service && echo -n "4"
102
}
103
 
2521 armand.ito 104
e2guardian ()
2464 richard 105
{
106
	echo -en "(8) : "
2521 armand.ito 107
	[ -d /var/e2guardian ] && rm -rf /var/e2guardian && echo -n "1, "
108
	[ -e /etc/e2guardian/e2guardian.conf.default ] && mv /etc/e2guardian/e2guardian.conf.default /etc/e2guardian/e2guardian.conf && echo -n "2, "
109
	[ -e /etc/e2guardian/lists/bannedphraselist.default ] && mv /etc/e2guardian/lists/bannedphraselist.default /etc/e2guardian/lists/bannedphraselist && echo -n "3, "
110
	[ -e /etc/e2guardian/e2guardianf1.conf.default ] && mv /etc/e2guardian/e2guardianf1.conf.default /etc/e2guardian/e2guardianf1.conf && echo -n "4, "
111
	[ -e /etc/e2guardian/lists/bannedextensionlist.default ] && mv /etc/e2guardian/lists/bannedextensionlist.default /etc/e2guardian/lists/bannedextensionlist && echo -n "5, "
112
	[ -e /etc/e2guardian/lists/bannedmimetypelist.default ] && mv /etc/e2guardian/lists/bannedmimetypelist.default /etc/e2guardian/lists/bannedmimetypelist && echo -n "6, "
113
	[ -e /etc/e2guardian/lists/exceptioniplist.default ] && mv /etc/e2guardian/lists/exceptioniplist.default /etc/e2guardian/lists/exceptioniplist && echo -n "7, "
114
	[ -e /etc/e2guardian/lists/bannedsitelist.default ] && mv /etc/e2guardian/lists/bannedsitelist.default /etc/e2guardian/lists/bannedsitelist && echo -n "8"
2464 richard 115
}
116
 
117
antivirus ()
118
{
119
	echo -en "(5) : "
120
	if [ -e /etc/init.d/havp ]
121
	then
122
		[ -e /etc/havp/havp.config.default ] && mv /etc/havp/havp.config.default /etc/havp/havp.config && echo -n "1, "
123
		userdel -r havp 2>/dev/null && echo -n "2, "
124
		[ -e /etc/init.d/havp.default ] && mv /etc/init.d/havp.default /etc/init.d/havp && echo -n "3, "
125
		[ -e /lib/systemd/system/havp.service.default ] && mv /lib/systemd/system/havp.service.default /lib/systemd/system/havp.service && echo -n "4, "
126
		[ -e /etc/freshclam.conf.default ] && mv /etc/freshclam.conf.default /etc/freshclam.conf && echo -n "5"
127
	else	echo -n "already uninstalled"
128
	fi
129
}
130
 
131
tinyproxy ()
132
{
133
	echo -en "(2) : "
134
	if [ -e /etc/init.d/tinyproxy ]
135
	then
136
		[ -e /etc/tinyproxy/tinyproxy.conf.default ] && mv /etc/tinyproxy/tinyproxy.conf.default /etc/tinyproxy/tinyproxy.conf && echo -n "1, "
137
		userdel -r tinyproxy 2>/dev/null && echo -n "2"
138
	else	echo -n "already uninstalled"
139
	fi
140
}
141
 
142
ulogd ()
143
{
144
	echo -en "(6) : "
145
	i=0
146
	for log_type in traceability ssh ext-access
147
	do
148
		i=`expr $i + 1`
149
		[ -e /etc/ulogd-$log_type.conf ] && rm -f /etc/ulogd-$log_type.conf && echo -n "$i, "
150
		i=`expr $i + 1`
151
		[ -e /lib/systemd/system/ulogd-$log_type.service ] && rm -f /lib/systemd/system/ulogd-$log_type.service && echo -n "$i, "
152
	done
153
}
154
 
155
nfsen ()
156
{
157
	echo -en "(1) : "
158
	[ -e /lib/systemd/system/nfsen.service ] && rm -f /lib/systemd/system/nfsen.service && echo -n "1"
159
}
160
 
161
vnstat ()
162
{
163
	echo -en "(1) : "
164
	[ -e /etc/vnstat.conf.default ] && mv /etc/vnstat.conf.default /etc/vnstat.conf && echo -n "1"
165
}
166
 
167
dnsmasq ()
168
{
169
	echo -en "(6 if update ; 8 if uninstall) : "
170
	i=0
171
	for list in blacklist whitelist blackhole
172
	do
173
		i=`expr $i + 1`
174
		[ -e /etc/dnsmasq-$list.conf ] && rm /etc/dnsmasq-$list.conf && echo -n "$i, "
175
		i=`expr $i + 1`
176
		[ -e /lib/systemd/system/dnsmasq-$list.service ] && rm /lib/systemd/system/dnsmasq-$list.service && echo -n "$i, "
177
	done
178
	if [ $mode == "full" ] # don't remove dnsmasq in update mode (DHCP + DNS !)
179
	then
180
		if [ -e /lib/systemd/system/dnsmasq.service ]
181
		then
182
			[ -e /etc/dnsmasq.conf.default ] && mv /etc/dnsmasq.conf.default /etc/dnsmasq.conf && echo -n "7, "
183
			[ -e /lib/systemd/system/dnsmasq.service.default ] && mv /lib/systemd/system/dnsmasq.service.default /lib/systemd/system/dnsmasq.service && echo -n "8"
184
		fi
185
	fi
186
}
187
 
188
cron ()
189
{
190
	echo -en "(11) : "
191
	i=1
192
	for cron in `ls /etc/cron.d/alcasar-* 2>/dev/null`
193
	do
194
		rm $cron && echo -n "$i, "
195
		i=`expr $i + 1`
196
	done
197
	[ -e /etc/crontab.default ] && mv /etc/crontab.default /etc/crontab && echo -n "10, "
198
	[ -e /etc/anacrontab.default ] && mv /etc/anacrontab.default /etc/anacrontab && echo -n "11"
199
}
200
 
201
fail2ban ()
202
{
203
	echo -en "(8) : "
204
	[ -e /etc/fail2ban/fail2ban.conf.default ] && mv /etc/fail2ban/fail2ban.conf.default /etc/fail2ban/fail2ban.conf && echo -n "1, "
205
	[ -e /etc/fail2ban/jail.conf.default ] && mv /etc/fail2ban/jail.conf.default /etc/fail2ban/jail.conf && echo -n "2, "
206
	[ -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, "
207
	i=3
208
	for filter in `ls /etc/fail2ban/filter.d/alcasar_* 2>/dev/null`
209
	do
210
		i=`expr $i + 1`
211
		rm $filter && echo -n "$i, "
212
	done
213
	[ -e /lib/systemd/system/fail2ban.service.default ] && mv /lib/systemd/system/fail2ban.service.default /lib/systemd/system/fail2ban.service && echo -n "8"
214
}
215
 
216
gammu_smsd ()
217
{
218
	echo -en "(3) : "
219
	[ -e /etc/gammu_smsd_conf ] && rm -f /etc/gammu_smsd_conf && echo -n "1, "
220
	[ -e /lib/udev/rules.d/66-huawei.rules ] && rm -f /lib/udev/rules.d/66-huawei.rules && echo -n "2, "
221
	[ -e /var/log/gammu-smsd ] && rm -rf /var/log/gammu-smsd && echo -n "3"
222
}
223
 
224
msec ()
225
{
226
	echo -en "(2) : "
227
	if [ -e /etc/security/msec/security.conf ]
228
	then
229
		[ -e /etc/security/msec/security.conf.default ] && mv /etc/security/msec/security.conf.default /etc/security/msec/security.conf && echo -n "1, "
230
		[ -e /etc/security/msec/perm.local ] && rm -f /etc/security/msec/perm.local && echo -n "2"
231
	else	echo -n "uninstalled"
232
	fi
233
}
234
 
235
letsencrypt ()
236
{
237
	echo -en "(3) : "
238
	[ -e /usr/local/etc/letsencrypt ] && rm -rf /usr/local/etc/letsencrypt && echo -n "1, "
239
	[ -e /opt/acme.sh/acme.sh ] && /opt/acme.sh/acme.sh --uninstall --nocron 1>/dev/null && echo -n "2, "
240
	[ -e /opt/acme.sh ] && rm -rf /opt/acme.sh && echo -n "3"
241
}
242
 
243
post_install ()
244
{
245
echo -en "(7) : "
246
	[ -e /etc/mageia-release.default ] && mv -f /etc/mageia-release.default /etc/mageia-release && echo -n "1, "
247
	[ -e /etc/ssh/alcasar-banner-ssh ] && rm -f /etc/ssh/alcasar-banner-ssh && echo -n "2, "
248
	[ -e /etc/ssh/sshd_config.default ] && mv -f /etc/ssh/sshd_config.default /etc/ssh/sshd_config && echo -n "3, "
249
	[ -e /etc/bashrc.default ] && mv -f /etc/bashrc.default /etc/bashrc && echo -n "4, "
250
	[ -e /etc/sudoers.default ] && mv -f /etc/sudoers.default /etc/sudoers && echo -n "5, "
251
	[ -e /lib/systemd/system/alcasar-load_balancing.service ] && rm -f /lib/systemd/system/alcasar-load_balancing.service && echo -n "6, "
252
	[ -e /etc/default/grub.default ] && mv -f /etc/default/grub.default /etc/default/grub && echo -n "7"
253
}
254
 
255
 
256
usage="Usage: alcasar-uninstall.sh {-update or --update} | {-full or --full}"
257
 
2206 richard 258
nb_args=$#
259
args=$1
260
if [ $nb_args -eq 0 ]
261
then
262
	nb_args=1
263
	args="-h"
264
fi
265
case $args in
266
	-\? | -h* | --h*)
267
		echo "$usage"
268
		exit 0
269
		;;
270
	--update | -update)
271
		mode="update"
272
		;;
273
	--full | -full)
274
		mode="full"
275
		;;
276
	*)
277
		echo "Argument inconnu :$1";
278
		echo "$usage"
279
		exit 1
280
		;;
281
esac
1 root 282
clear
2206 richard 283
if [ $mode == "full" ]
284
then
285
	echo "----------------------------------------------------------------------------"
286
	echo "**                     Uninstall/Désinstallation d'ALCASAR		**"
287
	echo "----------------------------------------------------------------------------"
2521 armand.ito 288
	services="alcasar-load_balancing vnstat havp freshclam ntpd lighttpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban iptables ulogd-ext-access ulogd-ssh ulogd-traceability e2guardian dnsmasq sshd chilli"
2206 richard 289
	/usr/local/bin/alcasar-logout.sh all # logout everybody
290
else
2464 richard 291
	echo "--------------------------------------------------------------------------"
2206 richard 292
	echo "**                     update/mise à jour d'ALCASAR			**"
2464 richard 293
	echo "--------------------------------------------------------------------------"
2206 richard 294
	# dnsmasq & sshd should stay on to allow remote update
2521 armand.ito 295
	services="alcasar-load_balancing vnstat havp freshclam ntpd lighttpd radiusd mysqld dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole tinyproxy nfsen fail2ban ulogd-ext-access ulogd-ssh ulogd-traceability e2guardian chilli"
2206 richard 296
	/usr/local/bin/alcasar-bypass.sh -on # to allow remote update
297
fi
2488 lucas.echa 298
 
299
[ -e /lib/systemd/system/httpd.service ] && services+=" httpd"
300
 
1673 richard 301
echo "Stopping service : "
1800 richard 302
/usr/local/bin/alcasar-sms.sh --stop
2454 tom.houday 303
for i in $services
1211 crox53 304
do
2454 tom.houday 305
	if [ -e /lib/systemd/system/$i.service ]
1800 richard 306
	then
307
		/usr/bin/systemctl disable $i.service
2454 tom.houday 308
		/usr/bin/systemctl stop $i.service 1>/dev/null
1800 richard 309
		sleep 1
310
	else
311
		echo "The service $i.service doesn't exist !"
312
	fi
1211 crox53 313
done
1673 richard 314
echo "Check the service clearing"
2206 richard 315
for i in $services
1673 richard 316
do
317
	if [ `systemctl is-active $i.service` == "active" ]
318
	then
319
		echo "The service '$i' need to be killed"
320
		/usr/bin/systemctl stop $i.service
321
		killall $i
322
	fi
323
done
2426 richard 324
if [ $mode == "update" ] # reload sshd in case of remote update
2226 richard 325
then
2457 richard 326
	/usr/bin/systemctl reload sshd
2226 richard 327
fi
1502 richard 328
echo "Reset ALCASAR main functions : "
2521 armand.ito 329
for func in init ACC CA time_server init_db freeradius chilli e2guardian antivirus tinyproxy ulogd nfsen vnstat dnsmasq cron fail2ban gammu_smsd msec letsencrypt post_install
2206 richard 330
do
2464 richard 331
	echo -en "\n- $func "
332
	$func
333
	sleep 1
2466 richard 334
	if [ $DEBUG_ALCASAR == "on" ]
335
	then
336
		echo -n " *** 'debug' : end of cleaning '$func' *** "
337
		read a
338
	fi
2206 richard 339
done
2426 richard 340
if [ $mode == "full" ]
2206 richard 341
then
342
	echo -en "\n- network(9) : "
2426 richard 343
	hostnamectl set-hostname localhost.localdomain
2464 richard 344
	chmod a-x /etc/sysconfig/network-scripts/default-*
2206 richard 345
	i=0
2464 richard 346
	for nic in `ls /etc/sysconfig/network-scripts/default-*|cut -d'-' -f4`
1362 richard 347
	do
2206 richard 348
		i=`expr $i + 1`
349
		/sbin/ifdown $nic
2464 richard 350
		[ -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 ($nic), "
1362 richard 351
	done
2432 richard 352
	[ -e /etc/sysconfig/network.default ] && mv -f /etc/sysconfig/network.default /etc/sysconfig/network && echo -n "3, "
353
	[ -e /etc/hosts.default ] && mv -f /etc/hosts.default /etc/hosts && echo -n "4, "
354
	[ -e /etc/hosts.allow.default ] && mv -f /etc/hosts.allow.default /etc/hosts.allow && echo -n "5, "
355
	[ -e /etc/hosts.deny.default ] && mv -f /etc/hosts.deny.default /etc/hosts.deny && echo -n "6, "
356
	[ -e /etc/modprobe.preload.default ] && mv -f /etc/modprobe.preload.default /etc/modprobe.preload && echo -n "7, "
357
	[ -e /lib/systemd/system/iptables.service.default ] && mv -f /lib/systemd/system/iptables.service.default /lib/systemd/system/iptables.service && echo -n "8, "
358
	[ -e /usr/libexec/iptables.init.default ] && mv -f /usr/libexec/iptables.init.default /usr/libexec/iptables.init && echo -n "9"
2457 richard 359
	/usr/bin/systemctl restart network
2206 richard 360
	sleep 1
361
fi
790 richard 362
 
2226 richard 363
# Cleaning (remove all "old" alcasar scripts)
2243 tom.houday 364
echo -en "\n- End of cleaning ...\n"
1923 franck 365
for rm_fic in /usr/local/bin /usr/local/etc /usr/local/sbin
2206 richard 366
do
306 richard 367
	rm -rf $rm_fic/alcasar*
2206 richard 368
done
2457 richard 369
/usr/bin/update-grub2
2458 richard 370
 
371
if [ $mode == "full" ]
372
then
373
	echo -n "Waiting for Network to be up again : "
374
	i=0
375
	while [ $i -lt 10 ] # We wait 10 seconds max
376
	do
377
		echo -n "."
378
		DNS1=`grep ^nameserver /etc/resolv.conf|awk -F" " '{print $2}'|head -n 1`
379
		if [ "$DNS1" != "" ] && [ "$DNS1" != "127.0.0.1" ]
380
		then
381
			i=9
382
			echo -n "ok"
383
		fi
384
		i=`expr $i + 1`
385
		sleep 1
386
	done
387
fi
388
echo
2464 richard 389