summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/SSHbase.py
diff options
context:
space:
mode:
authorHolger Weiß <holger@zedat.fu-berlin.de>2011-12-02 17:29:11 +0100
committerHolger Weiß <holger@zedat.fu-berlin.de>2011-12-02 17:29:11 +0100
commitacba97ec5409045a514df785a71407246a20e23a (patch)
tree84ea1171b652e0e0e40daea900277449a409118f /src/lib/Server/Plugins/SSHbase.py
parent2614b33bd9de1f4ceae1422013b818f1842d0736 (diff)
downloadbcfg2-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/SSHbase.py')
-rw-r--r--src/lib/Server/Plugins/SSHbase.py1
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):