Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar-urpmi.sh 2192 2017-05-01 19:52:53Z richard $
|
2 |
# $Id: alcasar-urpmi.sh 2202 2017-05-06 13:35:14Z richard $
|
3 |
|
3 |
|
4 |
# alcasar-urpmi.sh
|
4 |
# alcasar-urpmi.sh
|
5 |
# by 3abtux and Rexy
|
5 |
# by 3abtux and 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 |
|
Line 12... |
Line 12... |
12 |
VERSION="5"
|
12 |
VERSION="5"
|
13 |
ARCH="i586"
|
13 |
ARCH="i586"
|
14 |
# The kernel version we compile netflow for
|
14 |
# The kernel version we compile netflow for
|
15 |
KERNEL="kernel-server-4.4.59-1.mga5-1-1.mga5"
|
15 |
KERNEL="kernel-server-4.4.59-1.mga5-1-1.mga5"
|
16 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
16 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
17 |
PACKAGES="arp-scan vim-enhanced freeradius freeradius-mysql freeradius-ldap apache apache-mod_ssl apache-mod_php dansguardian postfix mariadb ntp bind-utils openssh-server php-xml php-ldap php-mysqli php-mbstring php-sockets php-cli php-curl php-pdo_sqlite php-json rng-utils rsync clamav perl-rrdtool perl-MailTools perl-Socket6 fail2ban gnupg ulogd pm-fallback-policy ipset cronie-anacron gammu usbutils locales-en usb_modeswitch tinyproxy vnstat php-gd sudo iftop man kernel-firmware-nonfree dos2unix p7zip bc"
|
17 |
PACKAGES="arp-scan vim-enhanced freeradius freeradius-mysql freeradius-ldap apache apache-mod_ssl apache-mod_php dansguardian postfix mariadb ntp bind-utils openssh-server php-xml php-ldap php-mysqli php-mbstring php-sockets php-cli php-curl php-pdo_sqlite php-json rng-utils rsync clamav perl-rrdtool perl-MailTools perl-Socket6 fail2ban gnupg ulogd pm-fallback-policy ipset cronie-anacron gammu usbutils locales-en usb_modeswitch tinyproxy vnstat php-gd sudo iftop man kernel-firmware-nonfree dos2unix p7zip bc msec"
|
18 |
|
18 |
|
19 |
rpm_repository_sync ()
|
19 |
rpm_repository_sync ()
|
20 |
{
|
20 |
{
|
21 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
21 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
22 |
{
|
22 |
{
|
Line 214... |
Line 214... |
214 |
then
|
214 |
then
|
215 |
echo "Cleaning the system : "
|
215 |
echo "Cleaning the system : "
|
216 |
else
|
216 |
else
|
217 |
echo "Nettoyage du système : "
|
217 |
echo "Nettoyage du système : "
|
218 |
fi
|
218 |
fi
|
219 |
for rm_rpm in shorewall mandi avahi mageia-gfxboot-theme privoxy cpupower squid gamin wkhtmltopdf
|
219 |
for rm_rpm in shorewall mandi avahi mageia-gfxboot-theme privoxy cpupower squid gamin
|
220 |
do
|
220 |
do
|
221 |
/usr/sbin/urpme --auto $rm_rpm --auto-orphans 2>/dev/null
|
221 |
/usr/sbin/urpme --auto $rm_rpm --auto-orphans 2>/dev/null
|
222 |
echo -n "."
|
222 |
echo -n "."
|
223 |
done
|
223 |
done
|
224 |
|
224 |
|