summaryrefslogtreecommitdiffstats
path: root/generators/sshbase.py
diff options
context:
space:
mode:
Diffstat (limited to 'generators/sshbase.py')
-rw-r--r--generators/sshbase.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/generators/sshbase.py b/generators/sshbase.py
index 1ba2a6e1c..b7d07ac8d 100644
--- a/generators/sshbase.py
+++ b/generators/sshbase.py
@@ -12,11 +12,11 @@ class sshbase(Generator):
__name__ = 'sshbase'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
- __build__ = { '/etc/ssh/ssh_known_hosts':'build_skn',
- '/etc/ssh/ssh_host_dsa_key':'build_hk',
- '/etc/ssh/ssh_host_rsa_key':'build_hk',
- '/etc/ssh/ssh_host_dsa_key.pub':'build_hk',
- '/etc/ssh/ssh_host_rsa_key.pub':'build_hk'}
+ __provides__ = {'ConfigFile':{'/etc/ssh/ssh_known_hosts':'build_skn',
+ '/etc/ssh/ssh_host_dsa_key':'build_hk',
+ '/etc/ssh/ssh_host_rsa_key':'build_hk',
+ '/etc/ssh/ssh_host_dsa_key.pub':'build_hk',
+ '/etc/ssh/ssh_host_rsa_key.pub':'build_hk'}}
def __setup__(self):
self.repository = DirectoryBacked(self.data)