Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar-rpm-download.sh 2939 2021-04-07 22:20:08Z rexy $
|
2 |
# $Id: alcasar-rpm-download.sh 2941 2021-04-12 17:21:42Z rexy $
|
3 |
|
3 |
|
4 |
# alcasar-urpmi.sh
|
4 |
# alcasar-rpm-download.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écessaires dans un fichier tarball
|
8 |
# récupération des RPM nécessaires dans un fichier tarball
|
9 |
# retrieve needed RPM in a tarball file
|
9 |
# retrieve needed RPM in a tarball file
|
Line 11... |
Line 11... |
11 |
VERSION="7"
|
11 |
VERSION="7"
|
12 |
ARCH="x86_64"
|
12 |
ARCH="x86_64"
|
13 |
# The kernel version we compile netflow for
|
13 |
# The kernel version we compile netflow for
|
14 |
KERNEL="kernel-server-5.10.27-1.mga7-1-1.mga7"
|
14 |
KERNEL="kernel-server-5.10.27-1.mga7-1-1.mga7"
|
15 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
15 |
# ****** Alcasar needed RPMS - paquetages nécessaires au fonctionnement d'Alcasar ******
|
16 |
PACKAGES="vim-enhanced freeradius freeradius-mysql freeradius-ldap lighttpd lighttpd-mod_auth php-fpm php-gd php-ldap php-mysqli php-mbstring php-sockets php-curl php-pdo_sqlite php-cli php-rrd unbound e2guardian postfix mariadb ntp bind-utils openssh-server rng-utils rsync clamd fail2ban gnupg2 ulogd pm-fallback-policy ipset usb_modeswitch vnstat dos2unix p7zip msec kernel-userspace-headers kernel-firmware-nonfree dnsmasq dhcp-server tcpdump fonts-dejavu-common fonts-ttf-dejavu lsscsi nvme-cli sudo socat"
|
16 |
PACKAGES="vim-enhanced freeradius freeradius-mysql freeradius-ldap lighttpd lighttpd-mod_auth php-fpm php-gd php-ldap php-mysqli php-mbstring php-sockets php-curl php-pdo_sqlite php-cli unbound e2guardian postfix mariadb ntp bind-utils openssh-server rng-utils rsync clamd fail2ban gnupg2 ulogd pm-fallback-policy ipset usb_modeswitch vnstat dos2unix p7zip msec kernel-userspace-headers kernel-firmware-nonfree dnsmasq dhcp-server tcpdump fonts-dejavu-common fonts-ttf-dejavu lsscsi nvme-cli sudo socat"
|
17 |
|
17 |
|
18 |
rpm_repository_sync ()
|
18 |
rpm_repository_sync ()
|
19 |
{
|
19 |
{
|
20 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
20 |
cat <<EOF > /etc/urpmi/urpmi.cfg
|
21 |
{
|
21 |
{
|
Line 30... |
Line 30... |
30 |
|
30 |
|
31 |
rpm_error ()
|
31 |
rpm_error ()
|
32 |
{
|
32 |
{
|
33 |
echo
|
33 |
echo
|
34 |
echo "Relancez l'installation ultérieurement."
|
34 |
echo "Relancez l'installation ultérieurement."
|
35 |
echo "Si vous rencontrez à nouveau ce problème, modifier les variables MIRRORLIST[1&2] du fichier 'scripts/alcasar-urpmi.sh'"
|
35 |
echo "Si vous rencontrez à nouveau ce problème, modifier les variables MIRRORLIST[1&2] du fichier 'scripts/alcasar-rpm.sh'"
|
36 |
echo "Try an other install later."
|
36 |
echo "Try an other install later."
|
37 |
echo "If this problem occurs again, change the MIRRORLIST[1&2] variables in the file 'scripts/alcasar-urpmi.sh'"
|
37 |
echo "If this problem occurs again, change the MIRRORLIST[1&2] variables in the file 'scripts/alcasar-rpm.sh'"
|
38 |
}
|
38 |
}
|
39 |
|
39 |
|
40 |
# extract the current architecture (i586 ou X64)
|
40 |
# extract the current architecture (i586 ou X64)
|
41 |
fic=`cat /etc/product.id`
|
41 |
fic=`cat /etc/product.id`
|
42 |
old="$IFS"
|
42 |
old="$IFS"
|