summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-03-25 19:28:04 +0000
committerDavid M. Lee <dlee@digium.com>2013-03-25 19:28:04 +0000
commitc2ae4acb151c5f016b81e83479f5cd1fa01110fd (patch)
treecf04ce59b49194fe278fa4e4ebd28868c5d6a587 /contrib
parent2e0f5cc854f7770810384f044b3e29c5c0ee3296 (diff)
install_prereq: removed some out-of-date comments
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@383747 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/scripts/install_prereq4
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/scripts/install_prereq b/contrib/scripts/install_prereq
index 951a4f67e..150009f90 100755
--- a/contrib/scripts/install_prereq
+++ b/contrib/scripts/install_prereq
@@ -80,20 +80,16 @@ check_installed_pkgs() {
}
handle_debian() {
- # echo "# Distribution is Debian or compatible"
extra_packs=`check_installed_debs $PACKAGES_DEBIAN`
$testcmd aptitude install -y $extra_packs
}
handle_rh() {
- # echo "# Distribution is RedHat-based or compatible"
extra_packs=`check_installed_rpms $PACKAGES_RH`
- # FIXME: is there yum with RHEL 4?
$testcmd yum install -y $extra_packs
}
handle_obsd() {
- # echo "# Distribution is OpenBSD or compatible"
extra_packs=`check_installed_pkgs $PACKAGES_OBSD`
$testcmd pkg_add $extra_packs
}