rspec-system 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/resources/prefabs.yml +83 -0
- data/rspec-system.gemspec +1 -1
- metadata +1 -1
data/resources/prefabs.yml
CHANGED
@@ -22,6 +22,28 @@
|
|
22
22
|
vagrant:
|
23
23
|
box: 'centos-58-x64'
|
24
24
|
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/centos-58-x64.box'
|
25
|
+
'centos-63-x64':
|
26
|
+
description: "Vagrant images obtained from http://puppet-vagrant-boxes.puppetlabs.com"
|
27
|
+
facts:
|
28
|
+
architecture: x86_64
|
29
|
+
facterversion: "1.6.17"
|
30
|
+
kernel: Linux
|
31
|
+
kernelversion: "2.6.32"
|
32
|
+
kernelrelease: "2.6.32-279.el6.x86_64"
|
33
|
+
lsbmajdistrelease: "6"
|
34
|
+
lsbdistcodename: Final
|
35
|
+
lsbdistdescription: "CentOS release 6.3 (Final)"
|
36
|
+
lsbdistid: CentOS
|
37
|
+
lsbdistrelease: "6.3"
|
38
|
+
operatingsystem: CentOS
|
39
|
+
operatingsystemrelease: "6.3"
|
40
|
+
osfamily: RedHat
|
41
|
+
kernelmajversion: "2.6"
|
42
|
+
rubyversion: "1.8.7"
|
43
|
+
provider_specifics:
|
44
|
+
vagrant:
|
45
|
+
box: 'centos-63-x64'
|
46
|
+
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/centos-63-x64.box'
|
25
47
|
'debian-606-x64':
|
26
48
|
description: "Vagrant images obtained from http://puppet-vagrant-boxes.puppetlabs.com"
|
27
49
|
facts:
|
@@ -41,3 +63,64 @@
|
|
41
63
|
vagrant:
|
42
64
|
box: 'debian-606-x64'
|
43
65
|
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/debian-606-x64.box'
|
66
|
+
'ubuntu-server-1004-x64':
|
67
|
+
description: ''
|
68
|
+
facts:
|
69
|
+
kernel: Linux
|
70
|
+
operatingsystemrelease: "10.04"
|
71
|
+
lsbmajdistrelease: "10"
|
72
|
+
kernelrelease: "2.6.32-38-server"
|
73
|
+
osfamily: Debian
|
74
|
+
lsbdistrelease: "10.04"
|
75
|
+
lsbdistdescription: "Ubuntu 10.04.4 LTS"
|
76
|
+
kernelversion: "2.6.32"
|
77
|
+
lsbdistcodename: lucid
|
78
|
+
operatingsystem: Ubuntu
|
79
|
+
facterversion: "1.6.17"
|
80
|
+
kernelmajversion: "2.6"
|
81
|
+
architecture: amd64
|
82
|
+
rubyversion: "1.8.7"
|
83
|
+
lsbdistid: Ubuntu
|
84
|
+
provider_specifics:
|
85
|
+
vagrant:
|
86
|
+
box: 'ubuntu-server-1004-x64'
|
87
|
+
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-1004-x64.box'
|
88
|
+
'ubuntu-server-1204-x64':
|
89
|
+
description: ''
|
90
|
+
facts:
|
91
|
+
kernel: Linux
|
92
|
+
architecture: amd64
|
93
|
+
operatingsystem: Ubuntu
|
94
|
+
lsbdistid: Ubuntu
|
95
|
+
facterversion: "1.6.17"
|
96
|
+
kernelmajversion: "3.2"
|
97
|
+
kernelrelease: "3.2.0-29-generic"
|
98
|
+
kernelversion: "3.2.0"
|
99
|
+
lsbdistcodename: precise
|
100
|
+
lsbdistdescription: "Ubuntu 12.04.1 LTS"
|
101
|
+
lsbdistrelease: "12.04"
|
102
|
+
lsbmajdistrelease: "12"
|
103
|
+
operatingsystemrelease: "12.04"
|
104
|
+
osfamily: Debian
|
105
|
+
rubyversion: "1.9.2"
|
106
|
+
provider_specifics:
|
107
|
+
vagrant:
|
108
|
+
box: 'ubuntu-server-1204-x64'
|
109
|
+
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-1204-x64.box'
|
110
|
+
'sles-11sp1-x64':
|
111
|
+
description: ''
|
112
|
+
facts:
|
113
|
+
kernel: Linux
|
114
|
+
operatingsystemrelease: "11.1"
|
115
|
+
kernelrelease: "2.6.32.12-0.7-default"
|
116
|
+
osfamily: Suse
|
117
|
+
kernelversion: "2.6.32.12"
|
118
|
+
operatingsystem: SLES
|
119
|
+
facterversion: "1.6.17"
|
120
|
+
kernelmajversion: "2.6"
|
121
|
+
rubyversion: "1.8.7"
|
122
|
+
architecture: x86_64
|
123
|
+
provider_specifics:
|
124
|
+
vagrant:
|
125
|
+
box: 'sles-11sp1-x64'
|
126
|
+
box_url: 'http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64.box'
|
data/rspec-system.gemspec
CHANGED