summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/Blast.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-12-04 13:56:26 -0600
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-12-04 13:56:26 -0600
commit80087699c8449dd862f73ae4edeb949efd36cc61 (patch)
tree1bc89c256bc7f02fc02e626f2f61ad98ce6a3218 /src/lib/Bcfg2/Client/Tools/Blast.py
parent3ee3158d866170f911c2b6834f54137d13e58aa7 (diff)
downloadbcfg2-80087699c8449dd862f73ae4edeb949efd36cc61.tar.gz
bcfg2-80087699c8449dd862f73ae4edeb949efd36cc61.tar.bz2
bcfg2-80087699c8449dd862f73ae4edeb949efd36cc61.zip
doc: wrote devel docs for client tool base objects
Diffstat (limited to 'src/lib/Bcfg2/Client/Tools/Blast.py')
-rw-r--r--src/lib/Bcfg2/Client/Tools/Blast.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/Blast.py b/src/lib/Bcfg2/Client/Tools/Blast.py
index 5d5e74ab2..2627c42fe 100644
--- a/src/lib/Bcfg2/Client/Tools/Blast.py
+++ b/src/lib/Bcfg2/Client/Tools/Blast.py
@@ -11,7 +11,7 @@ class Blast(Bcfg2.Client.Tools.SYSV.SYSV):
name = 'Blast'
__execs__ = ['/opt/csw/bin/pkg-get', "/usr/bin/pkginfo"]
__handles__ = [('Package', 'blast')]
- __ireq__ = {'Package': ['name', 'version', 'bname']}
+ __req__ = {'Package': ['name', 'version', 'bname']}
def __init__(self, logger, setup, config):
# dont use the sysv constructor
@@ -27,6 +27,6 @@ class Blast(Bcfg2.Client.Tools.SYSV.SYSV):
# Install comes from Bcfg2.Client.Tools.PkgTool
# Extra comes from Bcfg2.Client.Tools.Tool
# Remove comes from Bcfg2.Client.Tools.SYSV
- def FindExtraPackages(self):
+ def FindExtra(self):
"""Pass through to null FindExtra call."""
return []