summaryrefslogtreecommitdiff
path: root/platform.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-02-06 23:38:00 -0800
committerelijah <elijah@riseup.net>2014-02-06 23:38:00 -0800
commitb14ceb03bf9bfc77f43f1848400c868a2ab2208f (patch)
tree7228bc4724ac360fa1cde9e16b5afdb52aff5628 /platform.rb
parentca1c07ad510ec24037b9fd4baad1a57b26eabedc (diff)
added support for monitor ssh keys (requires latest leap_cli)
Diffstat (limited to 'platform.rb')
-rw-r--r--platform.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/platform.rb b/platform.rb
index 60b0d9a5..62fb0215 100644
--- a/platform.rb
+++ b/platform.rb
@@ -3,8 +3,8 @@
#
Leap::Platform.define do
- self.version = "0.2.4"
- self.compatible_cli = "1.2.4".."1.99"
+ self.version = "0.3.0"
+ self.compatible_cli = "1.3.0".."1.99"
#
# the facter facts that should be gathered
@@ -43,6 +43,8 @@ Leap::Platform.define do
:user_pgp => 'users/#{arg}/#{arg}_pgp.pub',
:known_hosts => 'files/ssh/known_hosts',
:authorized_keys => 'files/ssh/authorized_keys',
+ :monitor_pub_key => 'files/ssh/monitor_ssh.pub',
+ :monitor_priv_key => 'files/ssh/monitor_ssh',
:ca_key => 'files/ca/ca.key',
:ca_cert => 'files/ca/ca.crt',
:client_ca_key => 'files/ca/client_ca.key',
@@ -73,5 +75,9 @@ Leap::Platform.define do
self.node_files = [
:node_config, :hiera, :node_x509_cert, :node_x509_key, :node_ssh_pub_key
]
+
+ self.monitor_username = 'monitor'
+
+ self.reserved_usernames = ['monitor']
end