From 10ebe0f72181ee334bf9bcc4528c8e9dcd1dd425 Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 5 May 2015 11:23:02 -0700 Subject: pin compatible cli to 1.7.x --- platform.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 2f7b36eb..bb77b0d9 100644 --- a/platform.rb +++ b/platform.rb @@ -5,7 +5,7 @@ Leap::Platform.define do self.version = "0.7" - self.compatible_cli = "1.6.3".."1.99" + self.compatible_cli = "1.7.0".."1.7.99" # # the facter facts that should be gathered -- cgit v1.2.3 From 8c184d4809b3e618d0d63b4825495787e3ba9255 Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 17 Jun 2015 15:27:59 -0700 Subject: added support for `leap compile provider.json` (platform version now 0.7.1) --- platform.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index bb77b0d9..82c25f8f 100644 --- a/platform.rb +++ b/platform.rb @@ -4,7 +4,7 @@ # Leap::Platform.define do - self.version = "0.7" + self.version = "0.7.1" self.compatible_cli = "1.7.0".."1.7.99" # @@ -75,8 +75,11 @@ Leap::Platform.define do :commercial_key => 'files/cert/#{arg}.key', :commercial_csr => 'files/cert/#{arg}.csr', :commercial_cert => 'files/cert/#{arg}.crt', - :commercial_ca_cert => 'files/cert/commercial_ca.crt', - :vagrantfile => 'test/Vagrantfile', + :commercial_ca_cert => 'files/cert/commercial_ca.crt', + :vagrantfile => 'test/Vagrantfile', + :static_web_provider_json => 'files/web/bootstrap/#{arg}/provider.json', + :static_web_htaccess => 'files/web/bootstrap/#{arg}/htaccess', + :static_web_readme => 'files/web/bootstrap/README', # node output files :hiera => 'hiera/#{arg}.yaml', -- cgit v1.2.3 From 660576077eaa189f01122608caccea4d23d3383c Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 29 Jun 2015 17:02:12 -0700 Subject: added 'root' to the list of platform-reserved usernames. --- platform.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform.rb') diff --git a/platform.rb b/platform.rb index 82c25f8f..0c3de2a0 100644 --- a/platform.rb +++ b/platform.rb @@ -105,7 +105,7 @@ Leap::Platform.define do self.monitor_username = 'monitor' - self.reserved_usernames = ['monitor'] + self.reserved_usernames = ['monitor', 'root'] self.default_puppet_tags = ['leap_base','leap_service'] end -- cgit v1.2.3