Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar-rpm-download.sh 1056 2013-03-26 21:46:36Z stephane $
|
2 |
# $Id: alcasar-rpm-download.sh 1767 2016-01-16 18:35:35Z richard $
|
3 |
|
3 |
|
4 |
# alcasar-urpmi.sh
|
4 |
# alcasar-urpmi.sh
|
5 |
# by Franck BOUIJOUX and Richard REY
|
5 |
# by Franck BOUIJOUX 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 |
# récupération des RPM nécessaire dans un fichier tarball
|
8 |
# récupération des RPM nécessaire dans un fichier tarball
|
9 |
# retrieve needed RPM in a tarball file
|
9 |
# retrieve needed RPM in a tarball file
|
10 |
|
10 |
|
11 |
VERSION="2"
|
11 |
VERSION="4"
|
12 |
ARCH="i586"
|
12 |
ARCH="i586"
|
13 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
13 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
14 |
PACKAGES="freeradius freeradius-mysql freeradius-ldap freeradius-web apache-mpm-prefork apache-mod_ssl apache-mod_php iptables squid dansguardian postfix mariadb logwatch ntp awstats bind-utils openssh-server php-xml php-ldap php-mysql pam_ccreds rng-utils dnsmasq syslinux rsync cronie-anacron clamav pm-fallback-policy"
|
14 |
PACKAGES="vim-enhanced freeradius freeradius-mysql freeradius-ldap freeradius-web apache apache-mod_ssl apache-mod_php dansguardian postfix mariadb ntp bind-utils openssh-server php-xml php-ldap php-mysql php-mysqli php-mbstring php-sockets php-cli php-curl php-pdo_sqlite php-json rng-utils dnsmasq rsync clamav perl-rrdtool perl-MailTools perl-Socket6 fail2ban gnupg ulogd dkms-ipt_NETFLOW iptables-NETFLOW pm-fallback-policy ipset cronie-anacron gammu usbutils locales-en usb_modeswitch tinyproxy vnstat php-gd sudo iftop"
|
15 |
|
15 |
|
16 |
rpm_repository_sync ()
|
16 |
rpm_repository_sync ()
|
17 |
{
|
17 |
{
|
18 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
18 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
19 |
{
|
19 |
{
|
Line 45... |
Line 45... |
45 |
ARCH=`echo $i|cut -d"=" -f2`
|
45 |
ARCH=`echo $i|cut -d"=" -f2`
|
46 |
fi
|
46 |
fi
|
47 |
done
|
47 |
done
|
48 |
IFS="$old"
|
48 |
IFS="$old"
|
49 |
# We prefer wget than curl
|
49 |
# We prefer wget than curl
|
- |
|
50 |
wget_exist=`rpm -qa|grep wget|wc -l`
|
- |
|
51 |
if [ "$wget_exist" -eq "0" ]
|
- |
|
52 |
then
|
50 |
urpmi --no-verify-rpm --auto ../../conf/rpms/$ARCH/wget*.rpm
|
53 |
urpmi --no-verify-rpm --auto ../../conf/rpms/$ARCH/wget*.rpm
|
- |
|
54 |
fi
|
51 |
# Set the RPM repository
|
55 |
# Set the RPM repository
|
52 |
MIRROR_NBR=2
|
56 |
MIRROR_NBR=2
|
53 |
# For french ALCASARistes
|
57 |
# For french ALCASARistes
|
54 |
MIRRORLIST1="http://www.mirrorservice.org/sites/mageia.org/pub/mageia/distrib/$VERSION/$ARCH"
|
58 |
MIRRORLIST1="http://www.mirrorservice.org/sites/mageia.org/pub/mageia/distrib/$VERSION/$ARCH"
|
55 |
# For International install
|
59 |
# For International install
|