diff options
author | Sol Jerome <solj@ices.utexas.edu> | 2009-11-30 20:59:25 +0000 |
---|---|---|
committer | Sol Jerome <solj@ices.utexas.edu> | 2009-11-30 20:59:25 +0000 |
commit | 4eafcba4a47bb81da309e2e183ecba6601f89941 (patch) | |
tree | b47dd48b81f44024f4aee2858270c4198bc18c7e /src/lib/Client/Tools/__init__.py | |
parent | 96b390265592d210bb09e9374fa376e3990e37c3 (diff) | |
download | bcfg2-4eafcba4a47bb81da309e2e183ecba6601f89941.tar.gz bcfg2-4eafcba4a47bb81da309e2e183ecba6601f89941.tar.bz2 bcfg2-4eafcba4a47bb81da309e2e183ecba6601f89941.zip |
MacPorts: Preliminary attempt at a workable macports client tool
This commit adds support for installing macports via 'port install' and
verifying the presence of installed packages. We can't expect to be able
to do much more than this at the moment.
Signed-off-by: Sol Jerome <solj@ices.utexas.edu>
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5597 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Tools/__init__.py')
-rw-r--r-- | src/lib/Client/Tools/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Client/Tools/__init__.py b/src/lib/Client/Tools/__init__.py index b6936af18..d25219579 100644 --- a/src/lib/Client/Tools/__init__.py +++ b/src/lib/Client/Tools/__init__.py @@ -2,8 +2,8 @@ __revision__ = '$Revision$' __all__ = ["Action", "APT", "Blast", "Chkconfig", "DebInit", "Encap", "IPS", - "FreeBSDInit", "FreeBSDPackage", "launchd", "Portage", "POSIX", - "RPMng", 'rpmtools', "RcUpdate", "SMF", "SYSV", "YUMng"] + "FreeBSDInit", "FreeBSDPackage", "launchd", "MacPorts", "Portage", + "POSIX", "RPMng", 'rpmtools', "RcUpdate", "SMF", "SYSV", "YUMng"] drivers = [item for item in __all__ if item not in ['rpmtools']] default = [item for item in drivers if item not in ['RPM', 'Yum']] |