gitextract_s60rxf8b/ ├── .gitignore ├── .gitmodules ├── .rdebugrc ├── .rvmrc ├── Gemfile ├── License.txt ├── Makefile ├── Manifest.txt ├── README.rdoc ├── Rakefile ├── Vagrantfile ├── bin/ │ ├── cloud │ ├── cloud-bootstrap │ ├── cloud-compile │ ├── cloud-configure │ ├── cloud-console │ ├── cloud-contract │ ├── cloud-cssh │ ├── cloud-expand │ ├── cloud-list │ ├── cloud-reboot │ ├── cloud-rsync │ ├── cloud-run │ ├── cloud-show │ ├── cloud-ssh │ ├── cloud-start │ ├── cloud-terminate │ └── cloud-vnc ├── config/ │ └── requirements.rb ├── examples/ │ ├── README.md │ ├── chef_cloud/ │ │ ├── chef_repo/ │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── Rakefile │ │ │ ├── certificates/ │ │ │ │ └── README │ │ │ ├── config/ │ │ │ │ ├── client.rb.example │ │ │ │ ├── rake.rb │ │ │ │ ├── server.rb.example │ │ │ │ └── solo.rb.example │ │ │ ├── cookbooks/ │ │ │ │ ├── README │ │ │ │ ├── apache2/ │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── apache.rb │ │ │ │ │ ├── definitions/ │ │ │ │ │ │ ├── apache_conf.rb │ │ │ │ │ │ ├── apache_module.rb │ │ │ │ │ │ ├── apache_site.rb │ │ │ │ │ │ └── web_app.rb │ │ │ │ │ ├── files/ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ └── apache2_module_conf_generate.pl │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ ├── default.rb │ │ │ │ │ │ ├── god_monitor.rb │ │ │ │ │ │ ├── mod_alias.rb │ │ │ │ │ │ ├── mod_auth_basic.rb │ │ │ │ │ │ ├── mod_auth_digest.rb │ │ │ │ │ │ ├── mod_authn_file.rb │ │ │ │ │ │ ├── mod_authnz_ldap.rb │ │ │ │ │ │ ├── mod_authz_default.rb │ │ │ │ │ │ ├── mod_authz_groupfile.rb │ │ │ │ │ │ ├── mod_authz_host.rb │ │ │ │ │ │ ├── mod_authz_user.rb │ │ │ │ │ │ ├── mod_autoindex.rb │ │ │ │ │ │ ├── mod_cgi.rb │ │ │ │ │ │ ├── mod_dav.rb │ │ │ │ │ │ ├── mod_dav_svn.rb │ │ │ │ │ │ ├── mod_deflate.rb │ │ │ │ │ │ ├── mod_dir.rb │ │ │ │ │ │ ├── mod_env.rb │ │ │ │ │ │ ├── mod_expires.rb │ │ │ │ │ │ ├── mod_fcgid.rb │ │ │ │ │ │ ├── mod_headers.rb │ │ │ │ │ │ ├── mod_ldap.rb │ │ │ │ │ │ ├── mod_log_config.rb │ │ │ │ │ │ ├── mod_mime.rb │ │ │ │ │ │ ├── mod_negotiation.rb │ │ │ │ │ │ ├── mod_php5.rb │ │ │ │ │ │ ├── mod_proxy.rb │ │ │ │ │ │ ├── mod_proxy_ajp.rb │ │ │ │ │ │ ├── mod_proxy_balancer.rb │ │ │ │ │ │ ├── mod_proxy_connect.rb │ │ │ │ │ │ ├── mod_proxy_http.rb │ │ │ │ │ │ ├── mod_python.rb │ │ │ │ │ │ ├── mod_rails.rb │ │ │ │ │ │ ├── mod_rewrite.rb │ │ │ │ │ │ ├── mod_setenvif.rb │ │ │ │ │ │ ├── mod_ssl.rb │ │ │ │ │ │ └── mod_status.rb │ │ │ │ │ └── templates/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── a2dismod.erb │ │ │ │ │ ├── a2dissite.erb │ │ │ │ │ ├── a2enmod.erb │ │ │ │ │ ├── a2ensite.erb │ │ │ │ │ ├── apache2.conf.erb │ │ │ │ │ ├── apache2.god.erb │ │ │ │ │ ├── charset.erb │ │ │ │ │ ├── default-site.erb │ │ │ │ │ ├── mods/ │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alias.conf.erb │ │ │ │ │ │ ├── autoindex.conf.erb │ │ │ │ │ │ ├── deflate.conf.erb │ │ │ │ │ │ ├── dir.conf.erb │ │ │ │ │ │ ├── fcgid.conf.erb │ │ │ │ │ │ ├── mime.conf.erb │ │ │ │ │ │ ├── negotiation.conf.erb │ │ │ │ │ │ ├── proxy.conf.erb │ │ │ │ │ │ ├── setenvif.conf.erb │ │ │ │ │ │ ├── ssl.conf.erb │ │ │ │ │ │ └── status.conf.erb │ │ │ │ │ ├── port_apache.erb │ │ │ │ │ ├── ports.conf.erb │ │ │ │ │ ├── security.erb │ │ │ │ │ └── web_app.conf.erb │ │ │ │ ├── apt/ │ │ │ │ │ ├── files/ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ ├── apt-cacher │ │ │ │ │ │ ├── apt-cacher.conf │ │ │ │ │ │ └── apt-proxy-v2.conf │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ └── recipes/ │ │ │ │ │ ├── cacher.rb │ │ │ │ │ ├── default.rb │ │ │ │ │ └── proxy.rb │ │ │ │ ├── bootstrap/ │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── bootstrap.rb │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── default.rb │ │ │ │ │ │ └── server.rb │ │ │ │ │ └── templates/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── client.rb.erb │ │ │ │ │ ├── server.rb.erb │ │ │ │ │ ├── sv-chef-client-log-run.erb │ │ │ │ │ ├── sv-chef-client-run.erb │ │ │ │ │ ├── sv-chef-indexer-log-run.erb │ │ │ │ │ ├── sv-chef-indexer-run.erb │ │ │ │ │ ├── sv-chef-server-log-run.erb │ │ │ │ │ └── sv-chef-server-run.erb │ │ │ │ ├── chef/ │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── chef.rb │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── default.rb │ │ │ │ │ │ ├── server.rb │ │ │ │ │ │ └── server_proxy.rb │ │ │ │ │ └── templates/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── chef_server.conf.erb │ │ │ │ │ ├── client.rb.erb │ │ │ │ │ └── server.rb.erb │ │ │ │ ├── ec2/ │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ ├── ec2_metadata.rb │ │ │ │ │ │ └── ec2_recipe_options.rb │ │ │ │ │ ├── metadata.rb │ │ │ │ │ └── recipes/ │ │ │ │ │ └── default.rb │ │ │ │ ├── ganglia/ │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── default.rb │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ ├── default.rb │ │ │ │ │ │ ├── gmetad.rb │ │ │ │ │ │ ├── monitor_sshd.rb │ │ │ │ │ │ ├── monitor_watson.rb │ │ │ │ │ │ └── web.rb │ │ │ │ │ └── templates/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── bin/ │ │ │ │ │ │ ├── gmetad.erb │ │ │ │ │ │ ├── gmond.erb │ │ │ │ │ │ └── monitors/ │ │ │ │ │ │ ├── sshd_ganglia.sh.erb │ │ │ │ │ │ └── watson_channels.sh.erb │ │ │ │ │ ├── ganglia-web-conf.php.erb │ │ │ │ │ ├── gmetad.conf.erb │ │ │ │ │ ├── gmond.conf.erb │ │ │ │ │ └── jaunty.sources.list.erb │ │ │ │ ├── ntp/ │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── ntp.rb │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ └── default.rb │ │ │ │ │ └── templates/ │ │ │ │ │ └── default/ │ │ │ │ │ └── ntp.conf.erb │ │ │ │ ├── rsyslog/ │ │ │ │ │ ├── README.rdoc │ │ │ │ │ ├── attributes/ │ │ │ │ │ │ └── rsyslog.rb │ │ │ │ │ ├── files/ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ └── rsyslog.default │ │ │ │ │ │ ├── ubuntu-8.04/ │ │ │ │ │ │ │ └── rsyslog.default │ │ │ │ │ │ └── ubuntu-9.10/ │ │ │ │ │ │ └── rsyslog.default │ │ │ │ │ ├── metadata.json │ │ │ │ │ ├── metadata.rb │ │ │ │ │ ├── recipes/ │ │ │ │ │ │ ├── client.rb │ │ │ │ │ │ ├── default.rb │ │ │ │ │ │ └── server.rb │ │ │ │ │ └── templates/ │ │ │ │ │ ├── default/ │ │ │ │ │ │ ├── remote.conf.erb │ │ │ │ │ │ ├── rsyslog.conf.erb │ │ │ │ │ │ └── server.conf.erb │ │ │ │ │ └── ubuntu-9.10/ │ │ │ │ │ ├── 50-default.conf.erb │ │ │ │ │ ├── remote.conf.erb │ │ │ │ │ └── server.conf.erb │ │ │ │ └── runit/ │ │ │ │ ├── attributes/ │ │ │ │ │ └── sv_bin.rb │ │ │ │ ├── definitions/ │ │ │ │ │ └── runit_service.rb │ │ │ │ ├── files/ │ │ │ │ │ ├── ubuntu-6.10/ │ │ │ │ │ │ └── runsvdir │ │ │ │ │ ├── ubuntu-7.04/ │ │ │ │ │ │ └── runsvdir │ │ │ │ │ ├── ubuntu-7.10/ │ │ │ │ │ │ └── runsvdir │ │ │ │ │ └── ubuntu-8.04/ │ │ │ │ │ └── runsvdir │ │ │ │ ├── metadata.json │ │ │ │ ├── metadata.rb │ │ │ │ └── recipes/ │ │ │ │ └── default.rb │ │ │ ├── roles/ │ │ │ │ ├── README │ │ │ │ └── chef-upgrade.rb │ │ │ └── site-cookbooks/ │ │ │ ├── README │ │ │ ├── hosts/ │ │ │ │ ├── attributes/ │ │ │ │ │ └── hosts.rb │ │ │ │ ├── metadata.rb │ │ │ │ ├── recipes/ │ │ │ │ │ └── default.rb │ │ │ │ └── templates/ │ │ │ │ └── default/ │ │ │ │ └── hosts.erb │ │ │ ├── sysadmin/ │ │ │ │ └── recipes/ │ │ │ │ └── default.rb │ │ │ └── ubuntu/ │ │ │ ├── metadata.json │ │ │ ├── metadata.rb │ │ │ ├── recipes/ │ │ │ │ └── default.rb │ │ │ └── templates/ │ │ │ └── default/ │ │ │ └── sources.list.erb │ │ └── user_data │ ├── chef_cloud.rb │ ├── ec2_infrastructure_only.rb │ ├── knock.sh │ ├── rds_cloud.rb │ └── simple.rb ├── lib/ │ ├── cloud_providers/ │ │ ├── cloud_provider.rb │ │ ├── connections.rb │ │ ├── default/ │ │ │ ├── base.rb │ │ │ └── helpers/ │ │ │ └── base_helper.rb │ │ ├── ec2/ │ │ │ ├── ec2.rb │ │ │ ├── ec2_instance.rb │ │ │ └── helpers/ │ │ │ ├── authorize.rb │ │ │ ├── ec2_helper.rb │ │ │ ├── elastic_auto_scaler.rb │ │ │ ├── elastic_block_device_mapping.rb │ │ │ ├── elastic_block_store.rb │ │ │ ├── elastic_block_store_group.rb │ │ │ ├── elastic_ip.rb │ │ │ ├── elastic_load_balancer.rb │ │ │ ├── rds_instance.rb │ │ │ ├── revoke.rb │ │ │ └── security_group.rb │ │ └── remote_instance.rb │ ├── cloud_providers.rb │ ├── core/ │ │ ├── array.rb │ │ ├── hash.rb │ │ ├── object.rb │ │ ├── string.rb │ │ └── symbol.rb │ ├── keypair.rb │ ├── poolparty/ │ │ ├── base.rb │ │ ├── chef.rb │ │ ├── chef_attribute.rb │ │ ├── chef_client.rb │ │ ├── chef_solo.rb │ │ ├── cloud.rb │ │ ├── pool.rb │ │ ├── pool_party_error.rb │ │ └── version.rb │ └── poolparty.rb ├── poolparty.gemspec ├── setup.rb ├── test/ │ ├── fixtures/ │ │ ├── bad_perms_test_key │ │ ├── chef/ │ │ │ └── recipes/ │ │ │ └── sudo/ │ │ │ ├── attributes/ │ │ │ │ └── sudoers.rb │ │ │ ├── recipes/ │ │ │ │ └── default.rb │ │ │ └── templates/ │ │ │ └── default/ │ │ │ └── sudoers.erb │ │ ├── clouds/ │ │ │ ├── rds_cloud.rb │ │ │ ├── rds_missing_params.rb │ │ │ ├── simple_cloud.rb │ │ │ ├── ssh_cloud.rb │ │ │ └── vmware_cloud.rb │ │ ├── ec2/ │ │ │ ├── ec2-describe-instances_response_body.xml │ │ │ ├── ec2-describe-security-groups_response_body.xml │ │ │ ├── ec2-run-instances_response_body.xml │ │ │ ├── ec2-terminate-instances_response_body.xml │ │ │ ├── elb-describe-load-balancers.xml │ │ │ └── rds-describe-db-instances-empty_response_body.xml │ │ ├── keys/ │ │ │ ├── pem_key.pem │ │ │ ├── pem_pub_key.pem │ │ │ ├── test_key │ │ │ └── test_pub_key │ │ ├── resources/ │ │ │ ├── fake_plugin.rb │ │ │ ├── fake_resource.rb │ │ │ ├── fake_subclassed_plugin.rb │ │ │ └── random_proc_file.rb │ │ ├── templates/ │ │ │ └── apache_conf.erb │ │ └── test_template.erb │ ├── lib/ │ │ ├── core/ │ │ │ ├── array_test.rb │ │ │ ├── hash_test.rb │ │ │ ├── object_test.rb │ │ │ ├── string_test.rb │ │ │ └── symbol_test.rb │ │ └── poolparty/ │ │ ├── cloud_test.rb │ │ ├── keypair_test.rb │ │ ├── pool_party_error_test.rb │ │ ├── pool_test.rb │ │ └── rds_test.rb │ ├── test_helper.rb │ └── test_methods.rb └── vendor/ └── gems/ ├── dslify/ │ ├── .gitignore │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION.yml │ ├── dslify.gemspec │ ├── lib/ │ │ └── dslify.rb │ └── test/ │ ├── dslify_test.rb │ └── test_helper.rb ├── git-style-binaries/ │ ├── .document │ ├── .gitignore │ ├── .gitmodules │ ├── README.markdown │ ├── Rakefile │ ├── VERSION.yml │ ├── doc/ │ │ ├── EXAMPLES │ │ └── poolparty-binaries.screenplay │ ├── git-style-binaries.gemspec │ ├── lib/ │ │ ├── ext/ │ │ │ ├── colorize.rb │ │ │ └── core.rb │ │ ├── git-style-binary/ │ │ │ ├── autorunner.rb │ │ │ ├── command.rb │ │ │ ├── commands/ │ │ │ │ └── help.rb │ │ │ ├── helpers/ │ │ │ │ ├── name_resolver.rb │ │ │ │ └── pager.rb │ │ │ └── parser.rb │ │ └── git-style-binary.rb │ └── test/ │ ├── fixtures/ │ │ ├── flickr │ │ ├── flickr-download │ │ ├── wordpress │ │ ├── wordpress-categories │ │ ├── wordpress-list │ │ └── wordpress-post │ ├── git-style-binary/ │ │ └── command_test.rb │ ├── git_style_binary_test.rb │ ├── running_binaries_test.rb │ ├── shoulda_macros/ │ │ └── matching_stdio.rb │ └── test_helper.rb ├── searchable_paths/ │ ├── .document │ ├── .gitignore │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── lib/ │ │ └── searchable_paths.rb │ └── test/ │ ├── searchable_paths_test.rb │ └── test_helper.rb ├── trollop/ │ ├── FAQ.txt │ ├── History.txt │ ├── Manifest.txt │ ├── README.txt │ ├── Rakefile │ ├── lib/ │ │ └── trollop.rb │ ├── release-script.txt │ ├── test/ │ │ └── test_trollop.rb │ └── www/ │ └── index.html └── xml-simple/ └── lib/ └── xmlsimple.rb