blob: 56c0e55db07f4ca1da5e05ab41d1210cb63ca992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#!/bin/bash
#
DEBIAN=false;
UBUNTU=false;
if [ `which lsb_release || echo "notinstalled"` == "notinstalled" ]
then
ISSUE=`cat /etc/issue | cut -d " " -f 1`
if [ "x${ISSUE}" == "xDebian" ]; then
DEBIAN=true;
RELEASE=`cat /etc/issue | cut -d " " -f 3`
elif [ "x${ISSUE}" == "xUbuntu" ]; then
UBUNTU=true;
RELEASE=`cat /etc/issue | cut -d " " -f 2`
fi
else
DISTRIBUTOR=$(lsb_release -i -s)
RELEASE=$(lsb_release -r -s)
if [ "x${DISTRIBUTOR}" == "xDebian" ]; then
DEBIAN=true;
elif [ "x${DISTRIBUTOR}" == "xUbuntu" ]; then
UBUNTU=true;
fi
fi
echo "Debian:" ${DEBIAN}
echo "Ubuntu:" ${UBUNTU}
echo "Version:" ${RELEASE}
TEST=`grep contrib /etc/apt/sources.list`
if [ "$TEST" == "" ]
then
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "Az apt sources.list módosítása szükséges!"
if [ DEBIAN ]; then
echo "Debian Jessie (8) esetén például:
deb http://ftp.hu.debian.org/debian/ jessie main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free
deb http://ftp.hu.debian.org/debian/ jessie-updates main contrib non-free
"
fi
exit 255;
fi
if [[ "x${RELEASE}" =~ ^x9.* ]]
then
PKGS="apache2 php php-json php-mysql php-ldap php-mbstring php-mcrypt php-curl mariadb-server-10.1 recode texlive texlive-fonts-extra texlive-latex-extra texlive-binaries texlive-xetex ntp wget ssl-cert ssh pwgen texlive-lang-european"
else
PKGS="apache2 php5 php5-json php5-mysqlnd php5-ldap php5-mcrypt php5-curl mysql-server recode texlive texlive-fonts-extra texlive-latex-extra texlive-binaries texlive-xetex ttf-mscorefonts-installer ntp wget ssl-cert ssh pwgen texlive-lang-european texlive-lang-hungarian"
fi
if [ "$1" == "--no-deb" ]; then
exit 1
fi
cat <<EOF
A rendszer futásához szükséges csomagok ellenőrzése
Ebben a lépésben ellenőrizheti és telepítheti a rendszer működéséhez
szükséges Debian/Ubuntu csomagokat:
$PKGS
EOF
read -n 1 -p "Ellenőrizzem a deb csomagokat? (i/N)" -s DO
if [ "$DO" != "i" ]; then echo -e "\nA függőségek ellenőrzését kihagytam.\n"; exit 1; fi
echo -e "\nFüggőségek ellenőrzése (dpkg): "
MISSING=""
for pkg in $PKGS
do
echo -n " $pkg ... "
STAT=`dpkg -l $pkg | grep $pkg | cut -f 1 -d ' '`
if [ "$STAT" == "ii" ]; then
echo ok
else
echo "még nincs telepítve"
MISSING="$MISSING $pkg"
fi
done
if [ "$MISSING" != "" ]; then
echo Még nem telepített csomagok: $MISSING
read -n 1 -p "Telepítsem? (i/N)" -s DO
if [ "$DO" != "i" ]; then echo " ok, kiléptem..."; exit 1; fi
apt-get update
apt-get -m -f install $MISSING
fi
|