Subversion Repositories ALCASAR

Rev

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

Rev 1918 Rev 1946
1
#/bin/bash
1
#/bin/bash
2
# $Id: alcasar-conf.sh 1918 2016-06-01 14:49:47Z franck $
2
# $Id: alcasar-conf.sh 1946 2016-06-14 22:06:24Z richard $
3
 
3
 
4
# alcasar-conf.sh
4
# alcasar-conf.sh
5
# by REXY
5
# by REXY
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
# Ce script permet la mise à jour ALCASAR 
8
# Ce script permet la mise à jour ALCASAR 
9
#	- création de l'archive des fichiers de configuration dans "/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
9
#	- création de l'archive des fichiers de configuration dans "/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
10
#	- chargement de l'archive de fichiers de configuration lors de la mise à jour d'un alcasar (alcasar-conf -load)
10
#	- chargement de l'archive de fichiers de configuration lors de la mise à jour d'un alcasar (alcasar-conf -load)
11
#	- application des directives du fichier de conf central "/usr/local/etc/alcasar.conf" lors d'un changement de conf réseau à chaud (alcasar-conf -apply) 
11
#	- application des directives du fichier de conf central "/usr/local/etc/alcasar.conf" lors d'un changement de conf réseau à chaud (alcasar-conf -apply) 
12
# This script allows ALCASAR update 
12
# This script allows ALCASAR update 
13
#	- create the configuration files backup "/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
13
#	- create the configuration files backup "/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
14
#	- load the bachup of configuration files during the update process (alcasar-conf -load)
14
#	- load the bachup of configuration files during the update process (alcasar-conf -load)
15
#	- apply ALCASAR central configuration file "/usr/local/etc/alcasar.conf" when hot modification is needed (alcasar-conf -apply)
15
#	- apply ALCASAR central configuration file "/usr/local/etc/alcasar.conf" when hot modification is needed (alcasar-conf -apply)
16
 
16
 
17
new="$(date +%G%m%d-%Hh%M)"  			# date et heure des fichiers
17
new="$(date +%G%m%d-%Hh%M)"  			# date et heure des fichiers
18
fichier="alcasar-conf-$new.tar.gz"		# nom du fichier de sauvegarde
18
fichier="alcasar-conf-$new.tar.gz"		# nom du fichier de sauvegarde
19
DIR_UPDATE="/tmp/conf"				# répertoire de stockage des fichier de conf pour une mise à jour
19
DIR_UPDATE="/tmp/conf"				# répertoire de stockage des fichier de conf pour une mise à jour
20
DIR_WEB="/var/www/html"				# répertoire du centre de gestion
20
DIR_WEB="/var/www/html"				# répertoire du centre de gestion
21
DIR_BIN="/usr/local/bin"			# répertoire des scripts d'admin
21
DIR_BIN="/usr/local/bin"			# répertoire des scripts d'admin
22
DIR_ETC="/usr/local/etc"			# répertoire des fichiers de conf
22
DIR_ETC="/usr/local/etc"			# répertoire des fichiers de conf
23
DIR_SHARE="/usr/local/share"			# répertoire des fichiers partagés
23
DIR_BLACKLIST="/etc/dansguardian/lists/blacklists"	# répertoire de la BL de Toulouse
24
CONF_FILE="$DIR_ETC/alcasar.conf"		# main alcasar conf file
24
CONF_FILE="$DIR_ETC/alcasar.conf"		# main alcasar conf file
25
VERSION="/var/www/html/VERSION"			# contient la version en cours
25
VERSION="/var/www/html/VERSION"			# contient la version en cours
26
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`	# EXTernal InterFace
26
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`	# EXTernal InterFace
27
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`	# INTernal InterFace
27
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`	# INTernal InterFace
28
MTU=`grep ^PUBLIC_MTU= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
28
MTU=`grep ^PUBLIC_MTU= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
29
DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
29
DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
30
INT_DNS_mode=`grep ^INT_DNS_ACTIVE= $CONF_FILE|cut -d"=" -f2`
30
INT_DNS_mode=`grep ^INT_DNS_ACTIVE= $CONF_FILE|cut -d"=" -f2`
31
LDAP_mode=`grep ^LDAP= $CONF_FILE|cut -d"=" -f2`
31
LDAP_mode=`grep ^LDAP= $CONF_FILE|cut -d"=" -f2`
32
HOSTNAME="alcasar"
32
HOSTNAME="alcasar"
33
DB_USER="radius"
33
DB_USER="radius"
34
radiuspwd=""
34
radiuspwd=""
35
SED="/bin/sed -i"
35
SED="/bin/sed -i"
36
RUNNING_VERSION=`cat $VERSION|cut -d" " -f1`
36
RUNNING_VERSION=`cat $VERSION|cut -d" " -f1`
37
MAJ_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f1`
37
MAJ_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f1`
38
MIN_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f2|cut -c1`
38
MIN_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f2|cut -c1`
39
UPD_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f3`
39
UPD_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f3`
40
DOMAIN=`grep DOMAIN $CONF_FILE|cut -d"=" -f2` 2>/dev/null
40
DOMAIN=`grep DOMAIN $CONF_FILE|cut -d"=" -f2` 2>/dev/null
41
DOMAIN=${DOMAIN:=localdomain}
41
DOMAIN=${DOMAIN:=localdomain}
42
DATE=`date '+%d %B %Y - %Hh%M'`
42
DATE=`date '+%d %B %Y - %Hh%M'`
43
private_network_calc ()
43
private_network_calc ()
44
{
44
{
45
	PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP $PRIVATE_NETMASK |cut -d"=" -f2`				# prefixe du réseau (ex. 24)
45
	PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP $PRIVATE_NETMASK |cut -d"=" -f2`				# prefixe du réseau (ex. 24)
46
	PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP $PRIVATE_NETMASK| cut -d"=" -f2`				# @ réseau de consultation (ex.: 192.168.182.0)
46
	PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP $PRIVATE_NETMASK| cut -d"=" -f2`				# @ réseau de consultation (ex.: 192.168.182.0)
47
	PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX							# @ + masque du réseau de consult (192.168.182.0/24)
47
	PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX							# @ + masque du réseau de consult (192.168.182.0/24)
48
	classe=$((PRIVATE_PREFIX/8)); classe_sup=`expr $classe + 1`; classe_sup_sup=`expr $classe + 2`		# classes de réseau (ex.: 2=classe B, 3=classe C)
48
	classe=$((PRIVATE_PREFIX/8)); classe_sup=`expr $classe + 1`; classe_sup_sup=`expr $classe + 2`		# classes de réseau (ex.: 2=classe B, 3=classe C)
49
	PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`.					# @ compatible hosts.allow et hosts.deny (ex.: 192.168.182.)
49
	PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`.					# @ compatible hosts.allow et hosts.deny (ex.: 192.168.182.)
50
	PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2`				# private network broadcast (ie.: 192.168.182.255)
50
	PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2`				# private network broadcast (ie.: 192.168.182.255)
51
	private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f$classe_sup`				# last octet of LAN address
51
	private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f$classe_sup`				# last octet of LAN address
52
	private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f$classe_sup`				# last octet of LAN broadcast
52
	private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f$classe_sup`				# last octet of LAN broadcast
53
	PRIVATE_FIRST_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`		# First network address (ex.: 192.168.182.1)
53
	PRIVATE_FIRST_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`		# First network address (ex.: 192.168.182.1)
54
	PRIVATE_SECOND_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 2`	# second network address (ex.: 192.168.182.2)
54
	PRIVATE_SECOND_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 2`	# second network address (ex.: 192.168.182.2)
55
	PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1`	# last network address (ex.: 192.168.182.254)
55
	PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1`	# last network address (ex.: 192.168.182.254)
56
	PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'`	# MAC address of INTIF
56
	PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'`	# MAC address of INTIF
57
}
57
}
58
 
58
 
59
usage="Usage: alcasar-conf.sh {--create or -create} | {--load or -load} | {--apply or -apply}"
59
usage="Usage: alcasar-conf.sh {--create or -create} | {--load or -load} | {--apply or -apply}"
60
nb_args=$#
60
nb_args=$#
61
args=$1
61
args=$1
62
if [ $nb_args -eq 0 ]
62
if [ $nb_args -eq 0 ]
63
then
63
then
64
	nb_args=100:26:6C:
64
	nb_args=100:26:6C:
65
	args="-h"
65
	args="-h"
66
fi
66
fi
67
case $args in
67
case $args in
68
	-\? | -h* | --h*)
68
	-\? | -h* | --h*)
69
		echo "$usage"
69
		echo "$usage"
70
		exit 0
70
		exit 0
71
		;;
71
		;;
72
	--create|-create)	
72
	--create|-create)	
73
		[ -d $DIR_UPDATE ] && rm -rf $DIR_UPDATE
73
		[ -d $DIR_UPDATE ] && rm -rf $DIR_UPDATE
74
		mkdir $DIR_UPDATE
74
		mkdir $DIR_UPDATE
75
# backup the users database  (test to delete in future version)
75
# backup the users database  (test to delete in future version)
76
		if [ -e $DIR_BIN/alcasar-mysql.sh ]; then
76
		if [ -e $DIR_BIN/alcasar-mysql.sh ]; then
77
			$DIR_BIN/alcasar-mysql.sh --dump
77
			$DIR_BIN/alcasar-mysql.sh --dump
78
		else
78
		else
79
			/usr/local/sbin/alcasar-mysql.sh --dump
79
			/usr/local/sbin/alcasar-mysql.sh --dump
80
		fi
80
		fi
81
		cp /var/Save/base/`ls -1t /var/Save/base|head -1` $DIR_UPDATE
81
		cp /var/Save/base/`ls -1t /var/Save/base|head -1` $DIR_UPDATE
82
# backup the logo
82
# backup the logo
83
		cp -f $DIR_WEB/images/organisme.png $DIR_UPDATE
83
		cp -f $DIR_WEB/images/organisme.png $DIR_UPDATE
84
# backup BL/WL custom files
84
# backup BL/WL custom files
85
		mkdir $DIR_UPDATE/custom_bl
85
		mkdir $DIR_UPDATE/custom_bl
86
		cp -f /etc/dansguardian/lists/exceptioniplist $DIR_UPDATE/custom_bl/
86
		cp -f /etc/dansguardian/lists/exceptioniplist $DIR_UPDATE/custom_bl/
87
		cp -f /etc/dansguardian/lists/urlregexplist $DIR_UPDATE/custom_bl/
87
		cp -f /etc/dansguardian/lists/urlregexplist $DIR_UPDATE/custom_bl/
88
		cp -f /etc/dansguardian/lists/exceptionsitelist $DIR_UPDATE/custom_bl/
88
		cp -f /etc/dansguardian/lists/exceptionsitelist $DIR_UPDATE/custom_bl/
89
		cp -f /etc/dansguardian/lists/bannedsitelist $DIR_UPDATE/custom_bl/
89
		cp -f /etc/dansguardian/lists/bannedsitelist $DIR_UPDATE/custom_bl/
90
		cp -f /etc/dansguardian/lists/exceptionurllist $DIR_UPDATE/custom_bl/
90
		cp -f /etc/dansguardian/lists/exceptionurllist $DIR_UPDATE/custom_bl/
91
		cp -f /etc/dansguardian/lists/bannedurllist $DIR_UPDATE/custom_bl/
91
		cp -f /etc/dansguardian/lists/bannedurllist $DIR_UPDATE/custom_bl/
92
		cp -f $DIR_SHARE/dnsmasq-bl/ossi.conf $DIR_UPDATE/custom_bl/ossi-dnsbl.conf
-
 
93
		cp -f $DIR_SHARE/dnsmasq-wl/ossi.conf $DIR_UPDATE/custom_bl/ossi-dnswl.conf
-
 
94
		cp -f $DIR_SHARE/iptables-bl/ossi $DIR_UPDATE/custom_bl/ossi-ipbl
-
 
95
		cp -f $DIR_SHARE/iptables-wl/ossi $DIR_UPDATE/custom_bl/ossi-ipwl
92
		cp -rf $DIR_BLACKLIST/ossi-* $DIR_UPDATE/custom_bl/
96
# backup of different conf files (main conf file, filtering, digest, etc)
93
# backup of different conf files (main conf file, filtering, digest, etc)
97
		mkdir $DIR_UPDATE/etc/
94
		mkdir $DIR_UPDATE/etc/
98
		cp -rf $DIR_ETC/* $DIR_UPDATE/etc/
95
		cp -rf $DIR_ETC/* $DIR_UPDATE/etc/
99
# backup of the security certificates (server & CA)
96
# backup of the security certificates (server & CA)
100
		cp -f /etc/pki/tls/certs/alcasar.crt* $DIR_UPDATE # autosigned and official if exist
97
		cp -f /etc/pki/tls/certs/alcasar.crt* $DIR_UPDATE # autosigned and official if exist
101
		cp -f /etc/pki/tls/private/alcasar.key* $DIR_UPDATE # autosigned & official if exist
98
		cp -f /etc/pki/tls/private/alcasar.key* $DIR_UPDATE # autosigned & official if exist
102
		cp -f /etc/pki/CA/alcasar-ca.crt $DIR_UPDATE
99
		cp -f /etc/pki/CA/alcasar-ca.crt $DIR_UPDATE
103
		cp -f /etc/pki/CA/private/alcasar-ca.key $DIR_UPDATE
100
		cp -f /etc/pki/CA/private/alcasar-ca.key $DIR_UPDATE
104
		if [ -e /etc/pki/tls/certs/server-chain.crt ]; then
101
		if [ -e /etc/pki/tls/certs/server-chain.crt ]; then
105
			cp -f /etc/pki/tls/certs/server-chain.crt $DIR_UPDATE
102
			cp -f /etc/pki/tls/certs/server-chain.crt $DIR_UPDATE
106
		else
103
		else
107
			cp -f /etc/pki/tls/certs/alcasar.crt $DIR_UPDATE/server-chain.crt
104
			cp -f /etc/pki/tls/certs/alcasar.crt $DIR_UPDATE/server-chain.crt
108
		fi
105
		fi
109
# backup DNSMASQ conf file
106
# backup DNSMASQ conf file
110
	 	cp /etc/sysconfig/dnsmasq $DIR_UPDATE
107
	 	cp /etc/sysconfig/dnsmasq $DIR_UPDATE
111
# archive file creation
108
# archive file creation
112
		cd /tmp
109
		cd /tmp
113
		tar -cf alcasar-conf.tar conf/
110
		tar -cf alcasar-conf.tar conf/
114
		gzip -f alcasar-conf.tar
111
		gzip -f alcasar-conf.tar
115
		rm -rf $DIR_UPDATE
112
		rm -rf $DIR_UPDATE
116
		;;
113
		;;
117
	--load|-load)
114
	--load|-load)
118
		cd /tmp
115
		cd /tmp
119
		tar -xf /tmp/alcasar-conf*.tar.gz
116
		tar -xf /tmp/alcasar-conf*.tar.gz
120
# Retrieve the logo
117
# Retrieve the logo
121
		[ -e $DIR_UPDATE/organisme.png ] && cp -f $DIR_UPDATE/organisme.png $DIR_WEB/images/
118
		[ -e $DIR_UPDATE/organisme.png ] && cp -f $DIR_UPDATE/organisme.png $DIR_WEB/images/
122
		chown apache:apache $DIR_WEB/images/organisme.png $DIR_WEB/intercept.php
119
		chown apache:apache $DIR_WEB/images/organisme.png $DIR_WEB/intercept.php
123
# Retrieve the security certificates (CA and server)
120
# Retrieve the security certificates (CA and server)
124
		cp -f $DIR_UPDATE/alcasar-ca.crt* /etc/pki/CA/ # autosigned & official
121
		cp -f $DIR_UPDATE/alcasar-ca.crt* /etc/pki/CA/ # autosigned & official
125
		cp -f $DIR_UPDATE/alcasar-ca.key* /etc/pki/CA/private/ # autosigned & official
122
		cp -f $DIR_UPDATE/alcasar-ca.key* /etc/pki/CA/private/ # autosigned & official
126
		cp -f $DIR_UPDATE/alcasar.crt /etc/pki/tls/certs/
123
		cp -f $DIR_UPDATE/alcasar.crt /etc/pki/tls/certs/
127
		cp -f $DIR_UPDATE/alcasar.key /etc/pki/tls/private/
124
		cp -f $DIR_UPDATE/alcasar.key /etc/pki/tls/private/
128
		[ -e $DIR_UPDATE/server-chain.crt ] &&	cp -f $DIR_UPDATE/server-chain.crt /etc/pki/tls/certs/
125
		[ -e $DIR_UPDATE/server-chain.crt ] &&	cp -f $DIR_UPDATE/server-chain.crt /etc/pki/tls/certs/
129
		chown -R root:apache /etc/pki
126
		chown -R root:apache /etc/pki
130
		chmod -R 750 /etc/pki
127
		chmod -R 750 /etc/pki
131
# Import of the users database
128
# Import of the users database
132
		gzip -dc < `ls $DIR_UPDATE/alcasar-users-database*` | mysql -u$DB_USER -p$radiuspwd
129
		gzip -dc < `ls $DIR_UPDATE/alcasar-users-database*` | mysql -u$DB_USER -p$radiuspwd
133
# Retrieve local parameters
130
# Retrieve local parameters
134
		[ -d $DIR_UPDATE/etc ] && cp -rf $DIR_UPDATE/etc/* $DIR_ETC/
131
		[ -d $DIR_UPDATE/etc ] && cp -rf $DIR_UPDATE/etc/* $DIR_ETC/
135
# Retrieve BL/WL custom files
132
# Retrieve BL/WL custom files
136
		cp -f $DIR_UPDATE/custom_bl/exceptioniplist /etc/dansguardian/lists/
133
		cp -f $DIR_UPDATE/custom_bl/exceptioniplist /etc/dansguardian/lists/
137
		cp -f $DIR_UPDATE/custom_bl/exceptionsitelist /etc/dansguardian/lists/
134
		cp -f $DIR_UPDATE/custom_bl/exceptionsitelist /etc/dansguardian/lists/
138
		cp -f $DIR_UPDATE/custom_bl/urlregexplist /etc/dansguardian/lists/
135
		cp -f $DIR_UPDATE/custom_bl/urlregexplist /etc/dansguardian/lists/
139
		cp -f $DIR_UPDATE/custom_bl/bannedsitelist /etc/dansguardian/lists/ 
136
		cp -f $DIR_UPDATE/custom_bl/bannedsitelist /etc/dansguardian/lists/ 
140
		cp -f $DIR_UPDATE/custom_bl/exceptionurllist /etc/dansguardian/lists/
137
		cp -f $DIR_UPDATE/custom_bl/exceptionurllist /etc/dansguardian/lists/
141
		cp -f $DIR_UPDATE/custom_bl/bannedurllist /etc/dansguardian/lists/
138
		cp -f $DIR_UPDATE/custom_bl/bannedurllist /etc/dansguardian/lists/
142
		cp -f $DIR_UPDATE/custom_bl/ossi-dnsbl.conf $DIR_SHARE/dnsmasq-bl/ossi.conf
-
 
143
		cp -f $DIR_UPDATE/custom_bl/ossi-dnswl.conf $DIR_SHARE/dnsmasq-wl/ossi.conf
-
 
144
		cp -f $DIR_UPDATE/custom_bl/ossi-ipbl $DIR_SHARE/iptables-bl/ossi
-
 
145
		cp -f $DIR_UPDATE/custom_bl/ossi-ipwl $DIR_SHARE/iptables-wl/ossi
139
		cp -rf $DIR_UPDATE/custom_bl/ossi-* $DIR_BLACKLIST/
146
		chown -R dansguardian:apache /etc/dansguardian/lists
140
		chown -R dansguardian:apache /etc/dansguardian/lists
147
		chmod -R g+rw /etc/dansguardian/lists
141
		chmod -R g+rw /etc/dansguardian/lists
148
# Adapt DNS/URL filtering
142
# Adapt DNS/URL filtering
149
		PARENT_SCRIPT=`basename $0`
143
		PARENT_SCRIPT=`basename $0`
150
		export PARENT_SCRIPT
144
		export PARENT_SCRIPT
151
		$DIR_BIN/alcasar-bl.sh -adapt
145
		$DIR_BIN/alcasar-bl.sh -cat_choice
152
		$DIR_BIN/alcasar-bl.sh -reload
146
		$DIR_BIN/alcasar-bl.sh -reload
153
# retrieve dnsmasq general config file
147
# retrieve dnsmasq general config file
154
		[ -e $DIR_UPDATE/dnsmasq ] && cp -f $DIR_UPDATE/dnsmasq /etc/sysconfig/dnsmasq \
148
		[ -e $DIR_UPDATE/dnsmasq ] && cp -f $DIR_UPDATE/dnsmasq /etc/sysconfig/dnsmasq \
155
		&& chown root.root /etc/sysconfig/dnsmasq \
149
		&& chown root.root /etc/sysconfig/dnsmasq \
156
		&& chmod 644 /etc/sysconfig/dnsmasq
150
		&& chmod 644 /etc/sysconfig/dnsmasq
157
# admin profile update (admin + manager + backup)
151
# admin profile update (admin + manager + backup)
158
		$DIR_BIN/alcasar-profil.sh --list
152
		$DIR_BIN/alcasar-profil.sh --list
159
# Start / Stop SSH Daemon
153
# Start / Stop SSH Daemon
160
		ssh_active=`grep SSH= $CONF_FILE|cut -d"=" -f2`
154
		ssh_active=`grep SSH= $CONF_FILE|cut -d"=" -f2`
161
		if [ $ssh_active = "on" ]
155
		if [ $ssh_active = "on" ]
162
		then
156
		then
163
			/usr/bin/systemctl -q enable sshd.service
157
			/usr/bin/systemctl -q enable sshd.service
164
		else
158
		else
165
			/usr/bin/systemctl -q disable sshd.service
159
			/usr/bin/systemctl -q disable sshd.service
166
		fi
160
		fi
167
# Remove the update folder
161
# Remove the update folder
168
		rm -rf $DIR_UPDATE
162
		rm -rf $DIR_UPDATE
169
		;;
163
		;;
170
	--apply|-apply)
164
	--apply|-apply)
171
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\/([012]?[0-9]|3[0-2])\b"
165
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\/([012]?[0-9]|3[0-2])\b"
172
		PRIVATE_IP_MASK=`grep ^PRIVATE_IP $CONF_FILE|cut -d"=" -f2`
166
		PRIVATE_IP_MASK=`grep ^PRIVATE_IP $CONF_FILE|cut -d"=" -f2`
173
		check=$(echo $PRIVATE_IP_MASK | egrep $PTN)
167
		check=$(echo $PRIVATE_IP_MASK | egrep $PTN)
174
		if [[ "$?" -ne 0 ]]
168
		if [[ "$?" -ne 0 ]]
175
		then 
169
		then 
176
			echo "Syntax error for PRIVATE_IP_MASK ($PRIVATE_IP_MASK)"
170
			echo "Syntax error for PRIVATE_IP_MASK ($PRIVATE_IP_MASK)"
177
			exit 0
171
			exit 0
178
		fi
172
		fi
179
		PUBLIC_IP_MASK=`grep ^PUBLIC_IP $CONF_FILE|cut -d"=" -f2`
173
		PUBLIC_IP_MASK=`grep ^PUBLIC_IP $CONF_FILE|cut -d"=" -f2`
180
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b"
174
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b"
181
		if [[ "$PUBLIC_IP_MASK" == "dhcp" ]]
175
		if [[ "$PUBLIC_IP_MASK" == "dhcp" ]]
182
		then
176
		then
183
			PUBLIC_GATEWAY="dhcp"
177
			PUBLIC_GATEWAY="dhcp"
184
 
178
 
185
		else
179
		else
186
			check=$(echo $PUBLIC_IP_MASK | egrep $PTN)
180
			check=$(echo $PUBLIC_IP_MASK | egrep $PTN)
187
			if [[ "$?" -ne 0 ]]
181
			if [[ "$?" -ne 0 ]]
188
			then 
182
			then 
189
				echo "Syntax error for PUBLIC_IP_MASK ($PUBLIC_IP_MASK)"
183
				echo "Syntax error for PUBLIC_IP_MASK ($PUBLIC_IP_MASK)"
190
				exit 0
184
				exit 0
191
			fi
185
			fi
192
			PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
186
			PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
193
			PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
187
			PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
194
			PUBLIC_GATEWAY=`grep ^GW $CONF_FILE|cut -d"=" -f2`
188
			PUBLIC_GATEWAY=`grep ^GW $CONF_FILE|cut -d"=" -f2`
195
			check=$(echo $PUBLIC_GATEWAY | egrep $PTN)
189
			check=$(echo $PUBLIC_GATEWAY | egrep $PTN)
196
			if [[ "$?" -ne 0 ]]
190
			if [[ "$?" -ne 0 ]]
197
			then 
191
			then 
198
				echo "Syntax error for the Gateway IP ($PUBLIC_GATEWAY)"
192
				echo "Syntax error for the Gateway IP ($PUBLIC_GATEWAY)"
199
				exit 0
193
				exit 0
200
			fi
194
			fi
201
		fi
195
		fi
202
		DNS1=`grep ^DNS1 $CONF_FILE|cut -d"=" -f2`
196
		DNS1=`grep ^DNS1 $CONF_FILE|cut -d"=" -f2`
203
		check=$(echo $DNS1 | egrep $PTN)
197
		check=$(echo $DNS1 | egrep $PTN)
204
		if [[ "$?" -ne 0 ]]
198
		if [[ "$?" -ne 0 ]]
205
		then 
199
		then 
206
			echo "Syntax error for the IP address of the first DNS server ($DNS1)"
200
			echo "Syntax error for the IP address of the first DNS server ($DNS1)"
207
			exit 0
201
			exit 0
208
		fi
202
		fi
209
		DNS2=`grep ^DNS2 $CONF_FILE|cut -d"=" -f2`
203
		DNS2=`grep ^DNS2 $CONF_FILE|cut -d"=" -f2`
210
		check=$(echo $DNS2 | egrep $PTN)
204
		check=$(echo $DNS2 | egrep $PTN)
211
		if [[ "$?" -ne 0 ]]
205
		if [[ "$?" -ne 0 ]]
212
		then 
206
		then 
213
			echo "Syntax error for the IP address of the second DNS server ($DNS2)"
207
			echo "Syntax error for the IP address of the second DNS server ($DNS2)"
214
			exit 0
208
			exit 0
215
		fi
209
		fi
216
		PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`
210
		PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`
217
		PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`
211
		PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`
218
		private_network_calc
212
		private_network_calc
219
		INSTALL_DATE=`grep INSTALL_DATE $CONF_FILE|cut -d"=" -f2`
213
		INSTALL_DATE=`grep INSTALL_DATE $CONF_FILE|cut -d"=" -f2`
220
		ORGANISME=`grep ORGANISM $CONF_FILE|cut -d"=" -f2`
214
		ORGANISME=`grep ORGANISM $CONF_FILE|cut -d"=" -f2`
221
 		DOMAIN=`grep DOMAIN $CONF_FILE|cut -d"=" -f2`
215
 		DOMAIN=`grep DOMAIN $CONF_FILE|cut -d"=" -f2`
222
		DHCP_mode=`grep DHCP= $CONF_FILE|cut -d"=" -f2`
216
		DHCP_mode=`grep DHCP= $CONF_FILE|cut -d"=" -f2`
223
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
217
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
224
		then
218
		then
225
			if [ $DHCP_mode = "off" ] || [ $DHCP_mode = "Off" ] || [ $DHCP_mode = "OFF" ]
219
			if [ $DHCP_mode = "off" ] || [ $DHCP_mode = "Off" ] || [ $DHCP_mode = "OFF" ]
226
			then
220
			then
227
				$DIR_BIN/alcasar-dhcp.sh --off
221
				$DIR_BIN/alcasar-dhcp.sh --off
228
			else
222
			else
229
			        $DIR_BIN/alcasar-dhcp.sh --on
223
			        $DIR_BIN/alcasar-dhcp.sh --on
230
			fi
224
			fi
231
 
225
 
232
# Implementation of the local DNS
226
# Implementation of the local DNS
233
			if [ $INT_DNS_mode = "on" ] || [ $INT_DNS_mode = "On" ] || [ $INT_DNS_mode = "ON" ]
227
			if [ $INT_DNS_mode = "on" ] || [ $INT_DNS_mode = "On" ] || [ $INT_DNS_mode = "ON" ]
234
			then
228
			then
235
				$DIR_BIN/alcasar-dns-local.sh --on
229
				$DIR_BIN/alcasar-dns-local.sh --on
236
			else
230
			else
237
				$DIR_BIN/alcasar-dns-local.sh --off
231
				$DIR_BIN/alcasar-dns-local.sh --off
238
			fi
232
			fi
239
			
233
			
240
# Implementation of the authentification LDAP
234
# Implementation of the authentification LDAP
241
#			if [ LDAP_mode = "on" ] || [ $LDAP_mode = "On" ] || [ $LDAP_mode = "ON" ]
235
#			if [ LDAP_mode = "on" ] || [ $LDAP_mode = "On" ] || [ $LDAP_mode = "ON" ]
242
#			then
236
#			then
243
#				$DIR_BIN/alcasar-ldap.sh
237
#				$DIR_BIN/alcasar-ldap.sh
244
#			fi
238
#			fi
245
 
239
 
246
# Logout everybody
240
# Logout everybody
247
			$DIR_BIN/alcasar-logout.sh all		
241
			$DIR_BIN/alcasar-logout.sh all		
248
# Services stop
242
# Services stop
249
			echo -n "Stop services : "
243
			echo -n "Stop services : "
250
			for i in ntpd tinyproxy dnsmasq dnsmasq-whitelist dnsmasq-blacklist dnsmasq-blackhole chilli network
244
			for i in ntpd tinyproxy dnsmasq dnsmasq-whitelist dnsmasq-blacklist dnsmasq-blackhole chilli network
251
			do
245
			do
252
				/usr/bin/systemctl stop $i && echo -n "$i, "
246
				/usr/bin/systemctl stop $i && echo -n "$i, "
253
			done
247
			done
254
			/usr/bin/kill -s SIGSTOP $(pidof httpd)
248
			/usr/bin/kill -s SIGSTOP $(pidof httpd)
255
			echo
249
			echo
256
		fi
250
		fi
257
 
251
 
258
# /etc/hosts
252
# /etc/hosts
259
		$SED "/alcasar/s?.*?$PRIVATE_IP\talcasar alcasar.localdomain?g" /etc/hosts
253
		$SED "/alcasar/s?.*?$PRIVATE_IP\talcasar alcasar.localdomain?g" /etc/hosts
260
# EXTIF config
254
# EXTIF config
261
		if [ $PUBLIC_IP_MASK == "dhcp" ]
255
		if [ $PUBLIC_IP_MASK == "dhcp" ]
262
		then
256
		then
263
			cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
257
			cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
264
DEVICE=$EXTIF
258
DEVICE=$EXTIF
265
BOOTPROTO=dhcp
259
BOOTPROTO=dhcp
266
DNS1=127.0.0.1
260
DNS1=127.0.0.1
267
PEERDNS=no
261
PEERDNS=no
268
RESOLV_MODS=yes
262
RESOLV_MODS=yes
269
ONBOOT=yes
263
ONBOOT=yes
270
METRIC=10
264
METRIC=10
271
MII_NOT_SUPPORTED=yes
265
MII_NOT_SUPPORTED=yes
272
IPV6INIT=no
266
IPV6INIT=no
273
IPV6TO4INIT=no
267
IPV6TO4INIT=no
274
ACCOUNTING=no
268
ACCOUNTING=no
275
USERCTL=no
269
USERCTL=no
276
MTU=$MTU
270
MTU=$MTU
277
NOZEROCONF=yes
271
NOZEROCONF=yes
278
EOF
272
EOF
279
		else	
273
		else	
280
			cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
274
			cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
281
DEVICE=$EXTIF
275
DEVICE=$EXTIF
282
BOOTPROTO=static
276
BOOTPROTO=static
283
IPADDR=$PUBLIC_IP
277
IPADDR=$PUBLIC_IP
284
NETMASK=$PUBLIC_NETMASK
278
NETMASK=$PUBLIC_NETMASK
285
GATEWAY=$PUBLIC_GATEWAY
279
GATEWAY=$PUBLIC_GATEWAY
286
DNS1=127.0.0.1
280
DNS1=127.0.0.1
287
RESOLV_MODS=yes
281
RESOLV_MODS=yes
288
ONBOOT=yes
282
ONBOOT=yes
289
METRIC=10
283
METRIC=10
290
MII_NOT_SUPPORTED=yes
284
MII_NOT_SUPPORTED=yes
291
IPV6INIT=no
285
IPV6INIT=no
292
IPV6TO4INIT=no
286
IPV6TO4INIT=no
293
ACCOUNTING=no
287
ACCOUNTING=no
294
USERCTL=no
288
USERCTL=no
295
MTU=$MTU
289
MTU=$MTU
296
NOZEROCONF=yes
290
NOZEROCONF=yes
297
EOF
291
EOF
298
		fi
292
		fi
299
# INTIF config (for bypass mode only)
293
# INTIF config (for bypass mode only)
300
		$SED "s?^IPADDR=.*?IPADDR=$PRIVATE_IP?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
294
		$SED "s?^IPADDR=.*?IPADDR=$PRIVATE_IP?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
301
		$SED "s?^NETMASK=.*?NETMASK=$PRIVATE_NETMASK?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
295
		$SED "s?^NETMASK=.*?NETMASK=$PRIVATE_NETMASK?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
302
# NTP server
296
# NTP server
303
		$SED "/127.0.0.1/!s?^restrict.*?restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap?g" /etc/ntp.conf
297
		$SED "/127.0.0.1/!s?^restrict.*?restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap?g" /etc/ntp.conf
304
# host.allow 
298
# host.allow 
305
		cat <<EOF > /etc/hosts.allow
299
		cat <<EOF > /etc/hosts.allow
306
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
300
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
307
sshd: ALL
301
sshd: ALL
308
ntpd: $PRIVATE_NETWORK_SHORT
302
ntpd: $PRIVATE_NETWORK_SHORT
309
EOF
303
EOF
310
# Alcasar Control Center
304
# Alcasar Control Center
311
		$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
305
		$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
312
		FIC_MOD_SSL=`find /etc/httpd/conf/ -type f -name ssl.conf`
306
		FIC_MOD_SSL=`find /etc/httpd/conf/ -type f -name ssl.conf`
313
		$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" $FIC_MOD_SSL
307
		$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" $FIC_MOD_SSL
314
		$SED "/127.0.0.1/!s?Allow from .*?Allow from $PRIVATE_NETWORK_MASK?g" /etc/httpd/conf/webapps.d/alcasar.conf
308
		$SED "/127.0.0.1/!s?Allow from .*?Allow from $PRIVATE_NETWORK_MASK?g" /etc/httpd/conf/webapps.d/alcasar.conf
315
# Dialup_Admin
309
# Dialup_Admin
316
		$SED "s?^nas1_name:.*?nas1_name: alcasar-$ORGANISME?g" /etc/freeradius-web/naslist.conf
310
		$SED "s?^nas1_name:.*?nas1_name: alcasar-$ORGANISME?g" /etc/freeradius-web/naslist.conf
317
		$SED "s?^nas1_ip:.*?nas1_ip: $PRIVATE_IP?g" /etc/freeradius-web/naslist.conf
311
		$SED "s?^nas1_ip:.*?nas1_ip: $PRIVATE_IP?g" /etc/freeradius-web/naslist.conf
318
# coova
312
# coova
319
		$SED "s?^net.*?net\t\t$PRIVATE_NETWORK_MASK?g" /etc/chilli.conf
313
		$SED "s?^net.*?net\t\t$PRIVATE_NETWORK_MASK?g" /etc/chilli.conf
320
		$SED "s?^dns1.*?dns1\t\t$PRIVATE_IP?g" /etc/chilli.conf
314
		$SED "s?^dns1.*?dns1\t\t$PRIVATE_IP?g" /etc/chilli.conf
321
		$SED "s?^dns2.*?dns2\t\t$PRIVATE_IP?g" /etc/chilli.conf
315
		$SED "s?^dns2.*?dns2\t\t$PRIVATE_IP?g" /etc/chilli.conf
322
		$SED "s?^uamlisten.*?uamlisten\t$PRIVATE_IP?g" /etc/chilli.conf
316
		$SED "s?^uamlisten.*?uamlisten\t$PRIVATE_IP?g" /etc/chilli.conf
323
		# modify the DHCP static ip file. Reserve the second IP address for INTIF (the first one is for tun0). Keep previous entries
317
		# modify the DHCP static ip file. Reserve the second IP address for INTIF (the first one is for tun0). Keep previous entries
324
		$SED "s?^$PRIVATE_MAC.*?$PRIVATE_MAC $PRIVATE_SECOND_IP?" $DIR_ETC/alcasar-ethers
318
		$SED "s?^$PRIVATE_MAC.*?$PRIVATE_MAC $PRIVATE_SECOND_IP?" $DIR_ETC/alcasar-ethers
325
# dnsmasq
319
# dnsmasq
326
		$SED "/127.0.0.1/!s?^listen-address=.*?listen-address=$PRIVATE_IP?g" /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf /etc/dnsmasq-whitelist.conf /etc/dnsmasq-blackhole.conf
320
		$SED "/127.0.0.1/!s?^listen-address=.*?listen-address=$PRIVATE_IP?g" /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf /etc/dnsmasq-whitelist.conf /etc/dnsmasq-blackhole.conf
327
		for i in /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf
321
		for i in /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf
328
		do
322
		do
329
			$SED "/^server=/d" $i
323
			$SED "/^server=/d" $i
330
			echo "server=$DNS1" >> $i
324
			echo "server=$DNS1" >> $i
331
			echo "server=$DNS2" >> $i
325
			echo "server=$DNS2" >> $i
332
		done
326
		done
333
		$SED "s?^dhcp-range=.*?dhcp-range=$PRIVATE_SECOND_IP,$PRIVATE_LAST_IP,$PRIVATE_NETMASK,12h?g" /etc/dnsmasq.conf
327
		$SED "s?^dhcp-range=.*?dhcp-range=$PRIVATE_SECOND_IP,$PRIVATE_LAST_IP,$PRIVATE_NETMASK,12h?g" /etc/dnsmasq.conf
334
		$SED "s?^dhcp-option=option:router.*?dhcp-option=option:router,$PRIVATE_IP?g" /etc/dnsmasq.conf
328
		$SED "s?^dhcp-option=option:router.*?dhcp-option=option:router,$PRIVATE_IP?g" /etc/dnsmasq.conf
335
# tinyproxy			
329
# tinyproxy			
336
		$SED "s?^Listen.*?Listen $PRIVATE_IP?g" /etc/tinyproxy/tinyproxy.conf
330
		$SED "s?^Listen.*?Listen $PRIVATE_IP?g" /etc/tinyproxy/tinyproxy.conf
337
# DG + BL
331
# DG + BL
338
		$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" /etc/dansguardian/dansguardian.conf
332
		$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" /etc/dansguardian/dansguardian.conf
339
# Watchdog
333
# Watchdog
340
		$SED "s?^PRIVATE_IP=.*?PRIVATE_IP=\"$PRIVATE_IP\"?g" $DIR_BIN/alcasar-watchdog.sh
334
		$SED "s?^PRIVATE_IP=.*?PRIVATE_IP=\"$PRIVATE_IP\"?g" $DIR_BIN/alcasar-watchdog.sh
341
# Prompts
335
# Prompts
342
		$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
336
		$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
343
# sudoers
337
# sudoers
344
		$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
338
		$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
345
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
339
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
346
		then
340
		then
347
# Services start
341
# Services start
348
			/usr/bin/systemctl start network && echo -n "Start service : network" && sleep 1
342
			/usr/bin/systemctl start network && echo -n "Start service : network" && sleep 1
349
			$DIR_BIN/alcasar-dhcp.sh -$DHCP_mode && echo -n ", coova" # apply DHCP mode and start coova
343
			$DIR_BIN/alcasar-dhcp.sh -$DHCP_mode && echo -n ", coova" # apply DHCP mode and start coova
350
			for i in dnsmasq tinyproxy ntpd
344
			for i in dnsmasq tinyproxy ntpd
351
				do
345
				do
352
					sleep 1
346
					sleep 1
353
					/usr/bin/systemctl start $i && echo -n ", $i"
347
					/usr/bin/systemctl start $i && echo -n ", $i"
354
				done
348
				done
355
			$DIR_BIN/alcasar-bl.sh -reload && echo ", dnsmasq-blacklist, dnsmasq-whitelist, iptables,"
349
			$DIR_BIN/alcasar-bl.sh -reload && echo ", dnsmasq-blacklist, dnsmasq-whitelist, iptables,"
356
			/usr/bin/kill -s SIGCONT $(pidof httpd)
350
			/usr/bin/kill -s SIGCONT $(pidof httpd)
357
			/usr/bin/systemctl reload httpd && echo -n ", httpd"
351
			/usr/bin/systemctl reload httpd && echo -n ", httpd"
358
		fi
352
		fi
359
# Start / Stop SSH Daemon
353
# Start / Stop SSH Daemon
360
		ssh_active=`grep SSH= $CONF_FILE|cut -d"=" -f2`
354
		ssh_active=`grep SSH= $CONF_FILE|cut -d"=" -f2`
361
		if [ $ssh_active = "on" ]
355
		if [ $ssh_active = "on" ]
362
		then
356
		then
363
			/usr/bin/systemctl enable sshd.service
357
			/usr/bin/systemctl enable sshd.service
364
			if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
358
			if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
365
			then
359
			then
366
				/usr/bin/systemctl start sshd.service
360
				/usr/bin/systemctl start sshd.service
367
			fi
361
			fi
368
		else
362
		else
369
			/usr/bin/systemctl disable sshd.service
363
			/usr/bin/systemctl disable sshd.service
370
			if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
364
			if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
371
			then
365
			then
372
				/usr/bin/systemctl stop sshd.service
366
				/usr/bin/systemctl stop sshd.service
373
			fi
367
			fi
374
		fi
368
		fi
375
		;;
369
		;;
376
	*)
370
	*)
377
		echo "Argument inconnu :$1";
371
		echo "Argument inconnu :$1";
378
		echo "$usage"
372
		echo "$usage"
379
		exit 1
373
		exit 1
380
		;;
374
		;;
381
esac
375
esac
382
 
376
 
383
 
377