Subversion Repositories ALCASAR

Rev

Rev 1921 | Rev 2192 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1921 Rev 1923
Line 1... Line 1...
1
 
1
 
2
#!/bin/bash
2
#!/bin/bash
3
# $Id: alcasar-uninstall.sh 1921 2016-06-01 21:47:04Z richard $
3
# $Id: alcasar-uninstall.sh 1923 2016-06-03 13:03:17Z franck $
4
 
4
 
5
# alcasar-uninstall.sh
5
# alcasar-uninstall.sh
6
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
6
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
7
# This script is distributed under the Gnu General Public License (GPL)
7
# This script is distributed under the Gnu General Public License (GPL)
8
 
8
 
Line 245... Line 245...
245
 
245
 
246
 
246
 
247
 
247
 
248
#nettoyage (on retire les services supprimés ou remplacés dans la nouvelle version)
248
#nettoyage (on retire les services supprimés ou remplacés dans la nouvelle version)
249
echo -en "\n- cleaning() : "
249
echo -en "\n- cleaning() : "
250
for rm_fic in /usr/local/bin /usr/local/etc
250
for rm_fic in /usr/local/bin /usr/local/etc /usr/local/sbin
251
	do
251
	do
252
	rm -rf $rm_fic/alcasar*
252
	rm -rf $rm_fic/alcasar*
253
	done
253
	done
254
echo
254
echo
255
 
255