matthewtodd-captain 0.1.1 → 0.1.2
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/README.rdoc +1 -1
- data/Rakefile +1 -1
- data/captain.gemspec +3 -3
- data/resources/preseed.seed.erb +3 -2
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -56,7 +56,7 @@ See the examples[http://github.com/matthewtodd/captain/tree/master/examples] fol
|
|
56
56
|
|
57
57
|
== Preseeding
|
58
58
|
|
59
|
-
See resources/preseed.seed.erb[http://github.com/matthewtodd/captain/blob/master/resources/preseed.seed.erb]. There may be a
|
59
|
+
See resources/preseed.seed.erb[http://github.com/matthewtodd/captain/blob/master/resources/preseed.seed.erb]. There may be a couple of controversial decisions in there that could use some configuring: there's just one monolithic disk partition, and no http mirrors included in <tt>/etc/apt/sources.list</tt>.
|
60
60
|
|
61
61
|
Other than the disk partitioning, I suppose most of these things could be handled post-install, though I'm glad to accept patches / suggestions adding the configuration options you need.
|
62
62
|
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ else
|
|
14
14
|
require 'shoe'
|
15
15
|
end
|
16
16
|
|
17
|
-
Shoe.tie('captain', '0.1.
|
17
|
+
Shoe.tie('captain', '0.1.2', 'Builds an Ubuntu installation CD just as you like it.') do |spec|
|
18
18
|
spec.requirements = ['mkisofs']
|
19
19
|
spec.add_development_dependency 'cucumber'
|
20
20
|
end
|
data/captain.gemspec
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{captain}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Matthew Todd"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-08-24}
|
10
10
|
s.default_executable = %q{captain}
|
11
11
|
s.email = %q{matthew.todd@gmail.com}
|
12
12
|
s.executables = ["captain"]
|
13
13
|
s.extra_rdoc_files = ["README.rdoc"]
|
14
14
|
s.files = ["Rakefile", "captain.gemspec", "README.rdoc", "bin/captain", "examples/chef_client.rb", "features/installer_image.feature", "features/steps", "features/steps/captain_steps.rb", "features/support", "features/support/env.rb", "features/support/helpers.rb", "lib/captain", "lib/captain/application.rb", "lib/captain/image.rb", "lib/captain/package.rb", "lib/captain/package_list.rb", "lib/captain/release.rb", "lib/captain/remote.rb", "lib/captain/resource.rb", "lib/captain.rb", "resources/disk_base_components.erb", "resources/disk_base_installable.erb", "resources/disk_cd_type.erb", "resources/disk_info.erb", "resources/disk_udeb_include.erb", "resources/isolinux.bin", "resources/isolinux.cfg", "resources/preseed.seed.erb", "resources/release.erb", "resources/release_component.erb"]
|
15
|
-
s.rdoc_options = ["--main", "README.rdoc", "--title", "captain-0.1.
|
15
|
+
s.rdoc_options = ["--main", "README.rdoc", "--title", "captain-0.1.2", "--inline-source"]
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.requirements = ["mkisofs"]
|
18
18
|
s.rubygems_version = %q{1.3.5}
|
data/resources/preseed.seed.erb
CHANGED
@@ -27,8 +27,9 @@ d-i partman/confirm boolean true
|
|
27
27
|
### Base system installation
|
28
28
|
|
29
29
|
### Account setup
|
30
|
-
d-i passwd/root-login boolean
|
31
|
-
d-i passwd/make-user boolean
|
30
|
+
d-i passwd/root-login boolean false
|
31
|
+
d-i passwd/make-user boolean true
|
32
|
+
d-i user-setup/encrypt-home boolean false
|
32
33
|
|
33
34
|
### Apt setup
|
34
35
|
d-i apt-setup/use_mirror boolean false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: matthewtodd-captain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Todd
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-08-24 00:00:00 -07:00
|
13
13
|
default_executable: captain
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -79,7 +79,7 @@ rdoc_options:
|
|
79
79
|
- --main
|
80
80
|
- README.rdoc
|
81
81
|
- --title
|
82
|
-
- captain-0.1.
|
82
|
+
- captain-0.1.2
|
83
83
|
- --inline-source
|
84
84
|
require_paths:
|
85
85
|
- lib
|