bebox 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +78 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +163 -0
- data/LICENSE +21 -0
- data/README.md +372 -0
- data/Rakefile +8 -0
- data/bebox.gemspec +40 -0
- data/bin/bebox +5 -0
- data/lib/bebox/cli.rb +42 -0
- data/lib/bebox/commands/commands_helper.rb +33 -0
- data/lib/bebox/commands/environment_commands.rb +46 -0
- data/lib/bebox/commands/general_commands.rb +24 -0
- data/lib/bebox/commands/node_commands.rb +68 -0
- data/lib/bebox/commands/prepare_commands.rb +59 -0
- data/lib/bebox/commands/project_commands.rb +44 -0
- data/lib/bebox/commands/provision_commands.rb +145 -0
- data/lib/bebox/environment.rb +114 -0
- data/lib/bebox/logger.rb +51 -0
- data/lib/bebox/node.rb +308 -0
- data/lib/bebox/profile.rb +102 -0
- data/lib/bebox/project.rb +259 -0
- data/lib/bebox/provision.rb +257 -0
- data/lib/bebox/role.rb +103 -0
- data/lib/bebox/version.rb +3 -0
- data/lib/bebox/wizards/environment_wizard.rb +45 -0
- data/lib/bebox/wizards/node_wizard.rb +163 -0
- data/lib/bebox/wizards/profile_wizard.rb +91 -0
- data/lib/bebox/wizards/project_wizard.rb +175 -0
- data/lib/bebox/wizards/provision_wizard.rb +80 -0
- data/lib/bebox/wizards/role_wizard.rb +97 -0
- data/lib/bebox.rb +2 -0
- data/lib/deb/puppet_3.6.0/augeas-lenses_0.10.0-0ubuntu4_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/debconf-utils_1.5.42ubuntu1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/facter_2.0.1-1puppetlabs1_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/hiera_1.3.2-1puppetlabs1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/libaugeas-ruby1.8_0.3.0-1.1ubuntu4_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/libaugeas-ruby_0.3.0-1.1ubuntu4_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/libaugeas0_0.10.0-0ubuntu4_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/libjson-ruby_1.6.3-1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/libruby1.8_1.8.7.352-2ubuntu1.4_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/libruby_4.8_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/libshadow-ruby1.8_1.4.1-8build1_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/puppet-common_3.6.0-1puppetlabs1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/puppet_3.6.0-1puppetlabs1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/ruby-json_1.6.3-1_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/ruby-rgen_0.6.5-1puppetlabs1_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/ruby1.8_1.8.7.352-2ubuntu1.4_amd64.deb +0 -0
- data/lib/deb/puppet_3.6.0/ruby_4.8_all.deb +0 -0
- data/lib/deb/puppet_3.6.0/virt-what_1.11-1_amd64.deb +0 -0
- data/lib/templates/node/Vagrantfile.erb +18 -0
- data/lib/templates/node/deploy_vagrant_node.erb +3 -0
- data/lib/templates/node/node.yml.erb +3 -0
- data/lib/templates/node/prepared_node.yml.erb +4 -0
- data/lib/templates/node/provisioned_node.yml.erb +4 -0
- data/lib/templates/project/Capfile.erb +2 -0
- data/lib/templates/project/Gemfile.erb +5 -0
- data/lib/templates/project/config/deploy/environment.erb +40 -0
- data/lib/templates/project/config/deploy/vagrant.erb +42 -0
- data/lib/templates/project/config/deploy.erb +120 -0
- data/lib/templates/project/dot_bebox.erb +4 -0
- data/lib/templates/project/gitignore.erb +7 -0
- data/lib/templates/project/ubuntu_dependencies +10 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/ruby/Puppetfile +0 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/ruby/manifests/init.pp +24 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/sudo/Puppetfile +0 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/sudo/manifests/init.pp +22 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/users/Puppetfile +0 -0
- data/lib/templates/puppet/default_profiles/base/fundamental/users/manifests/init.pp +18 -0
- data/lib/templates/puppet/default_profiles/base/security/fail2ban/Puppetfile +2 -0
- data/lib/templates/puppet/default_profiles/base/security/fail2ban/manifests/init.pp +28 -0
- data/lib/templates/puppet/default_profiles/base/security/iptables/Puppetfile +2 -0
- data/lib/templates/puppet/default_profiles/base/security/iptables/manifests/init.pp +27 -0
- data/lib/templates/puppet/default_profiles/base/security/ssh/Puppetfile +2 -0
- data/lib/templates/puppet/default_profiles/base/security/ssh/manifests/init.pp +30 -0
- data/lib/templates/puppet/default_profiles/base/security/sysctl/Puppetfile +2 -0
- data/lib/templates/puppet/default_profiles/base/security/sysctl/manifests/init.pp +20 -0
- data/lib/templates/puppet/default_profiles/base/users/ssh/Puppetfile +2 -0
- data/lib/templates/puppet/default_profiles/base/users/ssh/manifests/init.pp +47 -0
- data/lib/templates/puppet/default_profiles/base/users/users/Puppetfile +0 -0
- data/lib/templates/puppet/default_profiles/base/users/users/manifests/init.pp +18 -0
- data/lib/templates/puppet/default_roles/fundamental/manifests/init.pp +16 -0
- data/lib/templates/puppet/default_roles/security/manifests/init.pp +17 -0
- data/lib/templates/puppet/default_roles/users/manifests/init.pp +15 -0
- data/lib/templates/puppet/profiles/Puppetfile.erb +24 -0
- data/lib/templates/puppet/profiles/manifests/init.pp.erb +17 -0
- data/lib/templates/puppet/roles/manifests/init.pp.erb +14 -0
- data/lib/templates/puppet/step-0/Puppetfile.erb +5 -0
- data/lib/templates/puppet/step-0/hiera/data/common.yaml.erb +26 -0
- data/lib/templates/puppet/step-0/hiera/data/environment.yaml.erb +26 -0
- data/lib/templates/puppet/step-0/hiera/data/node.yaml.erb +26 -0
- data/lib/templates/puppet/step-0/hiera/hiera.yaml.erb +11 -0
- data/lib/templates/puppet/step-0/manifests/node.erb +5 -0
- data/lib/templates/puppet/step-0/manifests/site.pp.erb +15 -0
- data/lib/templates/puppet/step-0/modules/rbenv/AUTHORS +11 -0
- data/lib/templates/puppet/step-0/modules/rbenv/CHANGELOG.md +70 -0
- data/lib/templates/puppet/step-0/modules/rbenv/Gemfile +8 -0
- data/lib/templates/puppet/step-0/modules/rbenv/Gemfile.lock +28 -0
- data/lib/templates/puppet/step-0/modules/rbenv/Modulefile +7 -0
- data/lib/templates/puppet/step-0/modules/rbenv/README.md +173 -0
- data/lib/templates/puppet/step-0/modules/rbenv/Rakefile +22 -0
- data/lib/templates/puppet/step-0/modules/rbenv/TODO +10 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/autospec +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/facter +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/filebucket +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/hiera +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/htmldiff +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/ldiff +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/pi +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppet +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppet-lint +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppet-module +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetca +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetd +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetdoc +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetmasterd +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetqd +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/puppetrun +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/rake +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/ralsh +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/rspec +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/bin/rspec-puppet-init +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/lib/puppet/provider/rbenvgem/default.rb +50 -0
- data/lib/templates/puppet/step-0/modules/rbenv/lib/puppet/type/rbenvgem.rb +62 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/bundle.pp +36 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/client.pp +48 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/compile.pp +102 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/definition.pp +31 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/centos.pp +25 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/suse.pp +28 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/ubuntu.pp +17 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies.pp +8 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/gem.pp +29 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/install.pp +55 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/plugin/rbenvvars.pp +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/plugin/rubybuild.pp +16 -0
- data/lib/templates/puppet/step-0/modules/rbenv/manifests/plugin.pp +40 -0
- data/lib/templates/puppet/step-0/modules/rbenv/metadata.json +109 -0
- data/lib/templates/puppet/step-0/modules/rbenv/templates/Gemfile.erb +5 -0
- data/lib/templates/puppet/step-0/modules/rbenv/templates/dot.rbenvrc.erb +8 -0
- data/lib/templates/puppet/step-0/modules/stdlib/CHANGELOG.md +418 -0
- data/lib/templates/puppet/step-0/modules/stdlib/CONTRIBUTING.md +65 -0
- data/lib/templates/puppet/step-0/modules/stdlib/Gemfile +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/Gemfile.lock +166 -0
- data/lib/templates/puppet/step-0/modules/stdlib/LICENSE +19 -0
- data/lib/templates/puppet/step-0/modules/stdlib/Modulefile +11 -0
- data/lib/templates/puppet/step-0/modules/stdlib/README.markdown +1304 -0
- data/lib/templates/puppet/step-0/modules/stdlib/README_DEVELOPER.markdown +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/README_SPECS.markdown +7 -0
- data/lib/templates/puppet/step-0/modules/stdlib/RELEASE_PROCESS.markdown +24 -0
- data/lib/templates/puppet/step-0/modules/stdlib/Rakefile +18 -0
- data/lib/templates/puppet/step-0/modules/stdlib/checksums.json +349 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/facter/facter_dot_d.rb +202 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/facter/pe_version.rb +53 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/facter/puppet_vardir.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/facter/root_home.rb +32 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/facter/util/puppet_settings.rb +21 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/abs.rb +36 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/any2array.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/base64.rb +37 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/bool2num.rb +49 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/capitalize.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/chomp.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/chop.rb +37 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/concat.rb +41 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/count.rb +22 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb +44 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete.rb +46 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_at.rb +49 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_values.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/difference.rb +36 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/dirname.rb +15 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/downcase.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/empty.rb +28 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb +45 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/flatten.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/floor.rb +25 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb +46 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb +17 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/getparam.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/getvar.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/grep.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb +52 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb +25 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb +25 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_key.rb +28 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/hash.rb +41 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/intersection.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_array.rb +22 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_bool.rb +22 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb +50 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_float.rb +30 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_hash.rb +22 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_integer.rb +45 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb +32 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb +27 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb +75 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_string.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/join.rb +41 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb +47 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/keys.rb +26 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb +20 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/lstrip.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/max.rb +21 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/member.rb +44 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/merge.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/min.rb +21 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/num2bool.rb +43 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/parsejson.rb +24 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb +24 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/pick.rb +29 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/pick_default.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/prefix.rb +45 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/range.rb +88 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/reject.rb +31 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/reverse.rb +28 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/rstrip.rb +32 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/shuffle.rb +46 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/size.rb +48 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/sort.rb +27 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/squeeze.rb +36 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/str2bool.rb +46 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb +32 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/strftime.rb +107 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/strip.rb +39 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/suffix.rb +45 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/swapcase.rb +39 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/time.rb +49 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb +28 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/type.rb +50 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/union.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/unique.rb +51 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/upcase.rb +41 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/uriescape.rb +35 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb +56 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_array.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb +81 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb +34 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb +48 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb +48 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb +49 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_re.rb +40 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb +71 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_string.rb +33 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/values.rb +39 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/values_at.rb +98 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/zip.rb +65 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/provider/file_line/ruby.rb +83 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/type/anchor.rb +46 -0
- data/lib/templates/puppet/step-0/modules/stdlib/lib/puppet/type/file_line.rb +79 -0
- data/lib/templates/puppet/step-0/modules/stdlib/manifests/init.pp +20 -0
- data/lib/templates/puppet/step-0/modules/stdlib/manifests/stages.pp +43 -0
- data/lib/templates/puppet/step-0/modules/stdlib/metadata.json +111 -0
- data/lib/templates/puppet/step-0/modules/sudo/.fixtures.yml +5 -0
- data/lib/templates/puppet/step-0/modules/sudo/.gemfile +14 -0
- data/lib/templates/puppet/step-0/modules/sudo/.gemfile.lock +43 -0
- data/lib/templates/puppet/step-0/modules/sudo/.travis.yml +34 -0
- data/lib/templates/puppet/step-0/modules/sudo/LICENSE +13 -0
- data/lib/templates/puppet/step-0/modules/sudo/Modulefile +9 -0
- data/lib/templates/puppet/step-0/modules/sudo/README.md +171 -0
- data/lib/templates/puppet/step-0/modules/sudo/Rakefile +1 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.aix +90 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.archlinux +90 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.deb +90 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.freebsd +98 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.omnios +90 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.rhel5 +97 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.rhel6 +115 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.solaris +90 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.suse +81 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.ubuntu +30 -0
- data/lib/templates/puppet/step-0/modules/sudo/files/sudoers.wheezy +17 -0
- data/lib/templates/puppet/step-0/modules/sudo/lib/augeas/lenses/fixedsudoers.aug +520 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/allow.pp +76 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/conf.pp +105 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/configs.pp +24 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/init.pp +151 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/package/aix.pp +46 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/package/solaris.pp +60 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/package.pp +61 -0
- data/lib/templates/puppet/step-0/modules/sudo/manifests/params.pp +127 -0
- data/lib/templates/puppet/step-0/modules/sudo/metadata.json +59 -0
- data/lib/templates/puppet/step-0/modules/sudo/templates/users_groups.erb +9 -0
- data/lib/templates/puppet/step-0/modules/users/manifests/init.pp +15 -0
- data/lib/templates/puppet/step-0/modules/users/manifests/user.pp +50 -0
- data/lib/templates/puppet/step-1/Puppetfile.erb +5 -0
- data/lib/templates/puppet/step-1/hiera/data/common.yaml.erb +11 -0
- data/lib/templates/puppet/step-1/hiera/data/environment.yaml.erb +11 -0
- data/lib/templates/puppet/step-1/hiera/data/node.yaml.erb +11 -0
- data/lib/templates/puppet/step-1/hiera/hiera.yaml.erb +11 -0
- data/lib/templates/puppet/step-1/manifests/node.erb +5 -0
- data/lib/templates/puppet/step-1/manifests/site.pp.erb +15 -0
- data/lib/templates/puppet/step-1/modules/users/manifests/init.pp +15 -0
- data/lib/templates/puppet/step-1/modules/users/manifests/user.pp +49 -0
- data/lib/templates/puppet/step-2/Puppetfile.erb +5 -0
- data/lib/templates/puppet/step-2/hiera/data/common.yaml.erb +1 -0
- data/lib/templates/puppet/step-2/hiera/data/environment.yaml.erb +1 -0
- data/lib/templates/puppet/step-2/hiera/data/node.yaml.erb +1 -0
- data/lib/templates/puppet/step-2/hiera/hiera.yaml.erb +11 -0
- data/lib/templates/puppet/step-2/manifests/node.erb +3 -0
- data/lib/templates/puppet/step-2/manifests/site.pp.erb +10 -0
- data/lib/templates/puppet/step-3/Puppetfile.erb +5 -0
- data/lib/templates/puppet/step-3/hiera/data/common.yaml.erb +99 -0
- data/lib/templates/puppet/step-3/hiera/data/environment.yaml.erb +99 -0
- data/lib/templates/puppet/step-3/hiera/data/node.yaml.erb +99 -0
- data/lib/templates/puppet/step-3/hiera/hiera.yaml.erb +11 -0
- data/lib/templates/puppet/step-3/manifests/node.erb +5 -0
- data/lib/templates/puppet/step-3/manifests/site.pp.erb +15 -0
- data/spec/environment_spec.rb +82 -0
- data/spec/factories/environment.rb +20 -0
- data/spec/factories/node.rb +22 -0
- data/spec/factories/profile.rb +10 -0
- data/spec/factories/project.rb +17 -0
- data/spec/factories/provision.rb +13 -0
- data/spec/factories/role.rb +9 -0
- data/spec/fixtures/Capfile.test +2 -0
- data/spec/fixtures/Gemfile.test +5 -0
- data/spec/fixtures/config/deploy/environment.test +35 -0
- data/spec/fixtures/config/deploy/production.test +35 -0
- data/spec/fixtures/config/deploy/staging.test +35 -0
- data/spec/fixtures/config/deploy/vagrant.test +37 -0
- data/spec/fixtures/config/deploy.test +120 -0
- data/spec/fixtures/dot_bebox.test.erb +4 -0
- data/spec/fixtures/dot_gitignore.test +8 -0
- data/spec/fixtures/node/Vagrantfile.test.erb +18 -0
- data/spec/fixtures/node/node_0.test.erb +3 -0
- data/spec/fixtures/node/prepared_node_0.test.erb +4 -0
- data/spec/fixtures/node/provisioned_node_0.test.erb +4 -0
- data/spec/fixtures/node/vagrant_deploy.test +38 -0
- data/spec/fixtures/puppet/hiera/data/node0.server1.test.yaml.test +4 -0
- data/spec/fixtures/puppet/profiles/test/profile_0/Puppetfile.test +24 -0
- data/spec/fixtures/puppet/profiles/test/profile_0/Puppetfile_with_modules.test +20 -0
- data/spec/fixtures/puppet/profiles/test/profile_0/manifests/init.pp.test +17 -0
- data/spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test +22 -0
- data/spec/fixtures/puppet/roles/manifests/init.pp.test +14 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/common.yaml.test +26 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/node0.server1.test.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/pname_env.yaml.test +26 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/production.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/staging.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/data/vagrant.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-0/hiera/hiera.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-0/manifests/site.pp.test +10 -0
- data/spec/fixtures/puppet/steps/step-0/manifests/site_with_node.pp.test +15 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/common.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/node0.server1.test.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/pname_env.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/production.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/staging.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/data/vagrant.yaml.test +0 -0
- data/spec/fixtures/puppet/steps/step-1/hiera/hiera.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-1/manifests/site.pp.test +10 -0
- data/spec/fixtures/puppet/steps/step-1/manifests/site_with_node.pp.test +15 -0
- data/spec/fixtures/puppet/steps/step-2/Puppetfile.test +6 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/common.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/node0.server1.test.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/pname_env.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/production.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/staging.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/data/vagrant.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-2/hiera/hiera.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-2/manifests/site.pp.test +10 -0
- data/spec/fixtures/puppet/steps/step-2/manifests/site_with_node.pp.test +13 -0
- data/spec/fixtures/puppet/steps/step-2/manifests/site_with_node_role_association.pp.test +16 -0
- data/spec/fixtures/puppet/steps/step-2/modules/profiles/manifests/test/profile_0.pp.test +17 -0
- data/spec/fixtures/puppet/steps/step-2/modules/roles/manifests/role_0.pp.test +16 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/common.yaml.test +99 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/node0.server1.test.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/pname_env.yaml.test +99 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/production.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/staging.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/data/vagrant.yaml.test +1 -0
- data/spec/fixtures/puppet/steps/step-3/hiera/hiera.yaml.test +11 -0
- data/spec/fixtures/puppet/steps/step-3/manifests/site.pp.test +10 -0
- data/spec/fixtures/puppet/steps/step-3/manifests/site_with_node.pp.test +15 -0
- data/spec/fixtures/puppet/ubuntu_dependencies.test +10 -0
- data/spec/node0.server1.test/prepare_phase_spec.rb +53 -0
- data/spec/node0.server1.test/provision_step_0_spec.rb +46 -0
- data/spec/node0.server1.test/provision_step_1_spec.rb +41 -0
- data/spec/node0.server1.test/provision_step_2_spec.rb +79 -0
- data/spec/node0.server1.test/provision_step_3_spec.rb +76 -0
- data/spec/node_role_spec.rb +20 -0
- data/spec/node_spec.rb +71 -0
- data/spec/node_wizard_spec.rb +22 -0
- data/spec/ordered_phases_spec.rb +55 -0
- data/spec/pre_prepare_spec.rb +78 -0
- data/spec/pre_provision_steps_spec.rb +40 -0
- data/spec/profile_spec.rb +70 -0
- data/spec/project_spec.rb +195 -0
- data/spec/project_wizard_spec.rb +51 -0
- data/spec/puppet_spec_helper.rb +15 -0
- data/spec/role_profiles_spec.rb +40 -0
- data/spec/role_spec.rb +56 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/config_specs.yaml.example +2 -0
- data/spec/vagrant_spec_helper.rb +15 -0
- metadata +625 -0
metadata
ADDED
@@ -0,0 +1,625 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bebox
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Codescrum
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 10.3.1
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 10.3.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: aruba
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.5.4
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.5.4
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.14.1
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.14.1
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jazz_hands
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.5.2
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.5.2
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: serverspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.6.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.6.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: factory_girl
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 4.3.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 4.3.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: gli
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.10.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.10.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: active_attr
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.8.3
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.8.3
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: tilt
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.0.1
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.0.1
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: highline
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 1.6.21
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 1.6.21
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: progressbar
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 0.21.0
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.21.0
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: colorize
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - '='
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 0.6.0
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - '='
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 0.6.0
|
181
|
+
description: |2
|
182
|
+
Bebox is a project born from the necessity of organizing a way to deal with the provisioning of remote servers.
|
183
|
+
Bebox is based on puppet and much like another quite known project Boxen,
|
184
|
+
the idea is to have a good agreement on how to manage a puppet repo for a remote environment.
|
185
|
+
It is also a good idea to have a standard approach on dealing with the provisioning problem,
|
186
|
+
including how to write modules, integrate them into the projects,
|
187
|
+
a directory structure for the projects to follow,
|
188
|
+
how to have a replicated 'development/test' environment into virtual machines, etc.
|
189
|
+
email: team@codescrum.com
|
190
|
+
executables:
|
191
|
+
- bebox
|
192
|
+
extensions: []
|
193
|
+
extra_rdoc_files: []
|
194
|
+
files:
|
195
|
+
- ".gitignore"
|
196
|
+
- Gemfile
|
197
|
+
- Gemfile.lock
|
198
|
+
- LICENSE
|
199
|
+
- README.md
|
200
|
+
- Rakefile
|
201
|
+
- bebox.gemspec
|
202
|
+
- bin/bebox
|
203
|
+
- lib/bebox.rb
|
204
|
+
- lib/bebox/cli.rb
|
205
|
+
- lib/bebox/commands/commands_helper.rb
|
206
|
+
- lib/bebox/commands/environment_commands.rb
|
207
|
+
- lib/bebox/commands/general_commands.rb
|
208
|
+
- lib/bebox/commands/node_commands.rb
|
209
|
+
- lib/bebox/commands/prepare_commands.rb
|
210
|
+
- lib/bebox/commands/project_commands.rb
|
211
|
+
- lib/bebox/commands/provision_commands.rb
|
212
|
+
- lib/bebox/environment.rb
|
213
|
+
- lib/bebox/logger.rb
|
214
|
+
- lib/bebox/node.rb
|
215
|
+
- lib/bebox/profile.rb
|
216
|
+
- lib/bebox/project.rb
|
217
|
+
- lib/bebox/provision.rb
|
218
|
+
- lib/bebox/role.rb
|
219
|
+
- lib/bebox/version.rb
|
220
|
+
- lib/bebox/wizards/environment_wizard.rb
|
221
|
+
- lib/bebox/wizards/node_wizard.rb
|
222
|
+
- lib/bebox/wizards/profile_wizard.rb
|
223
|
+
- lib/bebox/wizards/project_wizard.rb
|
224
|
+
- lib/bebox/wizards/provision_wizard.rb
|
225
|
+
- lib/bebox/wizards/role_wizard.rb
|
226
|
+
- lib/deb/puppet_3.6.0/augeas-lenses_0.10.0-0ubuntu4_all.deb
|
227
|
+
- lib/deb/puppet_3.6.0/debconf-utils_1.5.42ubuntu1_all.deb
|
228
|
+
- lib/deb/puppet_3.6.0/facter_2.0.1-1puppetlabs1_amd64.deb
|
229
|
+
- lib/deb/puppet_3.6.0/hiera_1.3.2-1puppetlabs1_all.deb
|
230
|
+
- lib/deb/puppet_3.6.0/libaugeas-ruby1.8_0.3.0-1.1ubuntu4_amd64.deb
|
231
|
+
- lib/deb/puppet_3.6.0/libaugeas-ruby_0.3.0-1.1ubuntu4_all.deb
|
232
|
+
- lib/deb/puppet_3.6.0/libaugeas0_0.10.0-0ubuntu4_amd64.deb
|
233
|
+
- lib/deb/puppet_3.6.0/libjson-ruby_1.6.3-1_all.deb
|
234
|
+
- lib/deb/puppet_3.6.0/libruby1.8_1.8.7.352-2ubuntu1.4_amd64.deb
|
235
|
+
- lib/deb/puppet_3.6.0/libruby_4.8_all.deb
|
236
|
+
- lib/deb/puppet_3.6.0/libshadow-ruby1.8_1.4.1-8build1_amd64.deb
|
237
|
+
- lib/deb/puppet_3.6.0/puppet-common_3.6.0-1puppetlabs1_all.deb
|
238
|
+
- lib/deb/puppet_3.6.0/puppet_3.6.0-1puppetlabs1_all.deb
|
239
|
+
- lib/deb/puppet_3.6.0/ruby-json_1.6.3-1_amd64.deb
|
240
|
+
- lib/deb/puppet_3.6.0/ruby-rgen_0.6.5-1puppetlabs1_all.deb
|
241
|
+
- lib/deb/puppet_3.6.0/ruby1.8_1.8.7.352-2ubuntu1.4_amd64.deb
|
242
|
+
- lib/deb/puppet_3.6.0/ruby_4.8_all.deb
|
243
|
+
- lib/deb/puppet_3.6.0/virt-what_1.11-1_amd64.deb
|
244
|
+
- lib/templates/node/Vagrantfile.erb
|
245
|
+
- lib/templates/node/deploy_vagrant_node.erb
|
246
|
+
- lib/templates/node/node.yml.erb
|
247
|
+
- lib/templates/node/prepared_node.yml.erb
|
248
|
+
- lib/templates/node/provisioned_node.yml.erb
|
249
|
+
- lib/templates/project/Capfile.erb
|
250
|
+
- lib/templates/project/Gemfile.erb
|
251
|
+
- lib/templates/project/config/deploy.erb
|
252
|
+
- lib/templates/project/config/deploy/environment.erb
|
253
|
+
- lib/templates/project/config/deploy/vagrant.erb
|
254
|
+
- lib/templates/project/dot_bebox.erb
|
255
|
+
- lib/templates/project/gitignore.erb
|
256
|
+
- lib/templates/project/ubuntu_dependencies
|
257
|
+
- lib/templates/puppet/default_profiles/base/fundamental/ruby/Puppetfile
|
258
|
+
- lib/templates/puppet/default_profiles/base/fundamental/ruby/manifests/init.pp
|
259
|
+
- lib/templates/puppet/default_profiles/base/fundamental/sudo/Puppetfile
|
260
|
+
- lib/templates/puppet/default_profiles/base/fundamental/sudo/manifests/init.pp
|
261
|
+
- lib/templates/puppet/default_profiles/base/fundamental/users/Puppetfile
|
262
|
+
- lib/templates/puppet/default_profiles/base/fundamental/users/manifests/init.pp
|
263
|
+
- lib/templates/puppet/default_profiles/base/security/fail2ban/Puppetfile
|
264
|
+
- lib/templates/puppet/default_profiles/base/security/fail2ban/manifests/init.pp
|
265
|
+
- lib/templates/puppet/default_profiles/base/security/iptables/Puppetfile
|
266
|
+
- lib/templates/puppet/default_profiles/base/security/iptables/manifests/init.pp
|
267
|
+
- lib/templates/puppet/default_profiles/base/security/ssh/Puppetfile
|
268
|
+
- lib/templates/puppet/default_profiles/base/security/ssh/manifests/init.pp
|
269
|
+
- lib/templates/puppet/default_profiles/base/security/sysctl/Puppetfile
|
270
|
+
- lib/templates/puppet/default_profiles/base/security/sysctl/manifests/init.pp
|
271
|
+
- lib/templates/puppet/default_profiles/base/users/ssh/Puppetfile
|
272
|
+
- lib/templates/puppet/default_profiles/base/users/ssh/manifests/init.pp
|
273
|
+
- lib/templates/puppet/default_profiles/base/users/users/Puppetfile
|
274
|
+
- lib/templates/puppet/default_profiles/base/users/users/manifests/init.pp
|
275
|
+
- lib/templates/puppet/default_roles/fundamental/manifests/init.pp
|
276
|
+
- lib/templates/puppet/default_roles/security/manifests/init.pp
|
277
|
+
- lib/templates/puppet/default_roles/users/manifests/init.pp
|
278
|
+
- lib/templates/puppet/profiles/Puppetfile.erb
|
279
|
+
- lib/templates/puppet/profiles/manifests/init.pp.erb
|
280
|
+
- lib/templates/puppet/roles/manifests/init.pp.erb
|
281
|
+
- lib/templates/puppet/step-0/Puppetfile.erb
|
282
|
+
- lib/templates/puppet/step-0/hiera/data/common.yaml.erb
|
283
|
+
- lib/templates/puppet/step-0/hiera/data/environment.yaml.erb
|
284
|
+
- lib/templates/puppet/step-0/hiera/data/node.yaml.erb
|
285
|
+
- lib/templates/puppet/step-0/hiera/hiera.yaml.erb
|
286
|
+
- lib/templates/puppet/step-0/manifests/node.erb
|
287
|
+
- lib/templates/puppet/step-0/manifests/site.pp.erb
|
288
|
+
- lib/templates/puppet/step-0/modules/rbenv/AUTHORS
|
289
|
+
- lib/templates/puppet/step-0/modules/rbenv/CHANGELOG.md
|
290
|
+
- lib/templates/puppet/step-0/modules/rbenv/Gemfile
|
291
|
+
- lib/templates/puppet/step-0/modules/rbenv/Gemfile.lock
|
292
|
+
- lib/templates/puppet/step-0/modules/rbenv/Modulefile
|
293
|
+
- lib/templates/puppet/step-0/modules/rbenv/README.md
|
294
|
+
- lib/templates/puppet/step-0/modules/rbenv/Rakefile
|
295
|
+
- lib/templates/puppet/step-0/modules/rbenv/TODO
|
296
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/autospec
|
297
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/facter
|
298
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/filebucket
|
299
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/hiera
|
300
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/htmldiff
|
301
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/ldiff
|
302
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/pi
|
303
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppet
|
304
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppet-lint
|
305
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppet-module
|
306
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetca
|
307
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetd
|
308
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetdoc
|
309
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetmasterd
|
310
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetqd
|
311
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/puppetrun
|
312
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/rake
|
313
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/ralsh
|
314
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/rspec
|
315
|
+
- lib/templates/puppet/step-0/modules/rbenv/bin/rspec-puppet-init
|
316
|
+
- lib/templates/puppet/step-0/modules/rbenv/lib/puppet/provider/rbenvgem/default.rb
|
317
|
+
- lib/templates/puppet/step-0/modules/rbenv/lib/puppet/type/rbenvgem.rb
|
318
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/bundle.pp
|
319
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/client.pp
|
320
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/compile.pp
|
321
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/definition.pp
|
322
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies.pp
|
323
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/centos.pp
|
324
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/suse.pp
|
325
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/dependencies/ubuntu.pp
|
326
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/gem.pp
|
327
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/install.pp
|
328
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/plugin.pp
|
329
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/plugin/rbenvvars.pp
|
330
|
+
- lib/templates/puppet/step-0/modules/rbenv/manifests/plugin/rubybuild.pp
|
331
|
+
- lib/templates/puppet/step-0/modules/rbenv/metadata.json
|
332
|
+
- lib/templates/puppet/step-0/modules/rbenv/templates/Gemfile.erb
|
333
|
+
- lib/templates/puppet/step-0/modules/rbenv/templates/dot.rbenvrc.erb
|
334
|
+
- lib/templates/puppet/step-0/modules/stdlib/CHANGELOG.md
|
335
|
+
- lib/templates/puppet/step-0/modules/stdlib/CONTRIBUTING.md
|
336
|
+
- lib/templates/puppet/step-0/modules/stdlib/Gemfile
|
337
|
+
- lib/templates/puppet/step-0/modules/stdlib/Gemfile.lock
|
338
|
+
- lib/templates/puppet/step-0/modules/stdlib/LICENSE
|
339
|
+
- lib/templates/puppet/step-0/modules/stdlib/Modulefile
|
340
|
+
- lib/templates/puppet/step-0/modules/stdlib/README.markdown
|
341
|
+
- lib/templates/puppet/step-0/modules/stdlib/README_DEVELOPER.markdown
|
342
|
+
- lib/templates/puppet/step-0/modules/stdlib/README_SPECS.markdown
|
343
|
+
- lib/templates/puppet/step-0/modules/stdlib/RELEASE_PROCESS.markdown
|
344
|
+
- lib/templates/puppet/step-0/modules/stdlib/Rakefile
|
345
|
+
- lib/templates/puppet/step-0/modules/stdlib/checksums.json
|
346
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/facter/facter_dot_d.rb
|
347
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/facter/pe_version.rb
|
348
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/facter/puppet_vardir.rb
|
349
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/facter/root_home.rb
|
350
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/facter/util/puppet_settings.rb
|
351
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/abs.rb
|
352
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/any2array.rb
|
353
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/base64.rb
|
354
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/bool2num.rb
|
355
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/capitalize.rb
|
356
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/chomp.rb
|
357
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/chop.rb
|
358
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/concat.rb
|
359
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/count.rb
|
360
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb
|
361
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb
|
362
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete.rb
|
363
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_at.rb
|
364
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb
|
365
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/delete_values.rb
|
366
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/difference.rb
|
367
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/dirname.rb
|
368
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/downcase.rb
|
369
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/empty.rb
|
370
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb
|
371
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb
|
372
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/flatten.rb
|
373
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/floor.rb
|
374
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb
|
375
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb
|
376
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/getparam.rb
|
377
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/getvar.rb
|
378
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/grep.rb
|
379
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb
|
380
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb
|
381
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb
|
382
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/has_key.rb
|
383
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/hash.rb
|
384
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/intersection.rb
|
385
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_array.rb
|
386
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_bool.rb
|
387
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb
|
388
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_float.rb
|
389
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb
|
390
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_hash.rb
|
391
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_integer.rb
|
392
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb
|
393
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb
|
394
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb
|
395
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/is_string.rb
|
396
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/join.rb
|
397
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb
|
398
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/keys.rb
|
399
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb
|
400
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/lstrip.rb
|
401
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/max.rb
|
402
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/member.rb
|
403
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/merge.rb
|
404
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/min.rb
|
405
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/num2bool.rb
|
406
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/parsejson.rb
|
407
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb
|
408
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/pick.rb
|
409
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/pick_default.rb
|
410
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/prefix.rb
|
411
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/range.rb
|
412
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/reject.rb
|
413
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/reverse.rb
|
414
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/rstrip.rb
|
415
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/shuffle.rb
|
416
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/size.rb
|
417
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/sort.rb
|
418
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/squeeze.rb
|
419
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/str2bool.rb
|
420
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb
|
421
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/strftime.rb
|
422
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/strip.rb
|
423
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/suffix.rb
|
424
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/swapcase.rb
|
425
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/time.rb
|
426
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb
|
427
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/type.rb
|
428
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/union.rb
|
429
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/unique.rb
|
430
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/upcase.rb
|
431
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/uriescape.rb
|
432
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb
|
433
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_array.rb
|
434
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb
|
435
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb
|
436
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
|
437
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb
|
438
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb
|
439
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb
|
440
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_re.rb
|
441
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb
|
442
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/validate_string.rb
|
443
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/values.rb
|
444
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/values_at.rb
|
445
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/parser/functions/zip.rb
|
446
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/provider/file_line/ruby.rb
|
447
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/type/anchor.rb
|
448
|
+
- lib/templates/puppet/step-0/modules/stdlib/lib/puppet/type/file_line.rb
|
449
|
+
- lib/templates/puppet/step-0/modules/stdlib/manifests/init.pp
|
450
|
+
- lib/templates/puppet/step-0/modules/stdlib/manifests/stages.pp
|
451
|
+
- lib/templates/puppet/step-0/modules/stdlib/metadata.json
|
452
|
+
- lib/templates/puppet/step-0/modules/sudo/.fixtures.yml
|
453
|
+
- lib/templates/puppet/step-0/modules/sudo/.gemfile
|
454
|
+
- lib/templates/puppet/step-0/modules/sudo/.gemfile.lock
|
455
|
+
- lib/templates/puppet/step-0/modules/sudo/.travis.yml
|
456
|
+
- lib/templates/puppet/step-0/modules/sudo/LICENSE
|
457
|
+
- lib/templates/puppet/step-0/modules/sudo/Modulefile
|
458
|
+
- lib/templates/puppet/step-0/modules/sudo/README.md
|
459
|
+
- lib/templates/puppet/step-0/modules/sudo/Rakefile
|
460
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.aix
|
461
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.archlinux
|
462
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.deb
|
463
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.freebsd
|
464
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.omnios
|
465
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.rhel5
|
466
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.rhel6
|
467
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.solaris
|
468
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.suse
|
469
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.ubuntu
|
470
|
+
- lib/templates/puppet/step-0/modules/sudo/files/sudoers.wheezy
|
471
|
+
- lib/templates/puppet/step-0/modules/sudo/lib/augeas/lenses/fixedsudoers.aug
|
472
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/allow.pp
|
473
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/conf.pp
|
474
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/configs.pp
|
475
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/init.pp
|
476
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/package.pp
|
477
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/package/aix.pp
|
478
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/package/solaris.pp
|
479
|
+
- lib/templates/puppet/step-0/modules/sudo/manifests/params.pp
|
480
|
+
- lib/templates/puppet/step-0/modules/sudo/metadata.json
|
481
|
+
- lib/templates/puppet/step-0/modules/sudo/templates/users_groups.erb
|
482
|
+
- lib/templates/puppet/step-0/modules/users/manifests/init.pp
|
483
|
+
- lib/templates/puppet/step-0/modules/users/manifests/user.pp
|
484
|
+
- lib/templates/puppet/step-1/Puppetfile.erb
|
485
|
+
- lib/templates/puppet/step-1/hiera/data/common.yaml.erb
|
486
|
+
- lib/templates/puppet/step-1/hiera/data/environment.yaml.erb
|
487
|
+
- lib/templates/puppet/step-1/hiera/data/node.yaml.erb
|
488
|
+
- lib/templates/puppet/step-1/hiera/hiera.yaml.erb
|
489
|
+
- lib/templates/puppet/step-1/manifests/node.erb
|
490
|
+
- lib/templates/puppet/step-1/manifests/site.pp.erb
|
491
|
+
- lib/templates/puppet/step-1/modules/users/manifests/init.pp
|
492
|
+
- lib/templates/puppet/step-1/modules/users/manifests/user.pp
|
493
|
+
- lib/templates/puppet/step-2/Puppetfile.erb
|
494
|
+
- lib/templates/puppet/step-2/hiera/data/common.yaml.erb
|
495
|
+
- lib/templates/puppet/step-2/hiera/data/environment.yaml.erb
|
496
|
+
- lib/templates/puppet/step-2/hiera/data/node.yaml.erb
|
497
|
+
- lib/templates/puppet/step-2/hiera/hiera.yaml.erb
|
498
|
+
- lib/templates/puppet/step-2/manifests/node.erb
|
499
|
+
- lib/templates/puppet/step-2/manifests/site.pp.erb
|
500
|
+
- lib/templates/puppet/step-3/Puppetfile.erb
|
501
|
+
- lib/templates/puppet/step-3/hiera/data/common.yaml.erb
|
502
|
+
- lib/templates/puppet/step-3/hiera/data/environment.yaml.erb
|
503
|
+
- lib/templates/puppet/step-3/hiera/data/node.yaml.erb
|
504
|
+
- lib/templates/puppet/step-3/hiera/hiera.yaml.erb
|
505
|
+
- lib/templates/puppet/step-3/manifests/node.erb
|
506
|
+
- lib/templates/puppet/step-3/manifests/site.pp.erb
|
507
|
+
- spec/environment_spec.rb
|
508
|
+
- spec/factories/environment.rb
|
509
|
+
- spec/factories/node.rb
|
510
|
+
- spec/factories/profile.rb
|
511
|
+
- spec/factories/project.rb
|
512
|
+
- spec/factories/provision.rb
|
513
|
+
- spec/factories/role.rb
|
514
|
+
- spec/fixtures/Capfile.test
|
515
|
+
- spec/fixtures/Gemfile.test
|
516
|
+
- spec/fixtures/config/deploy.test
|
517
|
+
- spec/fixtures/config/deploy/environment.test
|
518
|
+
- spec/fixtures/config/deploy/production.test
|
519
|
+
- spec/fixtures/config/deploy/staging.test
|
520
|
+
- spec/fixtures/config/deploy/vagrant.test
|
521
|
+
- spec/fixtures/dot_bebox.test.erb
|
522
|
+
- spec/fixtures/dot_gitignore.test
|
523
|
+
- spec/fixtures/node/Vagrantfile.test.erb
|
524
|
+
- spec/fixtures/node/node_0.test.erb
|
525
|
+
- spec/fixtures/node/prepared_node_0.test.erb
|
526
|
+
- spec/fixtures/node/provisioned_node_0.test.erb
|
527
|
+
- spec/fixtures/node/vagrant_deploy.test
|
528
|
+
- spec/fixtures/puppet/hiera/data/node0.server1.test.yaml.test
|
529
|
+
- spec/fixtures/puppet/profiles/test/profile_0/Puppetfile.test
|
530
|
+
- spec/fixtures/puppet/profiles/test/profile_0/Puppetfile_with_modules.test
|
531
|
+
- spec/fixtures/puppet/profiles/test/profile_0/manifests/init.pp.test
|
532
|
+
- spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
|
533
|
+
- spec/fixtures/puppet/roles/manifests/init.pp.test
|
534
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/common.yaml.test
|
535
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/node0.server1.test.yaml.test
|
536
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/pname_env.yaml.test
|
537
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/production.yaml.test
|
538
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/staging.yaml.test
|
539
|
+
- spec/fixtures/puppet/steps/step-0/hiera/data/vagrant.yaml.test
|
540
|
+
- spec/fixtures/puppet/steps/step-0/hiera/hiera.yaml.test
|
541
|
+
- spec/fixtures/puppet/steps/step-0/manifests/site.pp.test
|
542
|
+
- spec/fixtures/puppet/steps/step-0/manifests/site_with_node.pp.test
|
543
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/common.yaml.test
|
544
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/node0.server1.test.yaml.test
|
545
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/pname_env.yaml.test
|
546
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/production.yaml.test
|
547
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/staging.yaml.test
|
548
|
+
- spec/fixtures/puppet/steps/step-1/hiera/data/vagrant.yaml.test
|
549
|
+
- spec/fixtures/puppet/steps/step-1/hiera/hiera.yaml.test
|
550
|
+
- spec/fixtures/puppet/steps/step-1/manifests/site.pp.test
|
551
|
+
- spec/fixtures/puppet/steps/step-1/manifests/site_with_node.pp.test
|
552
|
+
- spec/fixtures/puppet/steps/step-2/Puppetfile.test
|
553
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/common.yaml.test
|
554
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/node0.server1.test.yaml.test
|
555
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/pname_env.yaml.test
|
556
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/production.yaml.test
|
557
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/staging.yaml.test
|
558
|
+
- spec/fixtures/puppet/steps/step-2/hiera/data/vagrant.yaml.test
|
559
|
+
- spec/fixtures/puppet/steps/step-2/hiera/hiera.yaml.test
|
560
|
+
- spec/fixtures/puppet/steps/step-2/manifests/site.pp.test
|
561
|
+
- spec/fixtures/puppet/steps/step-2/manifests/site_with_node.pp.test
|
562
|
+
- spec/fixtures/puppet/steps/step-2/manifests/site_with_node_role_association.pp.test
|
563
|
+
- spec/fixtures/puppet/steps/step-2/modules/profiles/manifests/test/profile_0.pp.test
|
564
|
+
- spec/fixtures/puppet/steps/step-2/modules/roles/manifests/role_0.pp.test
|
565
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/common.yaml.test
|
566
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/node0.server1.test.yaml.test
|
567
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/pname_env.yaml.test
|
568
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/production.yaml.test
|
569
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/staging.yaml.test
|
570
|
+
- spec/fixtures/puppet/steps/step-3/hiera/data/vagrant.yaml.test
|
571
|
+
- spec/fixtures/puppet/steps/step-3/hiera/hiera.yaml.test
|
572
|
+
- spec/fixtures/puppet/steps/step-3/manifests/site.pp.test
|
573
|
+
- spec/fixtures/puppet/steps/step-3/manifests/site_with_node.pp.test
|
574
|
+
- spec/fixtures/puppet/ubuntu_dependencies.test
|
575
|
+
- spec/node0.server1.test/prepare_phase_spec.rb
|
576
|
+
- spec/node0.server1.test/provision_step_0_spec.rb
|
577
|
+
- spec/node0.server1.test/provision_step_1_spec.rb
|
578
|
+
- spec/node0.server1.test/provision_step_2_spec.rb
|
579
|
+
- spec/node0.server1.test/provision_step_3_spec.rb
|
580
|
+
- spec/node_role_spec.rb
|
581
|
+
- spec/node_spec.rb
|
582
|
+
- spec/node_wizard_spec.rb
|
583
|
+
- spec/ordered_phases_spec.rb
|
584
|
+
- spec/pre_prepare_spec.rb
|
585
|
+
- spec/pre_provision_steps_spec.rb
|
586
|
+
- spec/profile_spec.rb
|
587
|
+
- spec/project_spec.rb
|
588
|
+
- spec/project_wizard_spec.rb
|
589
|
+
- spec/puppet_spec_helper.rb
|
590
|
+
- spec/role_profiles_spec.rb
|
591
|
+
- spec/role_spec.rb
|
592
|
+
- spec/spec_helper.rb
|
593
|
+
- spec/support/config_specs.yaml.example
|
594
|
+
- spec/vagrant_spec_helper.rb
|
595
|
+
homepage: http://www.codescrum.com
|
596
|
+
licenses:
|
597
|
+
- MIT
|
598
|
+
metadata: {}
|
599
|
+
post_install_message:
|
600
|
+
rdoc_options:
|
601
|
+
- "--title"
|
602
|
+
- bebox
|
603
|
+
- "--main"
|
604
|
+
- README.rdoc
|
605
|
+
- "-ri"
|
606
|
+
require_paths:
|
607
|
+
- lib
|
608
|
+
- lib
|
609
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
610
|
+
requirements:
|
611
|
+
- - ">="
|
612
|
+
- !ruby/object:Gem::Version
|
613
|
+
version: 1.9.2
|
614
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
615
|
+
requirements:
|
616
|
+
- - ">="
|
617
|
+
- !ruby/object:Gem::Version
|
618
|
+
version: '0'
|
619
|
+
requirements: []
|
620
|
+
rubyforge_project:
|
621
|
+
rubygems_version: 2.2.0
|
622
|
+
signing_key:
|
623
|
+
specification_version: 4
|
624
|
+
summary: Create basic provisioning of remote servers.
|
625
|
+
test_files: []
|