From 2196e621ad47a8cdffde3582f5b112e6846fe291 Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 23 Jun 2006 17:55:40 +0000 Subject: [PATCH] 2006-06-23 17:55:40 by steve Add a stub function 'installGentooPackage' since this is called to install OpenSSH. --- hooks/common.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/hooks/common.sh b/hooks/common.sh index 51d522c..f3a5899 100644 --- a/hooks/common.sh +++ b/hooks/common.sh @@ -108,3 +108,22 @@ function installCentOS4Package chroot ${prefix} /usr/bin/yum -y install ${package} } + +# +# Install a package upon a gentoo system via emerge. +# +# TODO: STUB +# +function installDebianPackage +{ + prefix=$1 + package=$2 + + # + # Log our options + # + logMessage "Installing Gentoo package ${package} to prefix ${prefix}" + + logMessage "NOTE: Not doing anything - this is a stub - FIXME" + +} \ No newline at end of file