summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-08-31 14:48:59 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-08-31 14:48:59 +0000
commit096846ccbc39c5b874b3d2fbb69514a273107ee7 (patch)
tree37129e803a30b0a37e172ff09b18a3815e817efc
parent6805748e8c25275acdafebf83feb8e56196de63a (diff)
downloadbcfg2-096846ccbc39c5b874b3d2fbb69514a273107ee7.tar.gz
bcfg2-096846ccbc39c5b874b3d2fbb69514a273107ee7.tar.bz2
bcfg2-096846ccbc39c5b874b3d2fbb69514a273107ee7.zip
fix syntax error
(Logical change 1.46) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@276 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Server/Generators/sshbase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Generators/sshbase.py b/src/lib/Server/Generators/sshbase.py
index 8ce743738..b18e0491c 100644
--- a/src/lib/Server/Generators/sshbase.py
+++ b/src/lib/Server/Generators/sshbase.py
@@ -13,7 +13,7 @@ from Bcfg2.Server.Generator import Generator, DirectoryBacked
from elementtree.ElementTree import Element
class sshbase(Generator):
- "The sshbase generator manages ssh host keys (both v1 and v2) for hosts. It also manages
+ '''The sshbase generator manages ssh host keys (both v1 and v2) for hosts. It also manages
the ssh_known_hosts file. It can integrate host keys from other management domains and
similarly export its keys. The repository contains files in the following formats:
ssh_host_key.H_(hostname) -> the v1 host private key for (hostname)
@@ -21,7 +21,7 @@ class sshbase(Generator):
ssh_host_(dr)sa_key.H_(hostname) -> the v2 ssh host private key for (hostname)
ssh_host_(dr)sa_key.pub.H_(hostname) -> the v2 ssh host public key for (hostname)
ssh_known_hosts -> the current known hosts file. this is regenerated each time a new key is generated.
-"
+'''
__name__ = 'sshbase'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'