diff options
author | ramon <ramongomez@us.es> | 2014-05-22 12:55:50 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2014-05-22 12:55:50 +0000 |
commit | c525453542251ffe0cb2a1c10c422e48d6811ffe (patch) | |
tree | 12243bbb1412a9b2c4c452f8e27c4e3d56246d4a /installer | |
parent | c1d6e25b156564fda96c5af2bfa250203b614518 (diff) |
#616: Mejorar compatibilidad del instalador con CentOS 6.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4272 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer')
-rwxr-xr-x | installer/opengnsys_installer.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh index 5a2ac40c..9c3d1ddb 100755 --- a/installer/opengnsys_installer.sh +++ b/installer/opengnsys_installer.sh @@ -182,7 +182,7 @@ case "$OSDISTRIB" in TFTPCFGDIR=/var/lib/tftpboot ;; Fedora|CentOS) - DEPENDENCIES=( subversion httpd mod_ssl php php-ldap mysql-server mysql-devel mysql-devel.i686 php-mysql dhcp tftp-server tftp syslinux xinetd binutils gcc gcc-c++ glibc-devel glibc-devel.i686 glibc-static glibc-static.i686 libstdc++ libstdc++.i686 libstdc++-static.i686 libstdc++-devel.i686 make wget doxygen graphviz ctorrent samba rsync unzip debootstrap schroot squashfs-tools btrfs-progs procps-ng ) + DEPENDENCIES=( subversion httpd mod_ssl php php-ldap mysql-server mysql-devel mysql-devel.i686 php-mysql dhcp tftp-server tftp syslinux xinetd binutils gcc gcc-c++ glibc-devel glibc-devel.i686 glibc-static glibc-static.i686 libstdc++ libstdc++.i686 libstdc++-devel.i686 make wget doxygen graphviz ctorrent samba rsync unzip debootstrap schroot squashfs-tools ) INSTALLEXTRADEPS=( 'rpm -Uv ftp://ftp.altlinux.org/pub/distributions/ALTLinux/5.1/branch/files/i586/RPMS/netpipes-4.2-alt1.i586.rpm' 'pushd /tmp; wget http://download.bittornado.com/download/BitTornado-0.3.18.tar.gz; tar xvzf BitTornado-0.3.18.tar.gz; cd BitTornado-CVS; python setup.py install; ln -fs btlaunchmany.py /usr/bin/btlaunchmany; ln -fs bttrack.py /usr/bin/bttrack; popd' ) if [ "$OSDISTRIB" == "CentOS" ]; then @@ -269,8 +269,12 @@ case "$OSDISTRIB" in fi ;; CentOS) # Postconfiguación personalizada para CentOS. - # Incluir repositorio de paquetes EPEL. - DEPENDENCIES=( ${DEPENDENCIES[@]} epel-release ) + # Incluir repositorio de paquetes EPEL y paquetes específicos. + DEPENDENCIES=( ${DEPENDENCIES[@]} epel-release procps ) + ;; + Fedora) # Postconfiguación personalizada para Fedora. + # Incluir paquetes específicos. + DEPENDENCIES=( ${DEPENDENCIES[@]} libstdc++-static.i686 btrfs-progs procps-ng ) ;; esac } |