Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar.sh 1502 2014-11-27 18:09:24Z richard $
|
2 |
# $Id: alcasar.sh 1507 2014-11-28 17:48:34Z richard $
|
3 |
|
3 |
|
4 |
# alcasar.sh
|
4 |
# alcasar.sh
|
5 |
|
5 |
|
6 |
# ALCASAR Install script - CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...]
|
6 |
# ALCASAR Install script - CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...]
|
7 |
# Ce programme est un logiciel libre ; This software is free and open source
|
7 |
# Ce programme est un logiciel libre ; This software is free and open source
|
Line 72... |
Line 72... |
72 |
DB_GAMMU="gammu" # database name used by Gammu-smsd
|
72 |
DB_GAMMU="gammu" # database name used by Gammu-smsd
|
73 |
# ******* Network parameters - paramètres réseau *******
|
73 |
# ******* Network parameters - paramètres réseau *******
|
74 |
HOSTNAME="alcasar" # default hostname
|
74 |
HOSTNAME="alcasar" # default hostname
|
75 |
DOMAIN="localdomain" # default local domain
|
75 |
DOMAIN="localdomain" # default local domain
|
76 |
EXTIF=`/sbin/ip route|grep default|cut -d" " -f5` # EXTIF is connected to the ISP broadband modem/router (In France : Box-FAI)
|
76 |
EXTIF=`/sbin/ip route|grep default|cut -d" " -f5` # EXTIF is connected to the ISP broadband modem/router (In France : Box-FAI)
|
77 |
INTIF=`/sbin/ip link|grep '^[[:digit:]]:'|grep -v "lo\|$EXTIF"|cut -d" " -f2|tr -d ":"` # INTIF is connected to the consultation network
|
77 |
INTIF=`/sbin/ip link|grep '^[[:digit:]]:'|grep -v "lo\|$EXTIF\|tun0"|cut -d" " -f2|tr -d ":"` # INTIF is connected to the consultation network
|
78 |
MTU="1500"
|
78 |
MTU="1500"
|
79 |
DEFAULT_PRIVATE_IP_MASK="192.168.182.1/24" # Default ALCASAR IP address
|
79 |
DEFAULT_PRIVATE_IP_MASK="192.168.182.1/24" # Default ALCASAR IP address
|
80 |
# ****** Paths - chemin des commandes *******
|
80 |
# ****** Paths - chemin des commandes *******
|
81 |
SED="/bin/sed -i"
|
81 |
SED="/bin/sed -i"
|
82 |
# ****************** End of global parameters *********************
|
82 |
# ****************** End of global parameters *********************
|
Line 1413... |
Line 1413... |
1413 |
$SED "s?'\$ziparg $extensions.*?\$ziparg $extensions -b 127.0.0.1;'?g" /usr/libexec/NfSenRC.pm
|
1413 |
$SED "s?'\$ziparg $extensions.*?\$ziparg $extensions -b 127.0.0.1;'?g" /usr/libexec/NfSenRC.pm
|
1414 |
# expire delay for the profile "live"
|
1414 |
# expire delay for the profile "live"
|
1415 |
systemctl start nfsen
|
1415 |
systemctl start nfsen
|
1416 |
/bin/nfsen -m live -e 62d 2>/dev/null
|
1416 |
/bin/nfsen -m live -e 62d 2>/dev/null
|
1417 |
# add SURFmap plugin
|
1417 |
# add SURFmap plugin
|
1418 |
tar xzf $DIR_CONF/nfsen/SURFmap_v3.3b1.tar.gz -C /tmp/
|
1418 |
tar xzf $DIR_CONF/nfsen/SURFmap_v3.3.1.tar.gz -C /tmp/
|
1419 |
cp $DIR_CONF/nfsen/install-surfmap.sh /tmp/SURFmap/install.sh
|
1419 |
cp $DIR_CONF/nfsen/install-surfmap.sh /tmp/SURFmap/install.sh
|
1420 |
cd /tmp/SURFmap
|
1420 |
cd /tmp/SURFmap
|
1421 |
/usr/bin/sh install.sh
|
1421 |
/usr/bin/sh install.sh
|
1422 |
|
1422 |
|
1423 |
# clear the installation
|
1423 |
# clear the installation
|