opskeleton 0.8.4 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67c2e570a9a06828f6c0f8eb9a94addc4ba0f46b
4
- data.tar.gz: 6b84d057ac2661d98756f7da999046138c1b525e
3
+ metadata.gz: 8f96d2a14553950d75977160174ecf2b915f7bf0
4
+ data.tar.gz: 6d7ee645e808222647d4da637ad06aa1cdee2283
5
5
  SHA512:
6
- metadata.gz: 193f9cc34d66c018e8a87c61fadc0c48202647575980b3270adf3e1df983107af2b2f24a0bc2de8b40a2be1c857001c462ef236f4fa7ad4769207148d40f3d53
7
- data.tar.gz: bf57906145847a13d6d6171599fb6a75129651cb815c8c89dab00e4fb362de8d65f38f5eed0fa04236b339f48bca309af41a75a189a8b293de8ebc33260a587c
6
+ metadata.gz: 1e10d4db5386945ccc1d1f6a50654a2fb65edbdfcc095353b022955b89745d329d1288a0091caede43e7bd2bb636ea8734f7a28f7f473dd8c79cf16571c98e7e
7
+ data.tar.gz: eb5ae8303fca728ff55ba4d10f218a3409f1d2366aa386fe70c6fb9751fe10fc48d5a5944cd43706f59b8ad4400b88fbb77330b31a55ce1f937ae34a8b5cea4d
data/CHANGES.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Changes to opskeleton in version 0.8.5
2
+
3
+ * Misc templates cleanup
4
+ * Asserting path in which opsk tasks are being run
5
+ * Vagrant configuration plugin usage
6
+
1
7
  # Changes to opskeleton in version 0.8.3
2
8
 
3
9
  * openstack support
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opskeleton (0.8.4)
4
+ opskeleton (0.8.5)
5
5
  bintray_deploy
6
6
  thor
7
7
 
@@ -1,3 +1,3 @@
1
1
  module Opskeleton
2
- VERSION = '0.8.4'
2
+ VERSION = '0.8.5'
3
3
  end
@@ -1,5 +1,3 @@
1
- group{ 'puppet': ensure => present }
2
-
3
1
  node '<%=name%>.local' {
4
2
 
5
3
  }
@@ -2,8 +2,6 @@
2
2
  # vi: set ft=ruby :
3
3
  <%if(options['provider'].eql?('openstack')) -%>
4
4
  require 'vagrant-openstack-provider'
5
- require 'yaml'
6
- AUTH = YAML.load_file("#{ENV['HOME']}/.opsk.yaml")
7
5
  <%end -%>
8
6
 
9
7
  Vagrant.configure("2") do |config|
@@ -33,21 +31,20 @@ Vagrant.configure("2") do |config|
33
31
  node.ssh.username = 'ubuntu'
34
32
 
35
33
  node.vm.provider :openstack do |os|
36
- os.openstack_auth_url = 'http://hostname/tokens'
37
- os.username = config.configuration.os_username
38
- os.password = config.configuration.os_password
39
- os.tenant_name = ''
40
- os.flavor = 'm1.small'
41
- os.image = ''
42
- os.floating_ip_pool = ''
34
+ os.openstack_auth_url = 'http://hostname/tokens'
35
+ os.username = config.configuration.os_username
36
+ os.password = config.configuration.os_password
37
+ os.tenant_name = ''
38
+ os.flavor = 'm1.small'
39
+ os.image = ''
40
+ os.floating_ip_pool = ''
43
41
  end
44
42
  <%end -%>
45
43
 
46
44
  node.vm.provision :puppet do |puppet|
47
- puppet.manifests_path = 'manifests'
48
- puppet.manifest_file = 'default.pp'
49
- puppet.options = "--modulepath=/vagrant/modules:/vagrant/static-modules --hiera_config /vagrant/hiera_vagrant.yaml --environment=#{env}"
50
-
45
+ puppet.manifests_path = 'manifests'
46
+ puppet.manifest_file = 'default.pp'
47
+ puppet.options = "--modulepath=/vagrant/modules:/vagrant/static-modules --hiera_config /vagrant/hiera_vagrant.yaml --environment=#{env}"
51
48
  end
52
49
  end
53
50
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opskeleton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - narkisr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-09 00:00:00.000000000 Z
11
+ date: 2015-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor