summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'