summaryrefslogtreecommitdiffstats
path: root/installer/opengnsys_installer.sh
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2018-04-02 15:56:05 +0000
committerramon <ramongomez@us.es>2018-04-02 15:56:05 +0000
commite4546f25ba08d9684bb1191f23d10326899fa696 (patch)
tree1c4b92623d836a8d745672a38147ece886c61130 /installer/opengnsys_installer.sh
parent305c2563a96d76587329a463132d95a3b11c45fe (diff)
#802: Instalar y actualizar paquete de sistema {{{udpcast}}} y ogLive con Kernel 4.13 compatible EFI.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5691 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer/opengnsys_installer.sh')
-rwxr-xr-xinstaller/opengnsys_installer.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh
index 2bbfff62..82520f8d 100755
--- a/installer/opengnsys_installer.sh
+++ b/installer/opengnsys_installer.sh
@@ -77,17 +77,17 @@ done
# Selección de clientes ogLive para descargar.
while : ; do
echo -e "\\nChoose ogLive client to install."
- echo -e "1) Kernel 4.8, 64-bit"
+ echo -e "1) Kernel 4.13, 64-bit, EFI-compatible"
echo -e "2) Kernel 3.2, 32-bit"
echo -e "3) Both"
echo -n -e "Please, type a valid number (1): "
read -r OPT
case "$OPT" in
- 1|"") OGLIVE="ogLive-xenial-4.8.0-39-generic-amd64-r5331.iso"
+ 1|"") OGLIVE="ogLive-xenial-4.13.0-17-generic-amd64-r5520.iso"
break ;;
2) OGLIVE="ogLive-precise-3.2.0-23-generic-r5159.iso"
break ;;
- 3) OGLIVE="ogLive-xenial-4.8.0-39-generic-amd64-r5331.iso ogLive-precise-3.2.0-23-generic-r5159.iso";
+ 3) OGLIVE="ogLive-xenial-4.13.0-17-generic-amd64-r5520.iso ogLive-precise-3.2.0-23-generic-r5159.iso";
break ;;
*) echo -e "\\aERROR: unknown option, try again."
esac
@@ -167,7 +167,7 @@ OSVERSION="${OSVERSION%%.*}"
# Configuración según la distribución GNU/Linux (usar minúsculas).
case "$OSDISTRIB" in
ubuntu|debian|linuxmint)
- DEPENDENCIES=( subversion apache2 php php-ldap libapache2-mod-php mysql-server php-mysql isc-dhcp-server bittorrent tftp-hpa tftpd-hpa xinetd build-essential g++-multilib libmysqlclient-dev wget curl doxygen graphviz bittornado ctorrent samba rsync unzip netpipes debootstrap schroot squashfs-tools btrfs-tools procps arp-scan realpath php-curl gettext moreutils jq wakeonlan )
+ DEPENDENCIES=( subversion apache2 php php-ldap libapache2-mod-php mysql-server php-mysql isc-dhcp-server bittorrent tftp-hpa tftpd-hpa xinetd build-essential g++-multilib libmysqlclient-dev wget curl doxygen graphviz bittornado ctorrent samba rsync unzip netpipes debootstrap schroot squashfs-tools btrfs-tools procps arp-scan realpath php-curl gettext moreutils jq wakeonlan udpcast )
UPDATEPKGLIST="apt-get update"
INSTALLPKG="apt-get -y install --force-yes"
CHECKPKG="dpkg -s \$package 2>/dev/null | grep Status | grep -qw install"