#616: Mejorar compatibilidad del instalador con CentOS 6.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4272 a21b9725-9963-47de-94b9-378ad31fedc9remotes/github/debian-pkg
parent
c1d6e25b15
commit
c525453542
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue