1
0
mirror of synced 2026-01-18 16:56:58 +00:00

2006-06-23 17:55:40 by steve

Add a stub function 'installGentooPackage' since this is called
 to install OpenSSH.
This commit is contained in:
steve 2006-06-23 17:55:40 +00:00
parent c9c80687d1
commit 2196e621ad

View File

@ -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"
}