diff options
author | Holger Weiß <holger@zedat.fu-berlin.de> | 2011-12-02 17:29:11 +0100 |
---|---|---|
committer | Holger Weiß <holger@zedat.fu-berlin.de> | 2011-12-02 17:29:11 +0100 |
commit | acba97ec5409045a514df785a71407246a20e23a (patch) | |
tree | 84ea1171b652e0e0e40daea900277449a409118f /src/lib/Server/Plugins | |
parent | 2614b33bd9de1f4ceae1422013b818f1842d0736 (diff) | |
download | bcfg2-acba97ec5409045a514df785a71407246a20e23a.tar.gz bcfg2-acba97ec5409045a514df785a71407246a20e23a.tar.bz2 bcfg2-acba97ec5409045a514df785a71407246a20e23a.zip |
SSHbase: Don't mark keys as "sensitive" by default
By default, don't set the "sensitive" attribute for private SSH keys, as
this breaks pulling them with bcfg2-admin. Users can set the attribute
in an info.xml file.
Diffstat (limited to 'src/lib/Server/Plugins')
-rw-r--r-- | src/lib/Server/Plugins/SSHbase.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/SSHbase.py b/src/lib/Server/Plugins/SSHbase.py index 8cc7f956c..724d169f5 100644 --- a/src/lib/Server/Plugins/SSHbase.py +++ b/src/lib/Server/Plugins/SSHbase.py @@ -64,7 +64,6 @@ class HostKeyEntrySet(Bcfg2.Server.Plugin.EntrySet): self.metadata['perms'] = '0644' else: self.metadata['perms'] = '0600' - self.metadata['sensitive'] = 'true' class KnownHostsEntrySet(Bcfg2.Server.Plugin.EntrySet): |