kameleon-builder 2.0.0 → 2.1.0
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.
- data/.editorconfig +0 -0
- data/.env +63 -15
- data/.gitignore +1 -0
- data/README.rst +4 -2
- data/Vagrantfile +13 -52
- data/bin/kameleon +5 -0
- data/completion/_kameleon.zsh +18 -0
- data/completion/kameleon.bash +13 -0
- data/completion/kameleon.fish +10 -0
- data/contrib/polipo_env.sh +2 -0
- data/contrib/steps/export/save_as_g5k.yaml +63 -0
- data/contrib/steps/setup/add_to_sudoers.yaml +5 -0
- data/docs/Makefile +10 -6
- data/docs/README.md +17 -0
- data/docs/source/_static/kameleon-logo.png +0 -0
- data/docs/source/_static/kameleon-logo.xcf +0 -0
- data/docs/source/_static/kameleon-long.png +0 -0
- data/docs/source/aliases.rst +4 -2
- data/docs/source/checkpoint.rst +2 -0
- data/docs/source/commands.rst +4 -3
- data/docs/source/conf.py +15 -7
- data/docs/source/context.rst +7 -4
- data/docs/source/faq.rst +39 -1
- data/docs/source/getting_started.rst +227 -1
- data/docs/source/grid5000_tutorial.rst +110 -0
- data/docs/source/index.rst +7 -2
- data/docs/source/installation.rst +12 -4
- data/docs/source/persistent_cache.rst +34 -0
- data/docs/source/recipe.rst +23 -16
- data/docs/source/use_cases.rst +93 -0
- data/docs/source/workspace.rst +2 -0
- data/kameleon-builder.gemspec +7 -1
- data/lib/kameleon.rb +3 -6
- data/lib/kameleon/cli.rb +104 -50
- data/lib/kameleon/compat.rb +39 -0
- data/lib/kameleon/context.rb +43 -13
- data/lib/kameleon/engine.rb +118 -77
- data/lib/kameleon/environment.rb +3 -5
- data/lib/kameleon/error.rb +15 -9
- data/lib/kameleon/logger.rb +7 -4
- data/lib/kameleon/persistent_cache.rb +139 -0
- data/lib/kameleon/recipe.rb +200 -81
- data/lib/kameleon/shell.rb +51 -16
- data/omnibus/.gitignore +11 -0
- data/omnibus/.kitchen.yml +25 -0
- data/omnibus/Berksfile +9 -0
- data/omnibus/Berksfile.lock +25 -0
- data/omnibus/Gemfile +12 -0
- data/omnibus/README.md +94 -0
- data/omnibus/config/projects/kameleon.rb +23 -0
- data/omnibus/config/software/kameleon.rb +24 -0
- data/omnibus/config/software/polipo.rb +30 -0
- data/omnibus/config/software/ruby.rb +158 -0
- data/omnibus/files/mac_dmg/Resources/background.png +0 -0
- data/omnibus/files/mac_dmg/Resources/icon.png +0 -0
- data/omnibus/files/mac_pkg/Resources/background.png +0 -0
- data/omnibus/files/mac_pkg/Resources/license.html +1 -0
- data/omnibus/files/mac_pkg/Resources/welcome.html +9 -0
- data/omnibus/omnibus.rb +27 -0
- data/omnibus/package-scripts/kameleon/makeselfinst +27 -0
- data/omnibus/package-scripts/kameleon/postrm +9 -0
- data/templates/archlinux-desktop.yaml +25 -0
- data/templates/archlinux.yaml +106 -0
- data/templates/debian-testing.yaml +25 -0
- data/templates/debian7-desktop.yaml +25 -0
- data/templates/{debian-wheezy-docker.yaml → debian7-docker.yaml} +30 -16
- data/templates/debian7-g5k.yaml +97 -0
- data/templates/debian7-oar-dev.yaml +51 -0
- data/templates/debian7.yaml +128 -0
- data/templates/extend.erb +23 -0
- data/templates/fedora-rawhide.yaml +30 -0
- data/templates/fedora20-desktop.yaml +21 -0
- data/templates/fedora20.yaml +105 -0
- data/templates/{debian-wheezy-chroot.yaml → old-debian7.yaml} +51 -38
- data/templates/{aliases → steps/aliases}/defaults.yaml +37 -12
- data/templates/steps/bootstrap/archlinux/arch_bootstrap.yaml +219 -0
- data/templates/steps/bootstrap/archlinux/install_bootloader.yaml +46 -0
- data/templates/steps/bootstrap/archlinux/populate_disk.yaml +39 -0
- data/templates/steps/bootstrap/debian/debootstrap.yaml +18 -10
- data/templates/steps/bootstrap/debian/debootstrap_arm.yaml +31 -0
- data/templates/steps/bootstrap/fedora/liveos_bootstrap.yaml +123 -0
- data/templates/steps/bootstrap/g5k_reserv.yaml +70 -0
- data/templates/steps/bootstrap/initialize_disk_chroot.yaml +84 -0
- data/templates/steps/bootstrap/initialize_disk_qemu.yaml +72 -0
- data/templates/steps/bootstrap/install_bootloader.yaml +42 -0
- data/templates/steps/bootstrap/prepare_chroot.yaml +126 -0
- data/templates/steps/bootstrap/prepare_docker.yaml +19 -8
- data/templates/steps/bootstrap/prepare_qemu.yaml +47 -0
- data/templates/steps/bootstrap/start_chroot.yaml +11 -2
- data/templates/steps/bootstrap/start_docker.yaml +2 -2
- data/templates/steps/bootstrap/start_qemu.yaml +75 -0
- data/templates/steps/bootstrap/ubuntu/debootstrap.yaml +27 -0
- data/templates/steps/breakpoint.yaml +2 -0
- data/templates/{checkpoints → steps/checkpoints}/docker.yaml +0 -0
- data/templates/steps/checkpoints/qcow2.yaml +38 -0
- data/templates/steps/checkpoints/qemu.yaml +39 -0
- data/templates/steps/export/clean_appliance.yaml +7 -1
- data/templates/steps/export/compact_qcow_img.yaml +12 -0
- data/templates/steps/export/save_appliance.yaml +58 -0
- data/templates/steps/export/save_appliance_from_g5k.yaml +47 -0
- data/templates/steps/export/save_vagrant_box.yaml +29 -0
- data/templates/steps/setup/archlinux/configure_keyboard.yaml +9 -0
- data/templates/steps/setup/archlinux/configure_network.yaml +9 -0
- data/templates/steps/setup/archlinux/configure_ruby.yaml +7 -0
- data/templates/steps/setup/archlinux/configure_system.yaml +20 -0
- data/templates/steps/setup/archlinux/install_dev_tools.yaml +18 -0
- data/templates/steps/setup/archlinux/install_gnome.yaml +27 -0
- data/templates/steps/setup/archlinux/install_software.yaml +9 -0
- data/templates/steps/setup/archlinux/install_yaourt.yaml +29 -0
- data/templates/steps/setup/autologin.yaml +16 -0
- data/templates/steps/setup/create_group.yaml +12 -0
- data/templates/steps/setup/create_user.yaml +9 -10
- data/templates/steps/setup/debian/configure_apt.yaml +65 -0
- data/templates/steps/setup/debian/configure_kernel.yaml +18 -0
- data/templates/steps/setup/debian/{keyboard_config.yaml → configure_keyboard.yaml} +1 -1
- data/templates/steps/setup/debian/{network_config.yaml → configure_network.yaml} +0 -0
- data/templates/steps/setup/debian/{system_config.yaml → configure_system.yaml} +0 -0
- data/templates/steps/setup/debian/install_gnome.yaml +13 -0
- data/templates/steps/setup/debian/install_kde.yaml +13 -0
- data/templates/steps/setup/debian/install_software.yaml +2 -0
- data/templates/steps/setup/debian/oar/oar_debian_config_frontend.yaml +8 -0
- data/templates/steps/setup/debian/oar/oar_debian_config_node.yaml +5 -0
- data/templates/steps/setup/debian/oar/oar_debian_config_server.yaml +5 -0
- data/templates/steps/setup/debian/oar/oar_prereq_install.yaml +16 -0
- data/templates/steps/setup/debian/setup_vagrant_box.yaml +52 -0
- data/templates/steps/setup/debian/upgrade_system.yaml +15 -0
- data/templates/steps/setup/fedora/configure_network.yaml +30 -0
- data/templates/steps/setup/fedora/configure_system.yaml +59 -0
- data/templates/steps/setup/fedora/install_software.yaml +3 -0
- data/templates/steps/setup/fedora/update_system.yaml +10 -0
- data/templates/steps/setup/oar/oar_config_devel.yaml +21 -0
- data/templates/steps/setup/oar/oar_config_frontend.yaml +38 -0
- data/templates/steps/setup/oar/oar_config_node.yaml +4 -0
- data/templates/steps/setup/oar/oar_config_server.yaml +25 -0
- data/templates/steps/setup/oar/oar_config_system.yaml +34 -0
- data/templates/steps/setup/oar/oar_devel_prereq_install.yaml +5 -0
- data/templates/steps/setup/oar/oar_git_install.yaml +21 -0
- data/templates/steps/setup/ubuntu/configure_apt.yaml +67 -0
- data/templates/ubuntu-12.04-desktop.yaml +25 -0
- data/templates/ubuntu-12.04.yaml +128 -0
- data/templates/ubuntu-14.04-desktop.yaml +27 -0
- data/templates/ubuntu-14.04.yaml +25 -0
- data/templates/vagrant-debian7.yaml +31 -0
- data/version.txt +1 -1
- metadata +155 -28
- checksums.yaml +0 -7
- data/templates/checkpoints/qcow2.yaml +0 -44
- data/templates/fedora-docker.yaml +0 -96
- data/templates/steps/bootstrap/fedora/docker_bootstrap.yaml +0 -25
- data/templates/steps/bootstrap/fedora/yum_bootstrap.yaml +0 -22
- data/templates/steps/bootstrap/prepare_appliance_with_nbd.yaml +0 -93
- data/templates/steps/export/build_appliance_from_docker.yaml +0 -105
- data/templates/steps/export/save_appliance_from_nbd.yaml +0 -54
- data/templates/steps/setup/debian/kernel_install.yaml +0 -20
- data/templates/steps/setup/debian/software_install.yaml +0 -15
- data/templates/steps/setup/fedora/kernel_install.yaml +0 -27
- data/templates/steps/setup/fedora/software_install.yaml +0 -10
@@ -0,0 +1,27 @@
|
|
1
|
+
#==============================================================================
|
2
|
+
# vim: softtabstop=2 shiftwidth=2 expandtab fenc=utf-8 cc=81 tw=80
|
3
|
+
#==============================================================================
|
4
|
+
#
|
5
|
+
# DESCRIPTION: Ubuntu 14.04 LTS (Trusty Tahr) Desktop edition.
|
6
|
+
#
|
7
|
+
#==============================================================================
|
8
|
+
|
9
|
+
---
|
10
|
+
extend: ubuntu-14.04
|
11
|
+
|
12
|
+
global:
|
13
|
+
# Distribution
|
14
|
+
distrib: ubuntu
|
15
|
+
release: trusty
|
16
|
+
arch: amd64
|
17
|
+
|
18
|
+
bootstrap:
|
19
|
+
- @base
|
20
|
+
|
21
|
+
setup:
|
22
|
+
- @base
|
23
|
+
- install_software:
|
24
|
+
- packages: ubuntu-desktop
|
25
|
+
|
26
|
+
export:
|
27
|
+
- @base
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#==============================================================================
|
2
|
+
# vim: softtabstop=2 shiftwidth=2 expandtab fenc=utf-8 cc=81 tw=80
|
3
|
+
#==============================================================================
|
4
|
+
#
|
5
|
+
# DESCRIPTION: Ubuntu 14.04 LTS (Trusty Tahr) base system.
|
6
|
+
#
|
7
|
+
#==============================================================================
|
8
|
+
|
9
|
+
---
|
10
|
+
extend: ubuntu-12.04
|
11
|
+
|
12
|
+
global:
|
13
|
+
# Distribution
|
14
|
+
distrib: ubuntu
|
15
|
+
release: trusty
|
16
|
+
arch: amd64
|
17
|
+
|
18
|
+
bootstrap:
|
19
|
+
- @base
|
20
|
+
|
21
|
+
setup:
|
22
|
+
- @base
|
23
|
+
|
24
|
+
export:
|
25
|
+
- @base
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#==============================================================================
|
2
|
+
# vim: softtabstop=2 shiftwidth=2 expandtab fenc=utf-8 cc=81 tw=80
|
3
|
+
#==============================================================================
|
4
|
+
#
|
5
|
+
# DESCRIPTION: A standard Debian 7 vagrant base box
|
6
|
+
#
|
7
|
+
#==============================================================================
|
8
|
+
|
9
|
+
---
|
10
|
+
extend: debian7
|
11
|
+
|
12
|
+
global:
|
13
|
+
## User varibales : used by the recipe
|
14
|
+
user_name: vagrant
|
15
|
+
user_password: $$user_name
|
16
|
+
|
17
|
+
bootstrap:
|
18
|
+
- @base
|
19
|
+
|
20
|
+
setup:
|
21
|
+
- @base
|
22
|
+
- install_software:
|
23
|
+
- packages: curl linux-headers-$(uname -r) build-essential dkms ca-certificates
|
24
|
+
- setup_vagrant_box
|
25
|
+
|
26
|
+
export:
|
27
|
+
- save_vagrant_box:
|
28
|
+
- os_type: Debian_64
|
29
|
+
- memory: "512"
|
30
|
+
- input: $$image_disk
|
31
|
+
- output: $$kameleon_cwd/$$kameleon_recipe_name
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.1.0
|
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kameleon-builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Salem Harrache
|
@@ -11,25 +12,28 @@ authors:
|
|
11
12
|
autorequire:
|
12
13
|
bindir: bin
|
13
14
|
cert_chain: []
|
14
|
-
date: 2014-
|
15
|
+
date: 2014-06-12 00:00:00.000000000 Z
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
17
18
|
name: childprocess
|
18
19
|
requirement: !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
19
21
|
requirements:
|
20
22
|
- - ~>
|
21
23
|
- !ruby/object:Gem::Version
|
22
|
-
version: '0.
|
24
|
+
version: '0.5'
|
23
25
|
type: :runtime
|
24
26
|
prerelease: false
|
25
27
|
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
26
29
|
requirements:
|
27
30
|
- - ~>
|
28
31
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
32
|
+
version: '0.5'
|
30
33
|
- !ruby/object:Gem::Dependency
|
31
34
|
name: thor
|
32
35
|
requirement: !ruby/object:Gem::Requirement
|
36
|
+
none: false
|
33
37
|
requirements:
|
34
38
|
- - ~>
|
35
39
|
- !ruby/object:Gem::Version
|
@@ -37,6 +41,7 @@ dependencies:
|
|
37
41
|
type: :runtime
|
38
42
|
prerelease: false
|
39
43
|
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
40
45
|
requirements:
|
41
46
|
- - ~>
|
42
47
|
- !ruby/object:Gem::Version
|
@@ -44,6 +49,7 @@ dependencies:
|
|
44
49
|
- !ruby/object:Gem::Dependency
|
45
50
|
name: table_print
|
46
51
|
requirement: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
47
53
|
requirements:
|
48
54
|
- - ~>
|
49
55
|
- !ruby/object:Gem::Version
|
@@ -51,6 +57,7 @@ dependencies:
|
|
51
57
|
type: :runtime
|
52
58
|
prerelease: false
|
53
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
54
61
|
requirements:
|
55
62
|
- - ~>
|
56
63
|
- !ruby/object:Gem::Version
|
@@ -58,6 +65,7 @@ dependencies:
|
|
58
65
|
- !ruby/object:Gem::Dependency
|
59
66
|
name: log4r-color
|
60
67
|
requirement: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
61
69
|
requirements:
|
62
70
|
- - ~>
|
63
71
|
- !ruby/object:Gem::Version
|
@@ -65,13 +73,31 @@ dependencies:
|
|
65
73
|
type: :runtime
|
66
74
|
prerelease: false
|
67
75
|
version_requirements: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
68
77
|
requirements:
|
69
78
|
- - ~>
|
70
79
|
- !ruby/object:Gem::Version
|
71
80
|
version: '1.2'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: diffy
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 3.0.4
|
89
|
+
type: :runtime
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ~>
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 3.0.4
|
72
97
|
- !ruby/object:Gem::Dependency
|
73
98
|
name: pry
|
74
99
|
requirement: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
75
101
|
requirements:
|
76
102
|
- - ~>
|
77
103
|
- !ruby/object:Gem::Version
|
@@ -79,6 +105,7 @@ dependencies:
|
|
79
105
|
type: :development
|
80
106
|
prerelease: false
|
81
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
none: false
|
82
109
|
requirements:
|
83
110
|
- - ~>
|
84
111
|
- !ruby/object:Gem::Version
|
@@ -86,6 +113,7 @@ dependencies:
|
|
86
113
|
- !ruby/object:Gem::Dependency
|
87
114
|
name: pry-debugger
|
88
115
|
requirement: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
89
117
|
requirements:
|
90
118
|
- - ~>
|
91
119
|
- !ruby/object:Gem::Version
|
@@ -93,6 +121,7 @@ dependencies:
|
|
93
121
|
type: :development
|
94
122
|
prerelease: false
|
95
123
|
version_requirements: !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
96
125
|
requirements:
|
97
126
|
- - ~>
|
98
127
|
- !ruby/object:Gem::Version
|
@@ -100,6 +129,7 @@ dependencies:
|
|
100
129
|
- !ruby/object:Gem::Dependency
|
101
130
|
name: rake
|
102
131
|
requirement: !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
103
133
|
requirements:
|
104
134
|
- - ~>
|
105
135
|
- !ruby/object:Gem::Version
|
@@ -107,6 +137,7 @@ dependencies:
|
|
107
137
|
type: :development
|
108
138
|
prerelease: false
|
109
139
|
version_requirements: !ruby/object:Gem::Requirement
|
140
|
+
none: false
|
110
141
|
requirements:
|
111
142
|
- - ~>
|
112
143
|
- !ruby/object:Gem::Version
|
@@ -114,6 +145,7 @@ dependencies:
|
|
114
145
|
- !ruby/object:Gem::Dependency
|
115
146
|
name: minitest
|
116
147
|
requirement: !ruby/object:Gem::Requirement
|
148
|
+
none: false
|
117
149
|
requirements:
|
118
150
|
- - ~>
|
119
151
|
- !ruby/object:Gem::Version
|
@@ -121,6 +153,7 @@ dependencies:
|
|
121
153
|
type: :development
|
122
154
|
prerelease: false
|
123
155
|
version_requirements: !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
124
157
|
requirements:
|
125
158
|
- - ~>
|
126
159
|
- !ruby/object:Gem::Version
|
@@ -128,6 +161,7 @@ dependencies:
|
|
128
161
|
- !ruby/object:Gem::Dependency
|
129
162
|
name: coveralls
|
130
163
|
requirement: !ruby/object:Gem::Requirement
|
164
|
+
none: false
|
131
165
|
requirements:
|
132
166
|
- - ~>
|
133
167
|
- !ruby/object:Gem::Version
|
@@ -135,6 +169,7 @@ dependencies:
|
|
135
169
|
type: :development
|
136
170
|
prerelease: false
|
137
171
|
version_requirements: !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
138
173
|
requirements:
|
139
174
|
- - ~>
|
140
175
|
- !ruby/object:Gem::Version
|
@@ -160,14 +195,20 @@ files:
|
|
160
195
|
- Rakefile
|
161
196
|
- Vagrantfile
|
162
197
|
- bin/kameleon
|
198
|
+
- completion/_kameleon.zsh
|
199
|
+
- completion/kameleon.bash
|
200
|
+
- completion/kameleon.fish
|
163
201
|
- contrib/kameleon_bashrc.sh
|
202
|
+
- contrib/polipo_env.sh
|
164
203
|
- contrib/scripts/VirtualBox_deploy.sh
|
165
204
|
- contrib/scripts/chroot_env
|
166
205
|
- contrib/scripts/create_passwd.py
|
167
206
|
- contrib/scripts/umount-chroot.sh
|
168
207
|
- contrib/steps/bootstrap/debian/bootstrap_if_needed.yaml
|
169
208
|
- contrib/steps/bootstrap/debian/bootstrap_static.yaml
|
209
|
+
- contrib/steps/export/save_as_g5k.yaml
|
170
210
|
- contrib/steps/setup/add_timestamp.yaml
|
211
|
+
- contrib/steps/setup/add_to_sudoers.yaml
|
171
212
|
- contrib/steps/setup/autologin.yaml
|
172
213
|
- contrib/steps/setup/copy_ssh_auth_file.yaml
|
173
214
|
- contrib/steps/setup/debian/add_network_interface.yaml
|
@@ -181,8 +222,12 @@ files:
|
|
181
222
|
- contrib/steps/setup/system_optimization.yaml
|
182
223
|
- docs/.gitignore
|
183
224
|
- docs/Makefile
|
225
|
+
- docs/README.md
|
184
226
|
- docs/make.bat
|
185
227
|
- docs/source/_static/.gitignore
|
228
|
+
- docs/source/_static/kameleon-logo.png
|
229
|
+
- docs/source/_static/kameleon-logo.xcf
|
230
|
+
- docs/source/_static/kameleon-long.png
|
186
231
|
- docs/source/aliases.rst
|
187
232
|
- docs/source/checkpoint.rst
|
188
233
|
- docs/source/commands.rst
|
@@ -190,48 +235,129 @@ files:
|
|
190
235
|
- docs/source/context.rst
|
191
236
|
- docs/source/faq.rst
|
192
237
|
- docs/source/getting_started.rst
|
238
|
+
- docs/source/grid5000_tutorial.rst
|
193
239
|
- docs/source/index.rst
|
194
240
|
- docs/source/installation.rst
|
241
|
+
- docs/source/persistent_cache.rst
|
195
242
|
- docs/source/recipe.rst
|
243
|
+
- docs/source/use_cases.rst
|
196
244
|
- docs/source/workspace.rst
|
197
245
|
- kameleon-builder.gemspec
|
198
246
|
- lib/kameleon.rb
|
199
247
|
- lib/kameleon/cli.rb
|
248
|
+
- lib/kameleon/compat.rb
|
200
249
|
- lib/kameleon/context.rb
|
201
250
|
- lib/kameleon/engine.rb
|
202
251
|
- lib/kameleon/environment.rb
|
203
252
|
- lib/kameleon/error.rb
|
204
253
|
- lib/kameleon/logger.rb
|
254
|
+
- lib/kameleon/persistent_cache.rb
|
205
255
|
- lib/kameleon/recipe.rb
|
206
256
|
- lib/kameleon/shell.rb
|
207
257
|
- lib/kameleon/step.rb
|
208
258
|
- lib/kameleon/utils.rb
|
209
259
|
- lib/kameleon/version.rb
|
260
|
+
- omnibus/.gitignore
|
261
|
+
- omnibus/.kitchen.yml
|
262
|
+
- omnibus/Berksfile
|
263
|
+
- omnibus/Berksfile.lock
|
264
|
+
- omnibus/Gemfile
|
265
|
+
- omnibus/README.md
|
266
|
+
- omnibus/config/projects/kameleon.rb
|
267
|
+
- omnibus/config/software/kameleon.rb
|
268
|
+
- omnibus/config/software/polipo.rb
|
269
|
+
- omnibus/config/software/ruby.rb
|
270
|
+
- omnibus/files/mac_dmg/Resources/background.png
|
271
|
+
- omnibus/files/mac_dmg/Resources/icon.png
|
272
|
+
- omnibus/files/mac_pkg/Resources/background.png
|
273
|
+
- omnibus/files/mac_pkg/Resources/license.html
|
274
|
+
- omnibus/files/mac_pkg/Resources/welcome.html
|
275
|
+
- omnibus/omnibus.rb
|
276
|
+
- omnibus/package-scripts/kameleon/makeselfinst
|
277
|
+
- omnibus/package-scripts/kameleon/postrm
|
210
278
|
- templates/COPYRIGHT
|
211
|
-
- templates/
|
212
|
-
- templates/
|
213
|
-
- templates/
|
214
|
-
- templates/
|
215
|
-
- templates/
|
216
|
-
- templates/
|
279
|
+
- templates/archlinux-desktop.yaml
|
280
|
+
- templates/archlinux.yaml
|
281
|
+
- templates/debian-testing.yaml
|
282
|
+
- templates/debian7-desktop.yaml
|
283
|
+
- templates/debian7-docker.yaml
|
284
|
+
- templates/debian7-g5k.yaml
|
285
|
+
- templates/debian7-oar-dev.yaml
|
286
|
+
- templates/debian7.yaml
|
287
|
+
- templates/extend.erb
|
288
|
+
- templates/fedora-rawhide.yaml
|
289
|
+
- templates/fedora20-desktop.yaml
|
290
|
+
- templates/fedora20.yaml
|
291
|
+
- templates/old-debian7.yaml
|
292
|
+
- templates/steps/aliases/defaults.yaml
|
293
|
+
- templates/steps/bootstrap/archlinux/arch_bootstrap.yaml
|
294
|
+
- templates/steps/bootstrap/archlinux/install_bootloader.yaml
|
295
|
+
- templates/steps/bootstrap/archlinux/populate_disk.yaml
|
217
296
|
- templates/steps/bootstrap/debian/debootstrap.yaml
|
218
|
-
- templates/steps/bootstrap/
|
219
|
-
- templates/steps/bootstrap/fedora/
|
220
|
-
- templates/steps/bootstrap/
|
297
|
+
- templates/steps/bootstrap/debian/debootstrap_arm.yaml
|
298
|
+
- templates/steps/bootstrap/fedora/liveos_bootstrap.yaml
|
299
|
+
- templates/steps/bootstrap/g5k_reserv.yaml
|
300
|
+
- templates/steps/bootstrap/initialize_disk_chroot.yaml
|
301
|
+
- templates/steps/bootstrap/initialize_disk_qemu.yaml
|
302
|
+
- templates/steps/bootstrap/install_bootloader.yaml
|
303
|
+
- templates/steps/bootstrap/prepare_chroot.yaml
|
221
304
|
- templates/steps/bootstrap/prepare_docker.yaml
|
305
|
+
- templates/steps/bootstrap/prepare_qemu.yaml
|
222
306
|
- templates/steps/bootstrap/start_chroot.yaml
|
223
307
|
- templates/steps/bootstrap/start_docker.yaml
|
224
|
-
- templates/steps/
|
308
|
+
- templates/steps/bootstrap/start_qemu.yaml
|
309
|
+
- templates/steps/bootstrap/ubuntu/debootstrap.yaml
|
310
|
+
- templates/steps/breakpoint.yaml
|
311
|
+
- templates/steps/checkpoints/docker.yaml
|
312
|
+
- templates/steps/checkpoints/qcow2.yaml
|
313
|
+
- templates/steps/checkpoints/qemu.yaml
|
225
314
|
- templates/steps/export/clean_appliance.yaml
|
226
|
-
- templates/steps/export/
|
315
|
+
- templates/steps/export/compact_qcow_img.yaml
|
316
|
+
- templates/steps/export/save_appliance.yaml
|
317
|
+
- templates/steps/export/save_appliance_from_g5k.yaml
|
318
|
+
- templates/steps/export/save_vagrant_box.yaml
|
319
|
+
- templates/steps/setup/archlinux/configure_keyboard.yaml
|
320
|
+
- templates/steps/setup/archlinux/configure_network.yaml
|
321
|
+
- templates/steps/setup/archlinux/configure_ruby.yaml
|
322
|
+
- templates/steps/setup/archlinux/configure_system.yaml
|
323
|
+
- templates/steps/setup/archlinux/install_dev_tools.yaml
|
324
|
+
- templates/steps/setup/archlinux/install_gnome.yaml
|
325
|
+
- templates/steps/setup/archlinux/install_software.yaml
|
326
|
+
- templates/steps/setup/archlinux/install_yaourt.yaml
|
327
|
+
- templates/steps/setup/autologin.yaml
|
328
|
+
- templates/steps/setup/create_group.yaml
|
227
329
|
- templates/steps/setup/create_user.yaml
|
228
|
-
- templates/steps/setup/debian/
|
229
|
-
- templates/steps/setup/debian/
|
230
|
-
- templates/steps/setup/debian/
|
231
|
-
- templates/steps/setup/debian/
|
232
|
-
- templates/steps/setup/debian/
|
233
|
-
- templates/steps/setup/
|
234
|
-
- templates/steps/setup/
|
330
|
+
- templates/steps/setup/debian/configure_apt.yaml
|
331
|
+
- templates/steps/setup/debian/configure_kernel.yaml
|
332
|
+
- templates/steps/setup/debian/configure_keyboard.yaml
|
333
|
+
- templates/steps/setup/debian/configure_network.yaml
|
334
|
+
- templates/steps/setup/debian/configure_system.yaml
|
335
|
+
- templates/steps/setup/debian/install_gnome.yaml
|
336
|
+
- templates/steps/setup/debian/install_kde.yaml
|
337
|
+
- templates/steps/setup/debian/install_software.yaml
|
338
|
+
- templates/steps/setup/debian/oar/oar_debian_config_frontend.yaml
|
339
|
+
- templates/steps/setup/debian/oar/oar_debian_config_node.yaml
|
340
|
+
- templates/steps/setup/debian/oar/oar_debian_config_server.yaml
|
341
|
+
- templates/steps/setup/debian/oar/oar_prereq_install.yaml
|
342
|
+
- templates/steps/setup/debian/setup_vagrant_box.yaml
|
343
|
+
- templates/steps/setup/debian/upgrade_system.yaml
|
344
|
+
- templates/steps/setup/fedora/configure_network.yaml
|
345
|
+
- templates/steps/setup/fedora/configure_system.yaml
|
346
|
+
- templates/steps/setup/fedora/install_software.yaml
|
347
|
+
- templates/steps/setup/fedora/update_system.yaml
|
348
|
+
- templates/steps/setup/oar/oar_config_devel.yaml
|
349
|
+
- templates/steps/setup/oar/oar_config_frontend.yaml
|
350
|
+
- templates/steps/setup/oar/oar_config_node.yaml
|
351
|
+
- templates/steps/setup/oar/oar_config_server.yaml
|
352
|
+
- templates/steps/setup/oar/oar_config_system.yaml
|
353
|
+
- templates/steps/setup/oar/oar_devel_prereq_install.yaml
|
354
|
+
- templates/steps/setup/oar/oar_git_install.yaml
|
355
|
+
- templates/steps/setup/ubuntu/configure_apt.yaml
|
356
|
+
- templates/ubuntu-12.04-desktop.yaml
|
357
|
+
- templates/ubuntu-12.04.yaml
|
358
|
+
- templates/ubuntu-14.04-desktop.yaml
|
359
|
+
- templates/ubuntu-14.04.yaml
|
360
|
+
- templates/vagrant-debian7.yaml
|
235
361
|
- tests/helper.rb
|
236
362
|
- tests/recipes/dummy_recipe.yaml
|
237
363
|
- tests/recipes/steps/bootstrap/dummy_distro/dummy_bootstrap_static.yaml
|
@@ -245,26 +371,27 @@ files:
|
|
245
371
|
homepage: http://kameleon.readthedocs.org/
|
246
372
|
licenses:
|
247
373
|
- GPL-2
|
248
|
-
metadata: {}
|
249
374
|
post_install_message:
|
250
375
|
rdoc_options: []
|
251
376
|
require_paths:
|
252
377
|
- lib
|
253
378
|
required_ruby_version: !ruby/object:Gem::Requirement
|
379
|
+
none: false
|
254
380
|
requirements:
|
255
|
-
- - '>='
|
381
|
+
- - ! '>='
|
256
382
|
- !ruby/object:Gem::Version
|
257
|
-
version:
|
383
|
+
version: 1.9.3
|
258
384
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
385
|
+
none: false
|
259
386
|
requirements:
|
260
|
-
- - '>='
|
387
|
+
- - ! '>='
|
261
388
|
- !ruby/object:Gem::Version
|
262
389
|
version: '0'
|
263
390
|
requirements: []
|
264
391
|
rubyforge_project:
|
265
|
-
rubygems_version:
|
392
|
+
rubygems_version: 1.8.23
|
266
393
|
signing_key:
|
267
|
-
specification_version:
|
394
|
+
specification_version: 3
|
268
395
|
summary: Kameleon is a tool to build virtual machines from scratch
|
269
396
|
test_files:
|
270
397
|
- tests/helper.rb
|