summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2014-07-07 11:29:04 +0000
committerramon <ramongomez@us.es>2014-07-07 11:29:04 +0000
commit35d5672ebefb1600945b5996d9916d0287d5f3c9 (patch)
treea97ae36f2b09bf01e86d33011edd93371f4a1f5f /installer
parentc49ef02c227d56c68d5a3d5ce891a0f49db81f88 (diff)
#648: Actualizador también instala dependencias para script {{{comparemac}}}.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4324 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer')
-rwxr-xr-xinstaller/opengnsys_update.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh
index f9ffdf71..da45b703 100755
--- a/installer/opengnsys_update.sh
+++ b/installer/opengnsys_update.sh
@@ -97,7 +97,7 @@ OSDISTRIB=$(lsb_release -is 2>/dev/null)
# Configuración según la distribución de Linux.
case "$OSDISTRIB" in
Ubuntu|Debian|LinuxMint)
- DEPENDENCIES=( php5-ldap xinetd rsync btrfs-tools procps)
+ DEPENDENCIES=( php5-ldap xinetd rsync btrfs-tools procps arp-scan )
UPDATEPKGLIST="apt-get update"
INSTALLPKGS="apt-get -y install --force-yes"
CHECKPKG="dpkg -s \$package 2>/dev/null | grep -q \"Status: install ok\""
@@ -114,7 +114,7 @@ case "$OSDISTRIB" in
INETDCFGDIR=/etc/xinetd.d
;;
Fedora|CentOS)
- DEPENDENCIES=( php-ldap xinetd rsync btrfs-progs procps-ng )
+ DEPENDENCIES=( php-ldap xinetd rsync btrfs-progs procps-ng arp-scan )
INSTALLPKGS="yum install -y"
CHECKPKG="rpm -q --quiet \$package"
if which systemctl &>/dev/null; then