├── .bowerrc
├── .gitignore
├── CordovaApp-debug.apk
├── Gruntfile.js
├── README.md
├── Vagrantfile
├── bower.json
├── config.xml
├── hooks
└── README.md
├── package.json
├── puphpet
├── config.yaml
├── files
│ ├── dot
│ │ ├── .bash_aliases
│ │ ├── .bash_git
│ │ ├── .vimrc
│ │ └── ssh
│ │ │ ├── id_rsa
│ │ │ ├── id_rsa.ppk
│ │ │ ├── id_rsa.pub
│ │ │ ├── insecure_private_key
│ │ │ ├── root_id_rsa
│ │ │ ├── root_id_rsa.ppk
│ │ │ └── root_id_rsa.pub
│ ├── exec-always
│ │ └── empty
│ ├── exec-once
│ │ └── empty
│ ├── startup-always
│ │ └── empty
│ └── startup-once
│ │ └── empty
├── puppet
│ ├── Puppetfile
│ ├── Puppetfile.lock
│ ├── hiera.yaml
│ ├── modules
│ │ ├── apache
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .puppet-lint.rc
│ │ │ ├── .sync.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── README.passenger.md
│ │ │ ├── Rakefile
│ │ │ ├── files
│ │ │ │ └── httpd
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── a2mod.rb
│ │ │ │ │ └── a2mod
│ │ │ │ │ │ ├── a2mod.rb
│ │ │ │ │ │ ├── gentoo.rb
│ │ │ │ │ │ ├── modfix.rb
│ │ │ │ │ │ └── redhat.rb
│ │ │ │ │ └── type
│ │ │ │ │ └── a2mod.rb
│ │ │ ├── manifests
│ │ │ │ ├── balancer.pp
│ │ │ │ ├── balancermember.pp
│ │ │ │ ├── confd
│ │ │ │ │ └── no_accf.pp
│ │ │ │ ├── default_confd_files.pp
│ │ │ │ ├── default_mods.pp
│ │ │ │ ├── default_mods
│ │ │ │ │ └── load.pp
│ │ │ │ ├── dev.pp
│ │ │ │ ├── fastcgi
│ │ │ │ │ └── server.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── listen.pp
│ │ │ │ ├── mod.pp
│ │ │ │ ├── mod
│ │ │ │ │ ├── actions.pp
│ │ │ │ │ ├── alias.pp
│ │ │ │ │ ├── auth_basic.pp
│ │ │ │ │ ├── auth_kerb.pp
│ │ │ │ │ ├── authnz_ldap.pp
│ │ │ │ │ ├── autoindex.pp
│ │ │ │ │ ├── cache.pp
│ │ │ │ │ ├── cgi.pp
│ │ │ │ │ ├── cgid.pp
│ │ │ │ │ ├── dav.pp
│ │ │ │ │ ├── dav_fs.pp
│ │ │ │ │ ├── dav_svn.pp
│ │ │ │ │ ├── deflate.pp
│ │ │ │ │ ├── dev.pp
│ │ │ │ │ ├── dir.pp
│ │ │ │ │ ├── disk_cache.pp
│ │ │ │ │ ├── event.pp
│ │ │ │ │ ├── expires.pp
│ │ │ │ │ ├── fastcgi.pp
│ │ │ │ │ ├── fcgid.pp
│ │ │ │ │ ├── headers.pp
│ │ │ │ │ ├── include.pp
│ │ │ │ │ ├── info.pp
│ │ │ │ │ ├── itk.pp
│ │ │ │ │ ├── ldap.pp
│ │ │ │ │ ├── mime.pp
│ │ │ │ │ ├── mime_magic.pp
│ │ │ │ │ ├── negotiation.pp
│ │ │ │ │ ├── nss.pp
│ │ │ │ │ ├── pagespeed.pp
│ │ │ │ │ ├── passenger.pp
│ │ │ │ │ ├── perl.pp
│ │ │ │ │ ├── peruser.pp
│ │ │ │ │ ├── php.pp
│ │ │ │ │ ├── prefork.pp
│ │ │ │ │ ├── proxy.pp
│ │ │ │ │ ├── proxy_ajp.pp
│ │ │ │ │ ├── proxy_balancer.pp
│ │ │ │ │ ├── proxy_html.pp
│ │ │ │ │ ├── proxy_http.pp
│ │ │ │ │ ├── python.pp
│ │ │ │ │ ├── reqtimeout.pp
│ │ │ │ │ ├── rewrite.pp
│ │ │ │ │ ├── rpaf.pp
│ │ │ │ │ ├── setenvif.pp
│ │ │ │ │ ├── speling.pp
│ │ │ │ │ ├── ssl.pp
│ │ │ │ │ ├── status.pp
│ │ │ │ │ ├── suexec.pp
│ │ │ │ │ ├── suphp.pp
│ │ │ │ │ ├── userdir.pp
│ │ │ │ │ ├── vhost_alias.pp
│ │ │ │ │ ├── worker.pp
│ │ │ │ │ ├── wsgi.pp
│ │ │ │ │ └── xsendfile.pp
│ │ │ │ ├── mpm.pp
│ │ │ │ ├── namevirtualhost.pp
│ │ │ │ ├── package.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── peruser
│ │ │ │ │ ├── multiplexer.pp
│ │ │ │ │ └── processor.pp
│ │ │ │ ├── php.pp
│ │ │ │ ├── proxy.pp
│ │ │ │ ├── python.pp
│ │ │ │ ├── service.pp
│ │ │ │ ├── ssl.pp
│ │ │ │ ├── version.pp
│ │ │ │ └── vhost.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── apache_parameters_spec.rb
│ │ │ │ │ ├── apache_ssl_spec.rb
│ │ │ │ │ ├── basic_spec.rb
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ ├── default_mods_spec.rb
│ │ │ │ │ ├── itk_spec.rb
│ │ │ │ │ ├── mod_dav_svn_spec.rb
│ │ │ │ │ ├── mod_deflate_spec.rb
│ │ │ │ │ ├── mod_fcgid_spec.rb
│ │ │ │ │ ├── mod_mime_spec.rb
│ │ │ │ │ ├── mod_negotiation_spec.rb
│ │ │ │ │ ├── mod_pagespeed_spec.rb
│ │ │ │ │ ├── mod_passenger_spec.rb
│ │ │ │ │ ├── mod_php_spec.rb
│ │ │ │ │ ├── mod_proxy_html_spec.rb
│ │ │ │ │ ├── mod_suphp_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── debian-607-x64.yml
│ │ │ │ │ │ ├── debian-70rc1-x64.yml
│ │ │ │ │ │ ├── debian-73-i386.yml
│ │ │ │ │ │ ├── debian-73-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── sles-11sp1-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-1310-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ │ ├── prefork_worker_spec.rb
│ │ │ │ │ ├── service_spec.rb
│ │ │ │ │ ├── unsupported_spec.rb
│ │ │ │ │ ├── version.rb
│ │ │ │ │ └── vhost_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ ├── apache_spec.rb
│ │ │ │ │ ├── dev_spec.rb
│ │ │ │ │ ├── mod
│ │ │ │ │ │ ├── auth_kerb_spec.rb
│ │ │ │ │ │ ├── authnz_ldap_spec.rb
│ │ │ │ │ │ ├── dav_svn_spec.rb
│ │ │ │ │ │ ├── deflate_spec.rb
│ │ │ │ │ │ ├── dev_spec.rb
│ │ │ │ │ │ ├── dir_spec.rb
│ │ │ │ │ │ ├── event_spec.rb
│ │ │ │ │ │ ├── fastcgi_spec.rb
│ │ │ │ │ │ ├── fcgid_spec.rb
│ │ │ │ │ │ ├── info_spec.rb
│ │ │ │ │ │ ├── itk_spec.rb
│ │ │ │ │ │ ├── mime_magic_spec.rb
│ │ │ │ │ │ ├── mime_spec.rb
│ │ │ │ │ │ ├── negotiation_spec.rb
│ │ │ │ │ │ ├── pagespeed_spec.rb
│ │ │ │ │ │ ├── passenger_spec.rb
│ │ │ │ │ │ ├── perl_spec.rb
│ │ │ │ │ │ ├── peruser_spec.rb
│ │ │ │ │ │ ├── php_spec.rb
│ │ │ │ │ │ ├── prefork_spec.rb
│ │ │ │ │ │ ├── proxy_html_spec.rb
│ │ │ │ │ │ ├── python_spec.rb
│ │ │ │ │ │ ├── rpaf_spec.rb
│ │ │ │ │ │ ├── speling_spec.rb
│ │ │ │ │ │ ├── ssl_spec.rb
│ │ │ │ │ │ ├── status_spec.rb
│ │ │ │ │ │ ├── suphp_spec.rb
│ │ │ │ │ │ ├── worker_spec.rb
│ │ │ │ │ │ └── wsgi_spec.rb
│ │ │ │ │ ├── params_spec.rb
│ │ │ │ │ └── service_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── fastcgi_server_spec.rb
│ │ │ │ │ ├── mod_spec.rb
│ │ │ │ │ └── vhost_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── files
│ │ │ │ │ │ ├── negotiation.conf
│ │ │ │ │ │ └── spec
│ │ │ │ │ ├── modules
│ │ │ │ │ │ └── site_apache
│ │ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ └── fake.conf.erb
│ │ │ │ │ └── templates
│ │ │ │ │ │ └── negotiation.conf.erb
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ └── provider
│ │ │ │ │ └── a2mod
│ │ │ │ │ └── gentoo_spec.rb
│ │ │ ├── templates
│ │ │ │ ├── confd
│ │ │ │ │ └── no-accf.conf.erb
│ │ │ │ ├── fastcgi
│ │ │ │ │ └── server.erb
│ │ │ │ ├── httpd.conf.erb
│ │ │ │ ├── listen.erb
│ │ │ │ ├── mod
│ │ │ │ │ ├── alias.conf.erb
│ │ │ │ │ ├── authnz_ldap.conf.erb
│ │ │ │ │ ├── autoindex.conf.erb
│ │ │ │ │ ├── cgid.conf.erb
│ │ │ │ │ ├── dav_fs.conf.erb
│ │ │ │ │ ├── deflate.conf.erb
│ │ │ │ │ ├── dir.conf.erb
│ │ │ │ │ ├── disk_cache.conf.erb
│ │ │ │ │ ├── event.conf.erb
│ │ │ │ │ ├── fastcgi.conf.erb
│ │ │ │ │ ├── fcgid.conf.erb
│ │ │ │ │ ├── info.conf.erb
│ │ │ │ │ ├── itk.conf.erb
│ │ │ │ │ ├── ldap.conf.erb
│ │ │ │ │ ├── load.erb
│ │ │ │ │ ├── mime.conf.erb
│ │ │ │ │ ├── mime_magic.conf.erb
│ │ │ │ │ ├── mpm_event.conf.erb
│ │ │ │ │ ├── negotiation.conf.erb
│ │ │ │ │ ├── nss.conf.erb
│ │ │ │ │ ├── pagespeed.conf.erb
│ │ │ │ │ ├── passenger.conf.erb
│ │ │ │ │ ├── peruser.conf.erb
│ │ │ │ │ ├── php5.conf.erb
│ │ │ │ │ ├── prefork.conf.erb
│ │ │ │ │ ├── proxy.conf.erb
│ │ │ │ │ ├── proxy_html.conf.erb
│ │ │ │ │ ├── reqtimeout.conf.erb
│ │ │ │ │ ├── rpaf.conf.erb
│ │ │ │ │ ├── setenvif.conf.erb
│ │ │ │ │ ├── ssl.conf.erb
│ │ │ │ │ ├── status.conf.erb
│ │ │ │ │ ├── suphp.conf.erb
│ │ │ │ │ ├── userdir.conf.erb
│ │ │ │ │ ├── worker.conf.erb
│ │ │ │ │ └── wsgi.conf.erb
│ │ │ │ ├── namevirtualhost.erb
│ │ │ │ ├── ports_header.erb
│ │ │ │ ├── vhost.conf.erb
│ │ │ │ └── vhost
│ │ │ │ │ ├── _action.erb
│ │ │ │ │ ├── _aliases.erb
│ │ │ │ │ ├── _block.erb
│ │ │ │ │ ├── _custom_fragment.erb
│ │ │ │ │ ├── _directories.erb
│ │ │ │ │ ├── _error_document.erb
│ │ │ │ │ ├── _fastcgi.erb
│ │ │ │ │ ├── _header.erb
│ │ │ │ │ ├── _itk.erb
│ │ │ │ │ ├── _php_admin.erb
│ │ │ │ │ ├── _proxy.erb
│ │ │ │ │ ├── _rack.erb
│ │ │ │ │ ├── _redirect.erb
│ │ │ │ │ ├── _requestheader.erb
│ │ │ │ │ ├── _rewrite.erb
│ │ │ │ │ ├── _scriptalias.erb
│ │ │ │ │ ├── _serveralias.erb
│ │ │ │ │ ├── _setenv.erb
│ │ │ │ │ ├── _ssl.erb
│ │ │ │ │ ├── _suexec.erb
│ │ │ │ │ ├── _suphp.erb
│ │ │ │ │ └── _wsgi.erb
│ │ │ └── tests
│ │ │ │ ├── apache.pp
│ │ │ │ ├── dev.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── mod_load_params.pp
│ │ │ │ ├── mods.pp
│ │ │ │ ├── mods_custom.pp
│ │ │ │ ├── php.pp
│ │ │ │ ├── vhost.pp
│ │ │ │ ├── vhost_directories.pp
│ │ │ │ ├── vhost_ip_based.pp
│ │ │ │ ├── vhost_ssl.pp
│ │ │ │ └── vhosts_without_listen.pp
│ │ ├── apt
│ │ │ ├── .fixtures.yml
│ │ │ ├── .project
│ │ │ ├── .puppet-lint.rc
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── backports.pp
│ │ │ │ ├── builddep.pp
│ │ │ │ ├── conf.pp
│ │ │ │ ├── debian
│ │ │ │ │ ├── testing.pp
│ │ │ │ │ └── unstable.pp
│ │ │ │ ├── force.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── key.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── pin.pp
│ │ │ │ ├── ppa.pp
│ │ │ │ ├── release.pp
│ │ │ │ ├── source.pp
│ │ │ │ ├── unattended_upgrades.pp
│ │ │ │ └── update.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── apt_builddep_spec.rb
│ │ │ │ │ ├── apt_key_spec.rb
│ │ │ │ │ ├── apt_ppa_spec.rb
│ │ │ │ │ ├── apt_source_spec.rb
│ │ │ │ │ ├── apt_spec.rb
│ │ │ │ │ ├── backports_spec.rb
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ ├── conf_spec.rb
│ │ │ │ │ ├── force_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── debian-70rc1-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ └── ubuntu-server-12042-x64.yml
│ │ │ │ │ ├── pin_spec.rb
│ │ │ │ │ ├── release_spec.rb
│ │ │ │ │ ├── unattended_upgrade_spec.rb
│ │ │ │ │ └── unsupported_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ ├── apt_spec.rb
│ │ │ │ │ ├── backports_spec.rb
│ │ │ │ │ ├── debian_testing_spec.rb
│ │ │ │ │ ├── debian_unstable_spec.rb
│ │ │ │ │ ├── params_spec.rb
│ │ │ │ │ ├── release_spec.rb
│ │ │ │ │ └── unattended_upgrades_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── builddep_spec.rb
│ │ │ │ │ ├── conf_spec.rb
│ │ │ │ │ ├── force_spec.rb
│ │ │ │ │ ├── key_spec.rb
│ │ │ │ │ ├── pin_spec.rb
│ │ │ │ │ ├── ppa_spec.rb
│ │ │ │ │ └── source_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── spec_helper_acceptance.rb
│ │ │ ├── templates
│ │ │ │ ├── 10periodic.erb
│ │ │ │ ├── 50unattended-upgrades.erb
│ │ │ │ ├── pin.pref.erb
│ │ │ │ └── source.list.erb
│ │ │ └── tests
│ │ │ │ ├── builddep.pp
│ │ │ │ ├── debian
│ │ │ │ ├── testing.pp
│ │ │ │ └── unstable.pp
│ │ │ │ ├── force.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── key.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── pin.pp
│ │ │ │ ├── ppa.pp
│ │ │ │ ├── release.pp
│ │ │ │ ├── source.pp
│ │ │ │ └── unattended_upgrades.pp
│ │ ├── beanstalkd
│ │ │ ├── .travis.yml
│ │ │ ├── Gemfile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ └── init.pp
│ │ │ ├── run-tests.sh
│ │ │ ├── spec
│ │ │ │ ├── defines
│ │ │ │ │ └── config_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── manifests
│ │ │ │ │ │ └── site.pp
│ │ │ │ │ └── modules
│ │ │ │ │ │ └── beanstalkd
│ │ │ │ │ │ ├── manifests
│ │ │ │ │ │ └── init.pp
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ ├── debian
│ │ │ │ │ │ └── beanstalkd_default.erb
│ │ │ │ │ │ └── redhat
│ │ │ │ │ │ └── beanstalkd_sysconfig.erb
│ │ │ │ └── spec_helper.rb
│ │ │ └── templates
│ │ │ │ ├── debian
│ │ │ │ └── beanstalkd_default.erb
│ │ │ │ └── redhat
│ │ │ │ └── beanstalkd_sysconfig.erb
│ │ ├── composer
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ └── facter
│ │ │ │ │ └── composer_home.rb
│ │ │ ├── manifests
│ │ │ │ ├── exec.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ └── project.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ ├── composer_params_spec.rb
│ │ │ │ │ └── composer_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── composer_exec_spec.rb
│ │ │ │ │ └── composer_project_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ │ └── manifests
│ │ │ │ │ │ └── site.pp
│ │ │ │ ├── spec.opts
│ │ │ │ └── spec_helper.rb
│ │ │ ├── templates
│ │ │ │ └── exec.erb
│ │ │ └── tests
│ │ │ │ ├── init.pp
│ │ │ │ └── project.pp
│ │ ├── concat
│ │ │ ├── .fixtures.yml
│ │ │ ├── .gitattributes
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── files
│ │ │ │ ├── concatfragments.rb
│ │ │ │ └── concatfragments.sh
│ │ │ ├── lib
│ │ │ │ └── facter
│ │ │ │ │ └── concat_basedir.rb
│ │ │ ├── manifests
│ │ │ │ ├── fragment.pp
│ │ │ │ ├── init.pp
│ │ │ │ └── setup.pp
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── backup_spec.rb
│ │ │ │ │ ├── concat_spec.rb
│ │ │ │ │ ├── deprecation_warnings_spec.rb
│ │ │ │ │ ├── empty_spec.rb
│ │ │ │ │ ├── fragment_source_spec.rb
│ │ │ │ │ ├── newline_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── aix-71-vcloud.yml
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── debian-607-x64.yml
│ │ │ │ │ │ ├── debian-70rc1-x64.yml
│ │ │ │ │ │ ├── debian-73-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── sles-11-x64.yml
│ │ │ │ │ │ ├── sles-11sp1-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ │ ├── order_spec.rb
│ │ │ │ │ ├── quoted_paths_spec.rb
│ │ │ │ │ ├── replace_spec.rb
│ │ │ │ │ ├── symbolic_name_spec.rb
│ │ │ │ │ └── warn_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── classes
│ │ │ │ │ └── concat_setup_spec.rb
│ │ │ │ │ ├── defines
│ │ │ │ │ ├── concat_fragment_spec.rb
│ │ │ │ │ └── concat_spec.rb
│ │ │ │ │ └── facts
│ │ │ │ │ └── concat_basedir_spec.rb
│ │ │ └── tests
│ │ │ │ ├── fragment.pp
│ │ │ │ └── init.pp
│ │ ├── elasticsearch
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── CONTRIBUTORS
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── java.pp
│ │ │ │ ├── package.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── plugin.pp
│ │ │ │ ├── python.pp
│ │ │ │ ├── ruby.pp
│ │ │ │ ├── service.pp
│ │ │ │ ├── service
│ │ │ │ │ └── init.pp
│ │ │ │ └── template.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ ├── 001_elasticsearch_init_debian_spec.rb
│ │ │ │ │ ├── 002_elasticsearch_init_redhat_spec.rb
│ │ │ │ │ ├── 003_elasticsearch_init_unknown_spec.rb
│ │ │ │ │ ├── 004_elasticsearch_init_config_spec.rb
│ │ │ │ │ └── 005_elasticsearch_java_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── 001_elasticsearch_python_spec.rb
│ │ │ │ │ ├── 002_elasticsearch_ruby_spec.rb
│ │ │ │ │ ├── 003_elasticsearch_template_spec.rb
│ │ │ │ │ └── 004_elasticsearch_plugin_spec.rb
│ │ │ │ ├── lib
│ │ │ │ │ ├── parser_validate_task.rb
│ │ │ │ │ └── template_check_task.rb
│ │ │ │ └── spec_helper.rb
│ │ │ └── templates
│ │ │ │ └── etc
│ │ │ │ ├── elasticsearch
│ │ │ │ └── elasticsearch.yml.erb
│ │ │ │ ├── init.d
│ │ │ │ ├── elasticsearch.Debian.erb
│ │ │ │ └── elasticsearch.RedHat.erb
│ │ │ │ └── sysconfig
│ │ │ │ └── defaults.erb
│ │ ├── epel
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── checksums.json
│ │ │ ├── files
│ │ │ │ ├── RPM-GPG-KEY-EPEL-5
│ │ │ │ ├── RPM-GPG-KEY-EPEL-6
│ │ │ │ └── RPM-GPG-KEY-EPEL-7
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ └── rpm_gpg_key.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ ├── epel_spec.rb
│ │ │ │ │ ├── shared_base.rb
│ │ │ │ │ ├── shared_debuginfo.rb
│ │ │ │ │ ├── shared_gpgkey.rb
│ │ │ │ │ ├── shared_source.rb
│ │ │ │ │ ├── shared_testing.rb
│ │ │ │ │ ├── shared_testing_debuginfo.rb
│ │ │ │ │ └── shared_testing_source.rb
│ │ │ │ ├── defines
│ │ │ │ │ └── rpm_gpg_key_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_system.rb
│ │ │ │ └── system
│ │ │ │ │ ├── basic_spec.rb
│ │ │ │ │ └── usage_spec.rb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── erlang
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .rspec
│ │ │ ├── .travis.yml
│ │ │ ├── Gemfile
│ │ │ ├── Gemfile.lock
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ └── repo
│ │ │ │ │ ├── apt.pp
│ │ │ │ │ └── yum.pp
│ │ │ └── spec
│ │ │ │ ├── classes
│ │ │ │ └── erlang_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_system.rb
│ │ │ │ └── system
│ │ │ │ └── erlang_spec.rb
│ │ ├── firewall
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ ├── ip6tables_version.rb
│ │ │ │ │ ├── iptables_persistent_version.rb
│ │ │ │ │ └── iptables_version.rb
│ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── firewall.rb
│ │ │ │ │ ├── firewall
│ │ │ │ │ │ ├── ip6tables.rb
│ │ │ │ │ │ └── iptables.rb
│ │ │ │ │ └── firewallchain
│ │ │ │ │ │ └── iptables_chain.rb
│ │ │ │ │ ├── type
│ │ │ │ │ ├── firewall.rb
│ │ │ │ │ └── firewallchain.rb
│ │ │ │ │ └── util
│ │ │ │ │ ├── firewall.rb
│ │ │ │ │ └── ipcidr.rb
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ ├── linux.pp
│ │ │ │ └── linux
│ │ │ │ │ ├── archlinux.pp
│ │ │ │ │ ├── debian.pp
│ │ │ │ │ └── redhat.pp
│ │ │ ├── metadata.json
│ │ │ └── spec
│ │ │ │ ├── acceptance
│ │ │ │ ├── change_source_spec.rb
│ │ │ │ ├── class_spec.rb
│ │ │ │ ├── connlimit_spec.rb
│ │ │ │ ├── connmark_spec.rb
│ │ │ │ ├── firewall_spec.rb
│ │ │ │ ├── firewallchain_spec.rb
│ │ │ │ ├── ip6_fragment_spec.rb
│ │ │ │ ├── isfragment_spec.rb
│ │ │ │ ├── nodesets
│ │ │ │ │ ├── centos-59-x64-pe.yml
│ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ ├── centos-64-x64-fusion.yml
│ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ ├── debian-607-x64.yml
│ │ │ │ │ ├── debian-70rc1-x64.yml
│ │ │ │ │ ├── default.yml
│ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ ├── sles-11sp1-x64.yml
│ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ ├── params_spec.rb
│ │ │ │ ├── purge_spec.rb
│ │ │ │ ├── resource_cmd_spec.rb
│ │ │ │ ├── rules_spec.rb
│ │ │ │ ├── socket_spec.rb
│ │ │ │ └── standard_usage_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ ├── ip6tables
│ │ │ │ │ └── conversion_hash.rb
│ │ │ │ └── iptables
│ │ │ │ │ └── conversion_hash.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ ├── classes
│ │ │ │ ├── firewall_linux_archlinux_spec.rb
│ │ │ │ ├── firewall_linux_debian_spec.rb
│ │ │ │ ├── firewall_linux_redhat_spec.rb
│ │ │ │ ├── firewall_linux_spec.rb
│ │ │ │ └── firewall_spec.rb
│ │ │ │ ├── facter
│ │ │ │ ├── iptables_persistent_version_spec.rb
│ │ │ │ └── iptables_spec.rb
│ │ │ │ └── puppet
│ │ │ │ ├── provider
│ │ │ │ ├── iptables_chain_spec.rb
│ │ │ │ └── iptables_spec.rb
│ │ │ │ ├── type
│ │ │ │ ├── firewall_spec.rb
│ │ │ │ └── firewallchain_spec.rb
│ │ │ │ └── util
│ │ │ │ ├── firewall_spec.rb
│ │ │ │ └── ipcidr_spec.rb
│ │ ├── git
│ │ │ ├── .fixtures.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── files
│ │ │ │ └── subtree
│ │ │ │ │ └── bash_completion.sh
│ │ │ ├── lib
│ │ │ │ └── facter
│ │ │ │ │ ├── git_exec_path.rb
│ │ │ │ │ └── git_version.rb
│ │ │ ├── manifests
│ │ │ │ ├── gitosis.pp
│ │ │ │ ├── init.pp
│ │ │ │ └── subtree.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ └── git_subtree_spec.rb
│ │ │ │ └── spec_helper.rb
│ │ │ └── tests
│ │ │ │ ├── gitosis.pp
│ │ │ │ └── init.pp
│ │ ├── java
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ └── params.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── install_spec.rb
│ │ │ │ │ └── nodesets
│ │ │ │ │ │ ├── centos-5-vcloud.yml
│ │ │ │ │ │ ├── centos-59-x64-pe.yml
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-6-vcloud.yml
│ │ │ │ │ │ ├── centos-64-x64-fusion.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── centos-7-vcloud.yml
│ │ │ │ │ │ ├── debian-6-vcloud.yml
│ │ │ │ │ │ ├── debian-607-x64.yml
│ │ │ │ │ │ ├── debian-7-vcloud.yml
│ │ │ │ │ │ ├── debian-70rc1-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── redhat-7-vcloud.yml
│ │ │ │ │ │ ├── sles-11-vcloud.yml
│ │ │ │ │ │ ├── sles-11sp1-x64.yml
│ │ │ │ │ │ ├── solaris-11-vcloud.yml
│ │ │ │ │ │ ├── ubuntu-1004-vcloud.yml
│ │ │ │ │ │ ├── ubuntu-1404-vcloud.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ ├── classes
│ │ │ │ │ └── java_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── spec_helper_acceptance.rb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── mailcatcher
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── Gemfile
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── package.pp
│ │ │ │ └── params.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ └── mailcatcher_spec.rb
│ │ │ │ └── spec_helper.rb
│ │ │ ├── templates
│ │ │ │ └── etc
│ │ │ │ │ └── init
│ │ │ │ │ └── mailcatcher.conf.erb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── mongodb
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ └── mongodb_password.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── mongodb_database
│ │ │ │ │ │ └── mongodb.rb
│ │ │ │ │ ├── mongodb_replset
│ │ │ │ │ │ └── mongo.rb
│ │ │ │ │ └── mongodb_user
│ │ │ │ │ │ └── mongodb.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── mongodb_database.rb
│ │ │ │ │ ├── mongodb_replset.rb
│ │ │ │ │ └── mongodb_user.rb
│ │ │ ├── manifests
│ │ │ │ ├── client.pp
│ │ │ │ ├── client
│ │ │ │ │ └── install.pp
│ │ │ │ ├── db.pp
│ │ │ │ ├── globals.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── replset.pp
│ │ │ │ ├── repo.pp
│ │ │ │ ├── repo
│ │ │ │ │ ├── apt.pp
│ │ │ │ │ └── yum.pp
│ │ │ │ ├── server.pp
│ │ │ │ └── server
│ │ │ │ │ ├── config.pp
│ │ │ │ │ ├── install.pp
│ │ │ │ │ └── service.pp
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-6-vcloud.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── multi-centos-6-vcloud.yml
│ │ │ │ │ │ ├── multi-centos-64-x64.yml
│ │ │ │ │ │ ├── sles-11-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ └── ubuntu-server-12042-x64.yml
│ │ │ │ │ ├── replset_spec.rb
│ │ │ │ │ └── server_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ ├── client_install_spec.rb
│ │ │ │ │ ├── repo_spec.rb
│ │ │ │ │ ├── server_config_spec.rb
│ │ │ │ │ ├── server_install_spec.rb
│ │ │ │ │ └── server_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ └── db_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ ├── spec_helper_system.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── mongodb_password_spec.rb
│ │ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── mongodb_database
│ │ │ │ │ │ └── mongodb_spec.rb
│ │ │ │ │ ├── mongodb_replset
│ │ │ │ │ │ └── mongodb_spec.rb
│ │ │ │ │ └── mongodb_user
│ │ │ │ │ │ └── mongodb_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── mongodb_database_spec.rb
│ │ │ │ │ ├── mongodb_replset_spec.rb
│ │ │ │ │ └── mongodb_user_spec.rb
│ │ │ ├── templates
│ │ │ │ └── mongodb.conf.erb
│ │ │ └── tests
│ │ │ │ ├── globals.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── replicaset.pp
│ │ │ │ └── server.pp
│ │ ├── monitor
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── mount.pp
│ │ │ │ ├── plugin.pp
│ │ │ │ ├── port.pp
│ │ │ │ ├── process.pp
│ │ │ │ └── url.pp
│ │ │ ├── metadata.json
│ │ │ └── spec
│ │ │ │ └── fixtures
│ │ │ │ └── manifests
│ │ │ │ └── site.pp
│ │ ├── mysql
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── TODO
│ │ │ ├── files
│ │ │ │ └── mysqltuner.pl
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ ├── mysql_deepmerge.rb
│ │ │ │ │ │ ├── mysql_password.rb
│ │ │ │ │ │ └── mysql_strip_hash.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── database
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ ├── database_grant
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ ├── database_user
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ ├── mysql.rb
│ │ │ │ │ ├── mysql_database
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ ├── mysql_grant
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ └── mysql_user
│ │ │ │ │ │ └── mysql.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── database.rb
│ │ │ │ │ ├── database_grant.rb
│ │ │ │ │ ├── database_user.rb
│ │ │ │ │ ├── mysql_database.rb
│ │ │ │ │ ├── mysql_grant.rb
│ │ │ │ │ └── mysql_user.rb
│ │ │ ├── manifests
│ │ │ │ ├── backup.pp
│ │ │ │ ├── bindings.pp
│ │ │ │ ├── bindings
│ │ │ │ │ ├── java.pp
│ │ │ │ │ ├── perl.pp
│ │ │ │ │ ├── php.pp
│ │ │ │ │ ├── python.pp
│ │ │ │ │ └── ruby.pp
│ │ │ │ ├── client.pp
│ │ │ │ ├── client
│ │ │ │ │ └── install.pp
│ │ │ │ ├── db.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── server.pp
│ │ │ │ └── server
│ │ │ │ │ ├── account_security.pp
│ │ │ │ │ ├── backup.pp
│ │ │ │ │ ├── config.pp
│ │ │ │ │ ├── install.pp
│ │ │ │ │ ├── monitor.pp
│ │ │ │ │ ├── mysqltuner.pp
│ │ │ │ │ ├── providers.pp
│ │ │ │ │ ├── root_password.pp
│ │ │ │ │ └── service.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── mysql_account_delete_spec.rb
│ │ │ │ │ ├── mysql_backup_spec.rb
│ │ │ │ │ ├── mysql_bindings_spec.rb
│ │ │ │ │ ├── mysql_db_spec.rb
│ │ │ │ │ ├── mysql_server_config_spec.rb
│ │ │ │ │ ├── mysql_server_monitor_spec.rb
│ │ │ │ │ ├── mysql_server_root_password_spec.rb
│ │ │ │ │ ├── mysql_server_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-510-x64.yml
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── sles-11-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ │ ├── types
│ │ │ │ │ │ ├── mysql_database_spec.rb
│ │ │ │ │ │ ├── mysql_grant_spec.rb
│ │ │ │ │ │ └── mysql_user_spec.rb
│ │ │ │ │ └── unsupported_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ ├── mysql_bindings_spec.rb
│ │ │ │ │ ├── mysql_client_spec.rb
│ │ │ │ │ ├── mysql_server_account_security_spec.rb
│ │ │ │ │ ├── mysql_server_backup_spec.rb
│ │ │ │ │ ├── mysql_server_monitor_spec.rb
│ │ │ │ │ ├── mysql_server_mysqltuner_spec.rb
│ │ │ │ │ └── mysql_server_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ └── mysql_db_spec.rb
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── mysql_password_spec.rb
│ │ │ │ │ └── puppet
│ │ │ │ │ ├── functions
│ │ │ │ │ └── mysql_deepmerge_spec.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── database
│ │ │ │ │ │ └── mysql_spec.rb
│ │ │ │ │ ├── database_grant
│ │ │ │ │ │ └── mysql_spec.rb
│ │ │ │ │ ├── database_user
│ │ │ │ │ │ └── mysql_spec.rb
│ │ │ │ │ ├── mysql_database
│ │ │ │ │ │ └── mysql_spec.rb
│ │ │ │ │ └── mysql_user
│ │ │ │ │ │ └── mysql_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── mysql_database_spec.rb
│ │ │ │ │ ├── mysql_grant_spec.rb
│ │ │ │ │ └── mysql_user_spec.rb
│ │ │ ├── templates
│ │ │ │ ├── my.cnf.erb
│ │ │ │ ├── my.cnf.pass.erb
│ │ │ │ ├── my.conf.cnf.erb
│ │ │ │ └── mysqlbackup.sh.erb
│ │ │ └── tests
│ │ │ │ ├── backup.pp
│ │ │ │ ├── bindings.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── java.pp
│ │ │ │ ├── mysql_database.pp
│ │ │ │ ├── mysql_db.pp
│ │ │ │ ├── mysql_grant.pp
│ │ │ │ ├── mysql_user.pp
│ │ │ │ ├── perl.pp
│ │ │ │ ├── python.pp
│ │ │ │ ├── ruby.pp
│ │ │ │ ├── server.pp
│ │ │ │ └── server
│ │ │ │ ├── account_security.pp
│ │ │ │ └── config.pp
│ │ ├── nginx
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── .travis
│ │ │ │ ├── Gemfile
│ │ │ │ └── Rakefile
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── Puppetfile
│ │ │ ├── Puppetfile.lock
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── composer.json
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── package.pp
│ │ │ │ ├── package
│ │ │ │ │ ├── archlinux.pp
│ │ │ │ │ ├── debian.pp
│ │ │ │ │ ├── freebsd.pp
│ │ │ │ │ ├── redhat.pp
│ │ │ │ │ ├── solaris.pp
│ │ │ │ │ └── suse.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── resource
│ │ │ │ │ ├── geo.pp
│ │ │ │ │ ├── location.pp
│ │ │ │ │ ├── mailhost.pp
│ │ │ │ │ ├── map.pp
│ │ │ │ │ ├── upstream.pp
│ │ │ │ │ ├── upstream
│ │ │ │ │ │ └── member.pp
│ │ │ │ │ └── vhost.pp
│ │ │ │ └── service.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ ├── config_spec.rb
│ │ │ │ │ ├── nginx_spec.rb
│ │ │ │ │ ├── package_spec.rb
│ │ │ │ │ ├── params_spec.rb
│ │ │ │ │ └── service_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── resource_geo_spec.rb
│ │ │ │ │ ├── resource_location_spec.rb
│ │ │ │ │ ├── resource_mailhost_spec.rb
│ │ │ │ │ ├── resource_map_spec.rb
│ │ │ │ │ ├── resource_upstream_spec.rb
│ │ │ │ │ └── resource_vhost_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_system.rb
│ │ │ │ └── system
│ │ │ │ │ ├── basic_spec.rb
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ ├── nginx_mail_spec.rb
│ │ │ │ │ ├── nginx_proxy_spec.rb
│ │ │ │ │ └── nginx_vhost_spec.rb
│ │ │ ├── templates
│ │ │ │ ├── conf.d
│ │ │ │ │ ├── geo.erb
│ │ │ │ │ ├── map.erb
│ │ │ │ │ ├── nginx.conf.erb
│ │ │ │ │ ├── proxy.conf.erb
│ │ │ │ │ ├── upstream_header.erb
│ │ │ │ │ ├── upstream_member.erb
│ │ │ │ │ └── upstream_members.erb
│ │ │ │ ├── mailhost
│ │ │ │ │ ├── mailhost.erb
│ │ │ │ │ └── mailhost_ssl.erb
│ │ │ │ └── vhost
│ │ │ │ │ ├── fastcgi_params.erb
│ │ │ │ │ ├── location_footer.erb
│ │ │ │ │ ├── location_header.erb
│ │ │ │ │ ├── locations
│ │ │ │ │ ├── alias.erb
│ │ │ │ │ ├── directory.erb
│ │ │ │ │ ├── empty.erb
│ │ │ │ │ ├── fastcgi.erb
│ │ │ │ │ ├── proxy.erb
│ │ │ │ │ └── stub_status.erb
│ │ │ │ │ ├── vhost_footer.erb
│ │ │ │ │ ├── vhost_header.erb
│ │ │ │ │ ├── vhost_ssl_footer.erb
│ │ │ │ │ └── vhost_ssl_header.erb
│ │ │ └── tests
│ │ │ │ ├── init.pp
│ │ │ │ ├── location_alias.pp
│ │ │ │ ├── upstream.pp
│ │ │ │ ├── vhost.pp
│ │ │ │ └── vhost_ssl.pp
│ │ ├── ntp
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── install.pp
│ │ │ │ ├── params.pp
│ │ │ │ └── service.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── sles-11-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ └── ubuntu-server-12042-x64.yml
│ │ │ │ │ ├── ntp_config_spec.rb
│ │ │ │ │ ├── ntp_install_spec.rb
│ │ │ │ │ ├── ntp_parameters_spec.rb
│ │ │ │ │ ├── ntp_service_spec.rb
│ │ │ │ │ ├── preferred_servers_spec.rb
│ │ │ │ │ ├── restrict_spec.rb
│ │ │ │ │ └── unsupported_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ └── ntp_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ │ └── modules
│ │ │ │ │ │ └── my_ntp
│ │ │ │ │ │ └── templates
│ │ │ │ │ │ └── ntp.conf.erb
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ └── README.markdown
│ │ │ │ │ └── type
│ │ │ │ │ └── README.markdown
│ │ │ ├── templates
│ │ │ │ └── ntp.conf.erb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── php
│ │ │ ├── .fixtures.yml
│ │ │ ├── .gemfile
│ │ │ ├── .project
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ └── facter
│ │ │ │ │ ├── php_fact_extension_dir.rb
│ │ │ │ │ └── php_fact_version.rb
│ │ │ ├── manifests
│ │ │ │ ├── augeas.pp
│ │ │ │ ├── conf.pp
│ │ │ │ ├── devel.pp
│ │ │ │ ├── ini.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── module.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── pear.pp
│ │ │ │ ├── pear
│ │ │ │ │ ├── config.pp
│ │ │ │ │ └── module.pp
│ │ │ │ ├── pecl
│ │ │ │ │ ├── config.pp
│ │ │ │ │ └── module.pp
│ │ │ │ └── spec.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ └── php_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── php_module_spec.rb
│ │ │ │ │ └── php_pear_module_spec.rb
│ │ │ │ └── spec_helper.rb
│ │ │ └── templates
│ │ │ │ ├── extra-ini.erb
│ │ │ │ └── spec.erb
│ │ ├── postgresql
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .project
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── NOTICE
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── files
│ │ │ │ ├── RPM-GPG-KEY-PGDG
│ │ │ │ └── validate_postgresql_connection.sh
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ ├── postgresql_acls_to_resources_hash.rb
│ │ │ │ │ │ ├── postgresql_escape.rb
│ │ │ │ │ │ └── postgresql_password.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── postgresql_conf
│ │ │ │ │ │ └── parsed.rb
│ │ │ │ │ └── postgresql_psql
│ │ │ │ │ │ └── ruby.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── postgresql_conf.rb
│ │ │ │ │ └── postgresql_psql.rb
│ │ │ ├── manifests
│ │ │ │ ├── client.pp
│ │ │ │ ├── globals.pp
│ │ │ │ ├── lib
│ │ │ │ │ ├── devel.pp
│ │ │ │ │ ├── java.pp
│ │ │ │ │ └── python.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── repo.pp
│ │ │ │ ├── repo
│ │ │ │ │ ├── apt_postgresql_org.pp
│ │ │ │ │ └── yum_postgresql_org.pp
│ │ │ │ ├── server.pp
│ │ │ │ ├── server
│ │ │ │ │ ├── config.pp
│ │ │ │ │ ├── config_entry.pp
│ │ │ │ │ ├── contrib.pp
│ │ │ │ │ ├── database.pp
│ │ │ │ │ ├── database_grant.pp
│ │ │ │ │ ├── db.pp
│ │ │ │ │ ├── firewall.pp
│ │ │ │ │ ├── grant.pp
│ │ │ │ │ ├── initdb.pp
│ │ │ │ │ ├── install.pp
│ │ │ │ │ ├── passwd.pp
│ │ │ │ │ ├── pg_hba_rule.pp
│ │ │ │ │ ├── plperl.pp
│ │ │ │ │ ├── reload.pp
│ │ │ │ │ ├── role.pp
│ │ │ │ │ ├── service.pp
│ │ │ │ │ ├── table_grant.pp
│ │ │ │ │ └── tablespace.pp
│ │ │ │ └── validate_db_connection.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── client_spec.rb
│ │ │ │ │ ├── common_patterns_spec.rb
│ │ │ │ │ ├── contrib_spec.rb
│ │ │ │ │ ├── lib
│ │ │ │ │ │ ├── devel_spec.rb
│ │ │ │ │ │ ├── java_spec.rb
│ │ │ │ │ │ └── python_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-510-x64.yml
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── debian-607-x64.yml
│ │ │ │ │ │ ├── debian-73-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ └── ubuntu-server-12042-x64.yml
│ │ │ │ │ ├── postgresql_psql_spec.rb
│ │ │ │ │ ├── server
│ │ │ │ │ │ ├── config_entry_spec.rb
│ │ │ │ │ │ ├── database_grant_spec.rb
│ │ │ │ │ │ ├── database_spec.rb
│ │ │ │ │ │ ├── db_spec.rb
│ │ │ │ │ │ ├── grant_spec.rb
│ │ │ │ │ │ ├── pg_hba_rule_spec.rb
│ │ │ │ │ │ ├── plperl_spec.rb
│ │ │ │ │ │ ├── role_spec.rb
│ │ │ │ │ │ ├── table_grant_spec.rb
│ │ │ │ │ │ └── tablespace_spec.rb
│ │ │ │ │ ├── server_spec.rb
│ │ │ │ │ ├── unsupported_spec.rb
│ │ │ │ │ └── validate_db_connection_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── classes
│ │ │ │ │ ├── client_spec.rb
│ │ │ │ │ ├── globals_spec.rb
│ │ │ │ │ ├── lib
│ │ │ │ │ │ ├── devel_spec.rb
│ │ │ │ │ │ ├── java_spec.rb
│ │ │ │ │ │ └── python_spec.rb
│ │ │ │ │ ├── params_spec.rb
│ │ │ │ │ ├── repo_spec.rb
│ │ │ │ │ ├── server
│ │ │ │ │ │ ├── contrib_spec.rb
│ │ │ │ │ │ ├── initdb_spec.rb
│ │ │ │ │ │ └── plperl_spec.rb
│ │ │ │ │ └── server_spec.rb
│ │ │ │ │ ├── defines
│ │ │ │ │ ├── server
│ │ │ │ │ │ ├── config_entry_spec.rb
│ │ │ │ │ │ ├── database_grant_spec.rb
│ │ │ │ │ │ ├── database_spec.rb
│ │ │ │ │ │ ├── db_spec.rb
│ │ │ │ │ │ ├── grant_spec.rb
│ │ │ │ │ │ ├── pg_hba_rule_spec.rb
│ │ │ │ │ │ ├── role_spec.rb
│ │ │ │ │ │ ├── table_grant_spec.rb
│ │ │ │ │ │ └── tablespace_spec.rb
│ │ │ │ │ └── validate_db_connection_spec.rb
│ │ │ │ │ ├── functions
│ │ │ │ │ ├── postgresql_acls_to_resources_hash_spec.rb
│ │ │ │ │ ├── postgresql_escape_spec.rb
│ │ │ │ │ └── postgresql_password_spec.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ └── postgresql_conf
│ │ │ │ │ │ └── parsed_spec.rb
│ │ │ │ │ ├── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ │ └── postgresql_psql
│ │ │ │ │ │ │ └── ruby_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ │ └── postgresql_psql_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ └── postgresql_conf_spec.rb
│ │ │ └── templates
│ │ │ │ └── pg_hba_rule.conf
│ │ ├── puphpet
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── files
│ │ │ │ └── xdebug_cli_alias.erb
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ ├── hash_key_equals.rb
│ │ │ │ │ │ ├── hash_key_true.rb
│ │ │ │ │ │ ├── value_true.rb
│ │ │ │ │ │ └── values_no_error.rb
│ │ │ │ │ └── provider
│ │ │ │ │ └── package
│ │ │ │ │ └── npm.rb
│ │ │ ├── manifests
│ │ │ │ ├── adminer.pp
│ │ │ │ ├── apache
│ │ │ │ │ ├── fpm.pp
│ │ │ │ │ └── modpagespeed.pp
│ │ │ │ ├── debian
│ │ │ │ │ └── non_free.pp
│ │ │ │ ├── hhvm.pp
│ │ │ │ ├── ini.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── mariadb.pp
│ │ │ │ ├── mysql
│ │ │ │ │ └── db.pp
│ │ │ │ ├── nginx.pp
│ │ │ │ ├── nodejs.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── php
│ │ │ │ │ ├── composer.pp
│ │ │ │ │ ├── extra_repos.pp
│ │ │ │ │ ├── ini.pp
│ │ │ │ │ ├── module.pp
│ │ │ │ │ ├── pear.pp
│ │ │ │ │ ├── pecl.pp
│ │ │ │ │ ├── repos.pp
│ │ │ │ │ ├── xdebug.pp
│ │ │ │ │ └── xhprof.pp
│ │ │ │ ├── phpmyadmin.pp
│ │ │ │ ├── python
│ │ │ │ │ └── pip.pp
│ │ │ │ ├── ssl_cert.pp
│ │ │ │ ├── supervisord.pp
│ │ │ │ ├── xdebug.pp
│ │ │ │ └── xhprof.pp
│ │ │ ├── metadata.json
│ │ │ └── templates
│ │ │ │ ├── apache
│ │ │ │ ├── custom_fragment.erb
│ │ │ │ ├── hhvm-httpd.conf.erb
│ │ │ │ └── mod
│ │ │ │ │ └── spdy
│ │ │ │ │ ├── php-wrapper.erb
│ │ │ │ │ └── spdy_conf.erb
│ │ │ │ ├── nginx
│ │ │ │ └── default_conf.erb
│ │ │ │ └── nodejs
│ │ │ │ └── install.erb
│ │ ├── puppi
│ │ │ ├── .fixtures.yml
│ │ │ ├── .gemfile
│ │ │ ├── .project
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── README_check.md
│ │ │ ├── README_deploy.md
│ │ │ ├── README_info.md
│ │ │ ├── README_log.md
│ │ │ ├── Rakefile
│ │ │ ├── composer.json
│ │ │ ├── files
│ │ │ │ ├── info
│ │ │ │ │ └── readme
│ │ │ │ │ │ ├── readme
│ │ │ │ │ │ └── readme-default
│ │ │ │ ├── mailpuppicheck
│ │ │ │ ├── mcollective
│ │ │ │ │ ├── mc-puppi
│ │ │ │ │ ├── puppi.ddl
│ │ │ │ │ ├── puppi.rb
│ │ │ │ │ ├── puppicheck
│ │ │ │ │ └── puppideploy
│ │ │ │ └── scripts
│ │ │ │ │ ├── archive.sh
│ │ │ │ │ ├── check_project.sh
│ │ │ │ │ ├── checkwardir.sh
│ │ │ │ │ ├── clean_filelist.sh
│ │ │ │ │ ├── database.sh
│ │ │ │ │ ├── delete.sh
│ │ │ │ │ ├── deploy.sh
│ │ │ │ │ ├── deploy_files.sh
│ │ │ │ │ ├── execute.sh
│ │ │ │ │ ├── firewall.sh
│ │ │ │ │ ├── functions
│ │ │ │ │ ├── get_file.sh
│ │ │ │ │ ├── get_filesfromlist.sh
│ │ │ │ │ ├── get_maven_files.sh
│ │ │ │ │ ├── get_metadata.sh
│ │ │ │ │ ├── git.sh
│ │ │ │ │ ├── header
│ │ │ │ │ ├── predeploy.sh
│ │ │ │ │ ├── predeploy_tar.sh
│ │ │ │ │ ├── report_mail.sh
│ │ │ │ │ ├── report_mongo.sh
│ │ │ │ │ ├── service.sh
│ │ │ │ │ ├── svn.sh
│ │ │ │ │ ├── wait.sh
│ │ │ │ │ ├── yant.sh
│ │ │ │ │ └── yum.sh
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ ├── last_run.rb
│ │ │ │ │ ├── puppi_projects.rb
│ │ │ │ │ └── windows_common_appdata.rb
│ │ │ │ └── puppet
│ │ │ │ │ └── parser
│ │ │ │ │ └── functions
│ │ │ │ │ ├── any2bool.rb
│ │ │ │ │ ├── bool2ensure.rb
│ │ │ │ │ ├── get_class_args.rb
│ │ │ │ │ ├── get_magicvar.rb
│ │ │ │ │ ├── get_module_path.rb
│ │ │ │ │ ├── nslookup.rb
│ │ │ │ │ ├── options_lookup.rb
│ │ │ │ │ ├── params_lookup.rb
│ │ │ │ │ └── url_parse.rb
│ │ │ ├── manifests
│ │ │ │ ├── check.pp
│ │ │ │ ├── configure.pp
│ │ │ │ ├── dependencies.pp
│ │ │ │ ├── deploy.pp
│ │ │ │ ├── extras.pp
│ │ │ │ ├── helper.pp
│ │ │ │ ├── helpers.pp
│ │ │ │ ├── info.pp
│ │ │ │ ├── info
│ │ │ │ │ ├── instance.pp
│ │ │ │ │ ├── module.pp
│ │ │ │ │ └── readme.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── initialize.pp
│ │ │ │ ├── install_packages.pp
│ │ │ │ ├── log.pp
│ │ │ │ ├── mcollective
│ │ │ │ │ ├── client.pp
│ │ │ │ │ └── server.pp
│ │ │ │ ├── netinstall.pp
│ │ │ │ ├── one.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── project.pp
│ │ │ │ ├── project
│ │ │ │ │ ├── README
│ │ │ │ │ ├── archive.pp
│ │ │ │ │ ├── builder.pp
│ │ │ │ │ ├── dir.pp
│ │ │ │ │ ├── files.pp
│ │ │ │ │ ├── git.pp
│ │ │ │ │ ├── maven.pp
│ │ │ │ │ ├── mysql.pp
│ │ │ │ │ ├── service.pp
│ │ │ │ │ ├── svn.pp
│ │ │ │ │ ├── tar.pp
│ │ │ │ │ ├── war.pp
│ │ │ │ │ ├── y4maven.pp
│ │ │ │ │ └── yum.pp
│ │ │ │ ├── report.pp
│ │ │ │ ├── rollback.pp
│ │ │ │ ├── run.pp
│ │ │ │ ├── runscript.pp
│ │ │ │ ├── skel.pp
│ │ │ │ ├── todo.pp
│ │ │ │ ├── two.pp
│ │ │ │ └── ze.pp
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ └── puppi_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── puppi_check_spec.rb
│ │ │ │ │ ├── puppi_deploy_spec.rb
│ │ │ │ │ ├── puppi_helper_spec.rb
│ │ │ │ │ ├── puppi_info_spec.rb
│ │ │ │ │ ├── puppi_initialize_spec.rb
│ │ │ │ │ ├── puppi_log_spec.rb
│ │ │ │ │ ├── puppi_project_spec.rb
│ │ │ │ │ ├── puppi_report_spec.rb
│ │ │ │ │ ├── puppi_rollback_spec.rb
│ │ │ │ │ ├── puppi_run_spec.rb
│ │ │ │ │ ├── puppi_todo_spec.rb
│ │ │ │ │ └── puppi_ze_spec.rb
│ │ │ │ ├── functions
│ │ │ │ │ ├── any2bool_spec.rb
│ │ │ │ │ ├── bool2ensure_spec.rb
│ │ │ │ │ └── url_parse_spec.rb
│ │ │ │ └── spec_helper.rb
│ │ │ └── templates
│ │ │ │ ├── helpers
│ │ │ │ └── standard.yml.erb
│ │ │ │ ├── info.erb
│ │ │ │ ├── info
│ │ │ │ ├── instance.erb
│ │ │ │ ├── module.erb
│ │ │ │ ├── puppet.erb
│ │ │ │ └── readme.erb
│ │ │ │ ├── install_packages.erb
│ │ │ │ ├── log.erb
│ │ │ │ ├── project
│ │ │ │ └── config.erb
│ │ │ │ ├── puppi.conf.erb
│ │ │ │ ├── puppi.erb
│ │ │ │ ├── puppi_clean.erb
│ │ │ │ └── todo.erb
│ │ ├── pyenv
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── feature
│ │ │ │ │ └── pyenv.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ └── pyenv_python
│ │ │ │ │ │ └── pyenv.rb
│ │ │ │ │ └── type
│ │ │ │ │ └── pyenv_python.rb
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ └── params.pp
│ │ │ └── metadata.json
│ │ ├── rabbitmq
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── TODO
│ │ │ ├── files
│ │ │ │ ├── README.markdown
│ │ │ │ └── plugins
│ │ │ │ │ ├── amqp_client-2.3.1.ez
│ │ │ │ │ └── rabbit_stomp-2.3.1.ez
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ └── rabbitmq_erlang_cookie.rb
│ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── rabbitmq_exchange
│ │ │ │ │ │ └── rabbitmqadmin.rb
│ │ │ │ │ ├── rabbitmq_plugin
│ │ │ │ │ │ └── rabbitmqplugins.rb
│ │ │ │ │ ├── rabbitmq_user
│ │ │ │ │ │ └── rabbitmqctl.rb
│ │ │ │ │ ├── rabbitmq_user_permissions
│ │ │ │ │ │ └── rabbitmqctl.rb
│ │ │ │ │ └── rabbitmq_vhost
│ │ │ │ │ │ └── rabbitmqctl.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── rabbitmq_exchange.rb
│ │ │ │ │ ├── rabbitmq_plugin.rb
│ │ │ │ │ ├── rabbitmq_user.rb
│ │ │ │ │ ├── rabbitmq_user_permissions.rb
│ │ │ │ │ └── rabbitmq_vhost.rb
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── install.pp
│ │ │ │ ├── install
│ │ │ │ │ └── rabbitmqadmin.pp
│ │ │ │ ├── management.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── policy.pp
│ │ │ │ ├── repo
│ │ │ │ │ ├── apt.pp
│ │ │ │ │ └── rhel.pp
│ │ │ │ ├── server.pp
│ │ │ │ └── service.pp
│ │ │ ├── spec
│ │ │ │ ├── README.markdown
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ ├── clustering_spec.rb
│ │ │ │ │ ├── delete_guest_user_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── ubuntu-server-1310-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1404-x64.yml
│ │ │ │ │ ├── rabbitmqadmin_spec.rb
│ │ │ │ │ └── server_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ └── rabbitmq_spec.rb
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── facts
│ │ │ │ │ └── rabbitmq_erlang_cookie_spec.rb
│ │ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── rabbitmq_exchange
│ │ │ │ │ │ └── rabbitmqadmin_spec.rb
│ │ │ │ │ ├── rabbitmq_user
│ │ │ │ │ │ └── rabbitmqctl_spec.rb
│ │ │ │ │ ├── rabbitmq_user_permissions
│ │ │ │ │ │ └── rabbitmqctl_spec.rb
│ │ │ │ │ └── rabbitmq_vhost
│ │ │ │ │ │ └── rabbitmqctl_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── rabbitmq_exchange_spec.rb
│ │ │ │ │ ├── rabbitmq_user_permissions_spec.rb
│ │ │ │ │ ├── rabbitmq_user_spec.rb
│ │ │ │ │ └── rabbitmq_vhost_spec.rb
│ │ │ ├── templates
│ │ │ │ ├── README.markdown
│ │ │ │ ├── rabbitmq-env.conf.erb
│ │ │ │ └── rabbitmq.config.erb
│ │ │ └── tests
│ │ │ │ ├── erlang_deps.pp
│ │ │ │ ├── full.pp
│ │ │ │ ├── permissions
│ │ │ │ └── add.pp
│ │ │ │ ├── plugin.pp
│ │ │ │ ├── repo
│ │ │ │ └── apt.pp
│ │ │ │ ├── server.pp
│ │ │ │ ├── service.pp
│ │ │ │ ├── site.pp
│ │ │ │ ├── user
│ │ │ │ └── add.pp
│ │ │ │ └── vhosts
│ │ │ │ └── add.pp
│ │ ├── redis
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── Vagrantfile
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ └── params.pp
│ │ │ ├── spec
│ │ │ │ └── spec_helper.rb
│ │ │ ├── templates
│ │ │ │ ├── redis.debian.conf.erb
│ │ │ │ ├── redis.logrotate.erb
│ │ │ │ └── redis.rhel.conf.erb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── rvm
│ │ │ ├── Dockerfile
│ │ │ ├── Gemfile
│ │ │ ├── Gemfile.lock
│ │ │ ├── LICENSE
│ │ │ ├── Puppetfile
│ │ │ ├── Puppetfile.lock
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── checksums.json
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ ├── rvm_installed.rb
│ │ │ │ │ └── rvm_version.rb
│ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── rvm_alias
│ │ │ │ │ │ └── alias.rb
│ │ │ │ │ ├── rvm_gem
│ │ │ │ │ │ └── gem.rb
│ │ │ │ │ ├── rvm_gemset
│ │ │ │ │ │ └── gemset.rb
│ │ │ │ │ ├── rvm_system_ruby
│ │ │ │ │ │ └── rvm_system_ruby.rb
│ │ │ │ │ └── rvm_wrapper
│ │ │ │ │ │ └── wrapper.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── rvm_alias.rb
│ │ │ │ │ ├── rvm_gem.rb
│ │ │ │ │ ├── rvm_gemset.rb
│ │ │ │ │ ├── rvm_system_ruby.rb
│ │ │ │ │ └── rvm_wrapper.rb
│ │ │ ├── manifests
│ │ │ │ ├── dependencies.pp
│ │ │ │ ├── dependencies
│ │ │ │ │ ├── centos.pp
│ │ │ │ │ ├── oraclelinux.pp
│ │ │ │ │ └── ubuntu.pp
│ │ │ │ ├── gpg.pp
│ │ │ │ ├── group.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── passenger
│ │ │ │ │ ├── apache.pp
│ │ │ │ │ ├── dependencies.pp
│ │ │ │ │ ├── dependencies
│ │ │ │ │ │ ├── centos.pp
│ │ │ │ │ │ ├── oraclelinux.pp
│ │ │ │ │ │ └── ubuntu.pp
│ │ │ │ │ └── gem.pp
│ │ │ │ ├── rvmrc.pp
│ │ │ │ ├── system.pp
│ │ │ │ └── system_user.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── centos-65-x64-docker.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── debian-73-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ └── ubuntu-server-1310-x64.yml
│ │ │ │ │ └── rvm_system_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ ├── dependencies_spec.rb
│ │ │ │ │ ├── gpg_spec.rb
│ │ │ │ │ ├── init_spec.rb
│ │ │ │ │ ├── rvmrc_spec.rb
│ │ │ │ │ └── system_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── rvm_alias_spec.rb
│ │ │ │ │ ├── rvm_gem_spec.rb
│ │ │ │ │ ├── rvm_gemset_spec.rb
│ │ │ │ │ ├── rvm_system_ruby_spec.rb
│ │ │ │ │ ├── rvm_wrapper_spec.rb
│ │ │ │ │ └── system_user_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── spec_helper_acceptance.rb
│ │ │ ├── templates
│ │ │ │ └── rvmrc.erb
│ │ │ └── tests
│ │ │ │ ├── common.yaml
│ │ │ │ ├── init.pp
│ │ │ │ └── site.pp
│ │ ├── solr
│ │ │ ├── .fixtures.yml
│ │ │ ├── .gemfile
│ │ │ ├── .project
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.markdown
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ └── manifests
│ │ │ │ ├── init.pp
│ │ │ │ ├── install.pp
│ │ │ │ └── params.pp
│ │ ├── sqlite
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── manifests
│ │ │ │ ├── db.pp
│ │ │ │ └── init.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── spec.opts
│ │ │ │ └── spec_helper.rb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── staging
│ │ │ ├── .fixtures.yml
│ │ │ ├── .travis.yml
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── Vagrantfile
│ │ │ ├── docs
│ │ │ │ ├── deploy.html
│ │ │ │ ├── extract.html
│ │ │ │ ├── file.html
│ │ │ │ └── init.html
│ │ │ ├── files
│ │ │ │ ├── sample
│ │ │ │ ├── sample.tar.bz2
│ │ │ │ └── sample.tar.gz
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ ├── staging_http_get.rb
│ │ │ │ │ └── staging_windir.rb
│ │ │ │ └── puppet
│ │ │ │ │ └── parser
│ │ │ │ │ └── functions
│ │ │ │ │ ├── scope_defaults.rb
│ │ │ │ │ └── staging_parse.rb
│ │ │ ├── manifests
│ │ │ │ ├── deploy.pp
│ │ │ │ ├── extract.pp
│ │ │ │ ├── file.pp
│ │ │ │ ├── init.pp
│ │ │ │ └── params.pp
│ │ │ ├── spec
│ │ │ │ ├── defines
│ │ │ │ │ ├── staging_deploy_spec.rb
│ │ │ │ │ ├── staging_extract_spec.rb
│ │ │ │ │ └── staging_file_spec.rb
│ │ │ │ ├── fixtures
│ │ │ │ │ └── hiera.yaml
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── unit
│ │ │ │ │ └── puppet
│ │ │ │ │ └── parser
│ │ │ │ │ └── functions
│ │ │ │ │ ├── scope_defaults_spec.rb
│ │ │ │ │ └── staging_parse_spec.rb
│ │ │ └── tests
│ │ │ │ ├── deploy.pp
│ │ │ │ ├── extract.pp
│ │ │ │ ├── file.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── scope_defaults.pp
│ │ │ │ └── staging_parse.pp
│ │ ├── stdlib
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── README.markdown
│ │ │ ├── README_DEVELOPER.markdown
│ │ │ ├── README_SPECS.markdown
│ │ │ ├── RELEASE_PROCESS.markdown
│ │ │ ├── Rakefile
│ │ │ ├── checksums.json
│ │ │ ├── lib
│ │ │ │ ├── facter
│ │ │ │ │ ├── facter_dot_d.rb
│ │ │ │ │ ├── pe_version.rb
│ │ │ │ │ ├── puppet_vardir.rb
│ │ │ │ │ ├── root_home.rb
│ │ │ │ │ └── util
│ │ │ │ │ │ └── puppet_settings.rb
│ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ ├── abs.rb
│ │ │ │ │ │ ├── any2array.rb
│ │ │ │ │ │ ├── base64.rb
│ │ │ │ │ │ ├── bool2num.rb
│ │ │ │ │ │ ├── bool2str.rb
│ │ │ │ │ │ ├── camelcase.rb
│ │ │ │ │ │ ├── capitalize.rb
│ │ │ │ │ │ ├── chomp.rb
│ │ │ │ │ │ ├── chop.rb
│ │ │ │ │ │ ├── concat.rb
│ │ │ │ │ │ ├── count.rb
│ │ │ │ │ │ ├── deep_merge.rb
│ │ │ │ │ │ ├── defined_with_params.rb
│ │ │ │ │ │ ├── delete.rb
│ │ │ │ │ │ ├── delete_at.rb
│ │ │ │ │ │ ├── delete_undef_values.rb
│ │ │ │ │ │ ├── delete_values.rb
│ │ │ │ │ │ ├── difference.rb
│ │ │ │ │ │ ├── dirname.rb
│ │ │ │ │ │ ├── downcase.rb
│ │ │ │ │ │ ├── empty.rb
│ │ │ │ │ │ ├── ensure_packages.rb
│ │ │ │ │ │ ├── ensure_resource.rb
│ │ │ │ │ │ ├── flatten.rb
│ │ │ │ │ │ ├── floor.rb
│ │ │ │ │ │ ├── fqdn_rotate.rb
│ │ │ │ │ │ ├── get_module_path.rb
│ │ │ │ │ │ ├── getparam.rb
│ │ │ │ │ │ ├── getvar.rb
│ │ │ │ │ │ ├── grep.rb
│ │ │ │ │ │ ├── has_interface_with.rb
│ │ │ │ │ │ ├── has_ip_address.rb
│ │ │ │ │ │ ├── has_ip_network.rb
│ │ │ │ │ │ ├── has_key.rb
│ │ │ │ │ │ ├── hash.rb
│ │ │ │ │ │ ├── intersection.rb
│ │ │ │ │ │ ├── is_array.rb
│ │ │ │ │ │ ├── is_bool.rb
│ │ │ │ │ │ ├── is_domain_name.rb
│ │ │ │ │ │ ├── is_float.rb
│ │ │ │ │ │ ├── is_function_available.rb
│ │ │ │ │ │ ├── is_hash.rb
│ │ │ │ │ │ ├── is_integer.rb
│ │ │ │ │ │ ├── is_ip_address.rb
│ │ │ │ │ │ ├── is_mac_address.rb
│ │ │ │ │ │ ├── is_numeric.rb
│ │ │ │ │ │ ├── is_string.rb
│ │ │ │ │ │ ├── join.rb
│ │ │ │ │ │ ├── join_keys_to_values.rb
│ │ │ │ │ │ ├── keys.rb
│ │ │ │ │ │ ├── loadyaml.rb
│ │ │ │ │ │ ├── lstrip.rb
│ │ │ │ │ │ ├── max.rb
│ │ │ │ │ │ ├── member.rb
│ │ │ │ │ │ ├── merge.rb
│ │ │ │ │ │ ├── min.rb
│ │ │ │ │ │ ├── num2bool.rb
│ │ │ │ │ │ ├── parsejson.rb
│ │ │ │ │ │ ├── parseyaml.rb
│ │ │ │ │ │ ├── pick.rb
│ │ │ │ │ │ ├── pick_default.rb
│ │ │ │ │ │ ├── prefix.rb
│ │ │ │ │ │ ├── private.rb
│ │ │ │ │ │ ├── range.rb
│ │ │ │ │ │ ├── reject.rb
│ │ │ │ │ │ ├── reverse.rb
│ │ │ │ │ │ ├── rstrip.rb
│ │ │ │ │ │ ├── shuffle.rb
│ │ │ │ │ │ ├── size.rb
│ │ │ │ │ │ ├── sort.rb
│ │ │ │ │ │ ├── squeeze.rb
│ │ │ │ │ │ ├── str2bool.rb
│ │ │ │ │ │ ├── str2saltedsha512.rb
│ │ │ │ │ │ ├── strftime.rb
│ │ │ │ │ │ ├── strip.rb
│ │ │ │ │ │ ├── suffix.rb
│ │ │ │ │ │ ├── swapcase.rb
│ │ │ │ │ │ ├── time.rb
│ │ │ │ │ │ ├── to_bytes.rb
│ │ │ │ │ │ ├── type.rb
│ │ │ │ │ │ ├── union.rb
│ │ │ │ │ │ ├── unique.rb
│ │ │ │ │ │ ├── upcase.rb
│ │ │ │ │ │ ├── uriescape.rb
│ │ │ │ │ │ ├── validate_absolute_path.rb
│ │ │ │ │ │ ├── validate_array.rb
│ │ │ │ │ │ ├── validate_augeas.rb
│ │ │ │ │ │ ├── validate_bool.rb
│ │ │ │ │ │ ├── validate_cmd.rb
│ │ │ │ │ │ ├── validate_hash.rb
│ │ │ │ │ │ ├── validate_ipv4_address.rb
│ │ │ │ │ │ ├── validate_ipv6_address.rb
│ │ │ │ │ │ ├── validate_re.rb
│ │ │ │ │ │ ├── validate_slength.rb
│ │ │ │ │ │ ├── validate_string.rb
│ │ │ │ │ │ ├── values.rb
│ │ │ │ │ │ ├── values_at.rb
│ │ │ │ │ │ └── zip.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ └── file_line
│ │ │ │ │ │ └── ruby.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── anchor.rb
│ │ │ │ │ └── file_line.rb
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ └── stages.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── abs_spec.rb
│ │ │ │ │ ├── any2array_spec.rb
│ │ │ │ │ ├── base64_spec.rb
│ │ │ │ │ ├── bool2num_spec.rb
│ │ │ │ │ ├── build_csv.rb
│ │ │ │ │ ├── capitalize_spec.rb
│ │ │ │ │ ├── chomp_spec.rb
│ │ │ │ │ ├── chop_spec.rb
│ │ │ │ │ ├── concat_spec.rb
│ │ │ │ │ ├── count_spec.rb
│ │ │ │ │ ├── deep_merge_spec.rb
│ │ │ │ │ ├── defined_with_params_spec.rb
│ │ │ │ │ ├── delete_at_spec.rb
│ │ │ │ │ ├── delete_spec.rb
│ │ │ │ │ ├── delete_undef_values_spec.rb
│ │ │ │ │ ├── delete_values_spec.rb
│ │ │ │ │ ├── difference_spec.rb
│ │ │ │ │ ├── dirname_spec.rb
│ │ │ │ │ ├── downcase_spec.rb
│ │ │ │ │ ├── empty_spec.rb
│ │ │ │ │ ├── ensure_packages_spec.rb
│ │ │ │ │ ├── ensure_resource_spec.rb
│ │ │ │ │ ├── flatten_spec.rb
│ │ │ │ │ ├── floor_spec.rb
│ │ │ │ │ ├── fqdn_rotate_spec.rb
│ │ │ │ │ ├── get_module_path_spec.rb
│ │ │ │ │ ├── getparam_spec.rb
│ │ │ │ │ ├── getvar_spec.rb
│ │ │ │ │ ├── grep_spec.rb
│ │ │ │ │ ├── has_interface_with_spec.rb
│ │ │ │ │ ├── has_ip_address_spec.rb
│ │ │ │ │ ├── has_ip_network_spec.rb
│ │ │ │ │ ├── has_key_spec.rb
│ │ │ │ │ ├── hash_spec.rb
│ │ │ │ │ ├── intersection_spec.rb
│ │ │ │ │ ├── is_array_spec.rb
│ │ │ │ │ ├── is_bool_spec.rb
│ │ │ │ │ ├── is_domain_name_spec.rb
│ │ │ │ │ ├── is_float_spec.rb
│ │ │ │ │ ├── is_function_available_spec.rb
│ │ │ │ │ ├── is_hash_spec.rb
│ │ │ │ │ ├── is_integer_spec.rb
│ │ │ │ │ ├── is_ip_address_spec.rb
│ │ │ │ │ ├── is_mac_address_spec.rb
│ │ │ │ │ ├── is_numeric_spec.rb
│ │ │ │ │ ├── is_string_spec.rb
│ │ │ │ │ ├── join_keys_to_values_spec.rb
│ │ │ │ │ ├── join_spec.rb
│ │ │ │ │ ├── keys_spec.rb
│ │ │ │ │ ├── loadyaml_spec.rb
│ │ │ │ │ ├── lstrip_spec.rb
│ │ │ │ │ ├── max_spec.rb
│ │ │ │ │ ├── member_spec.rb
│ │ │ │ │ ├── merge_spec.rb
│ │ │ │ │ ├── min_spec.rb
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-59-x64.yml
│ │ │ │ │ │ ├── centos-6-vcloud.yml
│ │ │ │ │ │ ├── centos-64-x64-pe.yml
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ ├── fedora-18-x64.yml
│ │ │ │ │ │ ├── sles-11-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-10044-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-12042-x64.yml
│ │ │ │ │ │ ├── ubuntu-server-1404-x64.yml
│ │ │ │ │ │ ├── windows-2003-i386.yml
│ │ │ │ │ │ ├── windows-2003-x86_64.yml
│ │ │ │ │ │ ├── windows-2008-x86_64.yml
│ │ │ │ │ │ ├── windows-2008r2-x86_64.yml
│ │ │ │ │ │ ├── windows-2012-x86_64.yml
│ │ │ │ │ │ └── windows-2012r2-x86_64.yml
│ │ │ │ │ ├── num2bool_spec.rb
│ │ │ │ │ ├── parsejson_spec.rb
│ │ │ │ │ ├── parseyaml_spec.rb
│ │ │ │ │ ├── pick_default_spec.rb
│ │ │ │ │ ├── pick_spec.rb
│ │ │ │ │ ├── prefix_spec.rb
│ │ │ │ │ ├── range_spec.rb
│ │ │ │ │ ├── reject_spec.rb
│ │ │ │ │ ├── reverse_spec.rb
│ │ │ │ │ ├── rstrip_spec.rb
│ │ │ │ │ ├── shuffle_spec.rb
│ │ │ │ │ ├── size_spec.rb
│ │ │ │ │ ├── sort_spec.rb
│ │ │ │ │ ├── squeeze_spec.rb
│ │ │ │ │ ├── str2bool_spec.rb
│ │ │ │ │ ├── str2saltedsha512_spec.rb
│ │ │ │ │ ├── strftime_spec.rb
│ │ │ │ │ ├── strip_spec.rb
│ │ │ │ │ ├── suffix_spec.rb
│ │ │ │ │ ├── swapcase_spec.rb
│ │ │ │ │ ├── time_spec.rb
│ │ │ │ │ ├── to_bytes_spec.rb
│ │ │ │ │ ├── type_spec.rb
│ │ │ │ │ ├── union_spec.rb
│ │ │ │ │ ├── unique_spec.rb
│ │ │ │ │ ├── unsupported_spec.rb
│ │ │ │ │ ├── upcase_spec.rb
│ │ │ │ │ ├── uriescape_spec.rb
│ │ │ │ │ ├── validate_absolute_path_spec.rb
│ │ │ │ │ ├── validate_array_spec.rb
│ │ │ │ │ ├── validate_augeas_spec.rb
│ │ │ │ │ ├── validate_bool_spec.rb
│ │ │ │ │ ├── validate_cmd_spec.rb
│ │ │ │ │ ├── validate_hash_spec.rb
│ │ │ │ │ ├── validate_ipv4_address_spec.rb
│ │ │ │ │ ├── validate_ipv6_address_spec.rb
│ │ │ │ │ ├── validate_re_spec.rb
│ │ │ │ │ ├── validate_slength_spec.rb
│ │ │ │ │ ├── validate_string_spec.rb
│ │ │ │ │ ├── values_at_spec.rb
│ │ │ │ │ ├── values_spec.rb
│ │ │ │ │ └── zip_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ └── anchor_spec.rb
│ │ │ │ ├── functions
│ │ │ │ │ ├── abs_spec.rb
│ │ │ │ │ ├── any2array_spec.rb
│ │ │ │ │ ├── base64_spec.rb
│ │ │ │ │ ├── bool2num_spec.rb
│ │ │ │ │ ├── capitalize_spec.rb
│ │ │ │ │ ├── chomp_spec.rb
│ │ │ │ │ ├── chop_spec.rb
│ │ │ │ │ ├── concat_spec.rb
│ │ │ │ │ ├── count_spec.rb
│ │ │ │ │ ├── deep_merge_spec.rb
│ │ │ │ │ ├── defined_with_params_spec.rb
│ │ │ │ │ ├── delete_at_spec.rb
│ │ │ │ │ ├── delete_spec.rb
│ │ │ │ │ ├── delete_undef_values_spec.rb
│ │ │ │ │ ├── delete_values_spec.rb
│ │ │ │ │ ├── difference_spec.rb
│ │ │ │ │ ├── dirname_spec.rb
│ │ │ │ │ ├── downcase_spec.rb
│ │ │ │ │ ├── empty_spec.rb
│ │ │ │ │ ├── ensure_packages_spec.rb
│ │ │ │ │ ├── ensure_resource_spec.rb
│ │ │ │ │ ├── flatten_spec.rb
│ │ │ │ │ ├── floor_spec.rb
│ │ │ │ │ ├── fqdn_rotate_spec.rb
│ │ │ │ │ ├── get_module_path_spec.rb
│ │ │ │ │ ├── getparam_spec.rb
│ │ │ │ │ ├── getvar_spec.rb
│ │ │ │ │ ├── grep_spec.rb
│ │ │ │ │ ├── has_interface_with_spec.rb
│ │ │ │ │ ├── has_ip_address_spec.rb
│ │ │ │ │ ├── has_ip_network_spec.rb
│ │ │ │ │ ├── has_key_spec.rb
│ │ │ │ │ ├── hash_spec.rb
│ │ │ │ │ ├── intersection_spec.rb
│ │ │ │ │ ├── is_array_spec.rb
│ │ │ │ │ ├── is_bool_spec.rb
│ │ │ │ │ ├── is_domain_name_spec.rb
│ │ │ │ │ ├── is_float_spec.rb
│ │ │ │ │ ├── is_function_available.rb
│ │ │ │ │ ├── is_hash_spec.rb
│ │ │ │ │ ├── is_integer_spec.rb
│ │ │ │ │ ├── is_ip_address_spec.rb
│ │ │ │ │ ├── is_mac_address_spec.rb
│ │ │ │ │ ├── is_numeric_spec.rb
│ │ │ │ │ ├── is_string_spec.rb
│ │ │ │ │ ├── join_keys_to_values_spec.rb
│ │ │ │ │ ├── join_spec.rb
│ │ │ │ │ ├── keys_spec.rb
│ │ │ │ │ ├── loadyaml_spec.rb
│ │ │ │ │ ├── lstrip_spec.rb
│ │ │ │ │ ├── max_spec.rb
│ │ │ │ │ ├── member_spec.rb
│ │ │ │ │ ├── merge_spec.rb
│ │ │ │ │ ├── min_spec.rb
│ │ │ │ │ ├── num2bool_spec.rb
│ │ │ │ │ ├── parsejson_spec.rb
│ │ │ │ │ ├── parseyaml_spec.rb
│ │ │ │ │ ├── pick_default_spec.rb
│ │ │ │ │ ├── pick_spec.rb
│ │ │ │ │ ├── prefix_spec.rb
│ │ │ │ │ ├── private_spec.rb
│ │ │ │ │ ├── range_spec.rb
│ │ │ │ │ ├── reject_spec.rb
│ │ │ │ │ ├── reverse_spec.rb
│ │ │ │ │ ├── rstrip_spec.rb
│ │ │ │ │ ├── shuffle_spec.rb
│ │ │ │ │ ├── size_spec.rb
│ │ │ │ │ ├── sort_spec.rb
│ │ │ │ │ ├── squeeze_spec.rb
│ │ │ │ │ ├── str2bool_spec.rb
│ │ │ │ │ ├── str2saltedsha512_spec.rb
│ │ │ │ │ ├── strftime_spec.rb
│ │ │ │ │ ├── strip_spec.rb
│ │ │ │ │ ├── suffix_spec.rb
│ │ │ │ │ ├── swapcase_spec.rb
│ │ │ │ │ ├── time_spec.rb
│ │ │ │ │ ├── to_bytes_spec.rb
│ │ │ │ │ ├── type_spec.rb
│ │ │ │ │ ├── union_spec.rb
│ │ │ │ │ ├── unique_spec.rb
│ │ │ │ │ ├── upcase_spec.rb
│ │ │ │ │ ├── uriescape_spec.rb
│ │ │ │ │ ├── validate_absolute_path_spec.rb
│ │ │ │ │ ├── validate_array_spec.rb
│ │ │ │ │ ├── validate_augeas_spec.rb
│ │ │ │ │ ├── validate_bool_spec.rb
│ │ │ │ │ ├── validate_cmd_spec.rb
│ │ │ │ │ ├── validate_hash_spec.rb
│ │ │ │ │ ├── validate_ipv4_address_spec.rb
│ │ │ │ │ ├── validate_ipv6_address_spec.rb
│ │ │ │ │ ├── validate_re_spec.rb
│ │ │ │ │ ├── validate_slength_spec.rb
│ │ │ │ │ ├── validate_string_spec.rb
│ │ │ │ │ ├── values_at_spec.rb
│ │ │ │ │ ├── values_spec.rb
│ │ │ │ │ └── zip_spec.rb
│ │ │ │ ├── lib
│ │ │ │ │ └── puppet_spec
│ │ │ │ │ │ ├── compiler.rb
│ │ │ │ │ │ ├── database.rb
│ │ │ │ │ │ ├── files.rb
│ │ │ │ │ │ ├── fixtures.rb
│ │ │ │ │ │ ├── matchers.rb
│ │ │ │ │ │ ├── modules.rb
│ │ │ │ │ │ ├── pops.rb
│ │ │ │ │ │ ├── scope.rb
│ │ │ │ │ │ ├── settings.rb
│ │ │ │ │ │ └── verbose.rb
│ │ │ │ ├── monkey_patches
│ │ │ │ │ ├── alias_should_to_must.rb
│ │ │ │ │ └── publicize_methods.rb
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── spec_helper_acceptance.rb
│ │ │ │ └── unit
│ │ │ │ │ ├── facter
│ │ │ │ │ ├── facter_dot_d_spec.rb
│ │ │ │ │ ├── pe_version_spec.rb
│ │ │ │ │ ├── root_home_spec.rb
│ │ │ │ │ └── util
│ │ │ │ │ │ └── puppet_settings_spec.rb
│ │ │ │ │ └── puppet
│ │ │ │ │ ├── parser
│ │ │ │ │ └── functions
│ │ │ │ │ │ ├── bool2str_spec.rb
│ │ │ │ │ │ └── camelcase_spec.rb
│ │ │ │ │ ├── provider
│ │ │ │ │ └── file_line
│ │ │ │ │ │ └── ruby_spec.rb
│ │ │ │ │ └── type
│ │ │ │ │ ├── anchor_spec.rb
│ │ │ │ │ └── file_line_spec.rb
│ │ │ └── tests
│ │ │ │ ├── file_line.pp
│ │ │ │ ├── has_interface_with.pp
│ │ │ │ ├── has_ip_address.pp
│ │ │ │ ├── has_ip_network.pp
│ │ │ │ └── init.pp
│ │ ├── supervisord
│ │ │ ├── .fixtures.yml
│ │ │ ├── .nodeset.yml
│ │ │ ├── .travis.yml
│ │ │ ├── Changelog
│ │ │ ├── Gemfile
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ └── parser
│ │ │ │ │ └── functions
│ │ │ │ │ ├── array2csv.rb
│ │ │ │ │ └── hash2csv.rb
│ │ │ ├── manifests
│ │ │ │ ├── config.pp
│ │ │ │ ├── eventlistener.pp
│ │ │ │ ├── fcgi_program.pp
│ │ │ │ ├── group.pp
│ │ │ │ ├── init.pp
│ │ │ │ ├── install.pp
│ │ │ │ ├── params.pp
│ │ │ │ ├── pip.pp
│ │ │ │ ├── program.pp
│ │ │ │ ├── reload.pp
│ │ │ │ ├── service.pp
│ │ │ │ └── supervisorctl.pp
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── nodesets
│ │ │ │ │ │ ├── centos-65-i386.yml
│ │ │ │ │ │ ├── centos-65-x64.yml
│ │ │ │ │ │ ├── debian-73-i386.yml
│ │ │ │ │ │ ├── debian-73-x64.yml
│ │ │ │ │ │ └── default.yml
│ │ │ │ │ └── supervisord_spec.rb
│ │ │ │ ├── classes
│ │ │ │ │ └── supervisord_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ ├── eventlistener_spec.rb
│ │ │ │ │ ├── fcgi_program_spec.rb
│ │ │ │ │ ├── group_spec.rb
│ │ │ │ │ ├── program_spec.rb
│ │ │ │ │ └── supervisorctl.rb
│ │ │ │ ├── functions
│ │ │ │ │ ├── array2csv_spec.rb
│ │ │ │ │ └── hash2csv_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── spec_helper_acceptance.rb
│ │ │ ├── templates
│ │ │ │ ├── conf
│ │ │ │ │ ├── eventlistener.erb
│ │ │ │ │ ├── fcgi_program.erb
│ │ │ │ │ ├── group.erb
│ │ │ │ │ └── program.erb
│ │ │ │ ├── init
│ │ │ │ │ ├── Debian
│ │ │ │ │ │ ├── defaults.erb
│ │ │ │ │ │ └── init.erb
│ │ │ │ │ └── RedHat
│ │ │ │ │ │ ├── defaults.erb
│ │ │ │ │ │ └── init.erb
│ │ │ │ ├── supervisord_inet.erb
│ │ │ │ ├── supervisord_main.erb
│ │ │ │ └── supervisord_unix.erb
│ │ │ └── tests
│ │ │ │ ├── group.pp
│ │ │ │ ├── init.pp
│ │ │ │ └── program.pp
│ │ ├── swap_file
│ │ │ ├── .fixtures.yml
│ │ │ ├── .rspec
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── CONTRIBUTORS
│ │ │ ├── Gemfile
│ │ │ ├── Gemfile.lock
│ │ │ ├── Guardfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── init.pp
│ │ │ │ └── params.pp
│ │ │ ├── spec
│ │ │ │ ├── acceptance
│ │ │ │ │ ├── class_spec.rb
│ │ │ │ │ └── nodesets
│ │ │ │ │ │ ├── centos-64-x64.yml
│ │ │ │ │ │ ├── default.yml
│ │ │ │ │ │ └── ubuntu-server-12042-x64.yml
│ │ │ │ ├── classes
│ │ │ │ │ ├── coverage_spec.rb
│ │ │ │ │ └── swap_file_spec.rb
│ │ │ │ ├── spec_helper.rb
│ │ │ │ └── spec_helper_acceptance.rb
│ │ │ └── tests
│ │ │ │ └── init.pp
│ │ ├── sysctl
│ │ │ ├── ChangeLog
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── manifests
│ │ │ │ ├── base.pp
│ │ │ │ └── init.pp
│ │ │ ├── metadata.json
│ │ │ ├── spec
│ │ │ │ ├── classes
│ │ │ │ │ └── sysctl_base_spec.rb
│ │ │ │ ├── defines
│ │ │ │ │ └── sysctl_init_spec.rb
│ │ │ │ └── spec_helper.rb
│ │ │ ├── templates
│ │ │ │ └── sysctl.d-file.erb
│ │ │ └── tests
│ │ │ │ ├── base.pp
│ │ │ │ └── init.pp
│ │ ├── vcsrepo
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG
│ │ │ ├── Gemfile
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.BZR.markdown
│ │ │ ├── README.CVS.markdown
│ │ │ ├── README.GIT.markdown
│ │ │ ├── README.HG.markdown
│ │ │ ├── README.SVN.markdown
│ │ │ ├── README.markdown
│ │ │ ├── Rakefile
│ │ │ ├── examples
│ │ │ │ ├── bzr
│ │ │ │ │ ├── branch.pp
│ │ │ │ │ └── init_repo.pp
│ │ │ │ ├── cvs
│ │ │ │ │ ├── local.pp
│ │ │ │ │ └── remote.pp
│ │ │ │ ├── git
│ │ │ │ │ ├── bare_init.pp
│ │ │ │ │ ├── clone.pp
│ │ │ │ │ └── working_copy_init.pp
│ │ │ │ ├── hg
│ │ │ │ │ ├── clone.pp
│ │ │ │ │ └── init_repo.pp
│ │ │ │ └── svn
│ │ │ │ │ ├── checkout.pp
│ │ │ │ │ └── server.pp
│ │ │ ├── lib
│ │ │ │ └── puppet
│ │ │ │ │ ├── provider
│ │ │ │ │ ├── vcsrepo.rb
│ │ │ │ │ └── vcsrepo
│ │ │ │ │ │ ├── bzr.rb
│ │ │ │ │ │ ├── cvs.rb
│ │ │ │ │ │ ├── dummy.rb
│ │ │ │ │ │ ├── git.rb
│ │ │ │ │ │ ├── hg.rb
│ │ │ │ │ │ └── svn.rb
│ │ │ │ │ └── type
│ │ │ │ │ └── vcsrepo.rb
│ │ │ └── spec
│ │ │ │ ├── fixtures
│ │ │ │ ├── bzr_version_info.txt
│ │ │ │ ├── git_branch_a.txt
│ │ │ │ ├── git_branch_feature_bar.txt
│ │ │ │ ├── git_branch_none.txt
│ │ │ │ ├── hg_parents.txt
│ │ │ │ ├── hg_tags.txt
│ │ │ │ └── svn_info.txt
│ │ │ │ ├── spec.opts
│ │ │ │ ├── spec_helper.rb
│ │ │ │ ├── support
│ │ │ │ ├── filesystem_helpers.rb
│ │ │ │ └── fixture_helpers.rb
│ │ │ │ └── unit
│ │ │ │ └── puppet
│ │ │ │ ├── provider
│ │ │ │ └── vcsrepo
│ │ │ │ │ ├── bzr_spec.rb
│ │ │ │ │ ├── cvs_spec.rb
│ │ │ │ │ ├── git_spec.rb
│ │ │ │ │ ├── hg_spec.rb
│ │ │ │ │ └── svn_spec.rb
│ │ │ │ └── type
│ │ │ │ └── README.markdown
│ │ └── yum
│ │ │ ├── .fixtures.yml
│ │ │ ├── .gemfile
│ │ │ ├── .project
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Modulefile
│ │ │ ├── README.md
│ │ │ ├── Rakefile
│ │ │ ├── files
│ │ │ ├── Amazon.3
│ │ │ │ └── rpm-gpg
│ │ │ │ │ ├── RPM-GPG-KEY-CentOS-6
│ │ │ │ │ ├── RPM-GPG-KEY-EPEL
│ │ │ │ │ ├── RPM-GPG-KEY-RBEL
│ │ │ │ │ ├── RPM-GPG-KEY-beta
│ │ │ │ │ ├── RPM-GPG-KEY-kbsingh
│ │ │ │ │ ├── RPM-GPG-KEY-remi
│ │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag
│ │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy
│ │ │ │ │ ├── RPM-GPG-KEY.atrpms
│ │ │ │ │ └── RubyWorks.GPG.key
│ │ │ ├── CentOS.4
│ │ │ │ └── rpm-gpg
│ │ │ │ │ └── RPM-GPG-KEY-EPEL
│ │ │ ├── CentOS.5
│ │ │ │ └── rpm-gpg
│ │ │ │ │ ├── RPM-GPG-KEY-CentOS-5
│ │ │ │ │ ├── RPM-GPG-KEY-EPEL
│ │ │ │ │ ├── RPM-GPG-KEY-RBEL
│ │ │ │ │ ├── RPM-GPG-KEY-beta
│ │ │ │ │ ├── RPM-GPG-KEY-kbsingh
│ │ │ │ │ ├── RPM-GPG-KEY-remi
│ │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag
│ │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy
│ │ │ │ │ ├── RPM-GPG-KEY.art
│ │ │ │ │ ├── RPM-GPG-KEY.atrpms
│ │ │ │ │ └── RubyWorks.GPG.key
│ │ │ ├── CentOS.6
│ │ │ │ └── rpm-gpg
│ │ │ │ │ ├── RPM-GPG-KEY-CentOS-6
│ │ │ │ │ ├── RPM-GPG-KEY-EPEL
│ │ │ │ │ ├── RPM-GPG-KEY-PGDG
│ │ │ │ │ ├── RPM-GPG-KEY-RBEL
│ │ │ │ │ ├── RPM-GPG-KEY-beta
│ │ │ │ │ ├── RPM-GPG-KEY-kbsingh
│ │ │ │ │ ├── RPM-GPG-KEY-remi
│ │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag
│ │ │ │ │ ├── RPM-GPG-KEY-webtatic-andy
│ │ │ │ │ ├── RPM-GPG-KEY.art
│ │ │ │ │ ├── RPM-GPG-KEY.atrpms
│ │ │ │ │ └── RubyWorks.GPG.key
│ │ │ ├── Scientific.6
│ │ │ │ └── rpm-gpg
│ │ │ │ │ ├── RPM-GPG-KEY-CentOS-5
│ │ │ │ │ ├── RPM-GPG-KEY-EPEL
│ │ │ │ │ ├── RPM-GPG-KEY-RBEL
│ │ │ │ │ ├── RPM-GPG-KEY-beta
│ │ │ │ │ ├── RPM-GPG-KEY-dawson
│ │ │ │ │ ├── RPM-GPG-KEY-redhat-beta
│ │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former
│ │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release
│ │ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx
│ │ │ │ │ ├── RPM-GPG-KEY-redhat-release
│ │ │ │ │ ├── RPM-GPG-KEY-remi
│ │ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag
│ │ │ │ │ ├── RPM-GPG-KEY-sl
│ │ │ │ │ ├── RPM-GPG-KEY-sl3
│ │ │ │ │ ├── RPM-GPG-KEY-sl4
│ │ │ │ │ ├── RPM-GPG-KEY-sl5
│ │ │ │ │ ├── RPM-GPG-KEY-sl6
│ │ │ │ │ ├── RPM-GPG-KEY.atrpms
│ │ │ │ │ └── RubyWorks.GPG.key
│ │ │ ├── empty
│ │ │ │ └── .placeholder
│ │ │ ├── rpm-gpg
│ │ │ │ ├── RPM-GPG-KEY-CentOS-5
│ │ │ │ ├── RPM-GPG-KEY-CentOS-6
│ │ │ │ ├── RPM-GPG-KEY-EPEL
│ │ │ │ ├── RPM-GPG-KEY-EPEL-4
│ │ │ │ ├── RPM-GPG-KEY-EPEL-5
│ │ │ │ ├── RPM-GPG-KEY-EPEL-6
│ │ │ │ ├── RPM-GPG-KEY-PGDG
│ │ │ │ ├── RPM-GPG-KEY-RBEL
│ │ │ │ ├── RPM-GPG-KEY-beta
│ │ │ │ ├── RPM-GPG-KEY-elrepo.org
│ │ │ │ ├── RPM-GPG-KEY-kbsingh
│ │ │ │ ├── RPM-GPG-KEY-redhat-beta
│ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-former
│ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-release
│ │ │ │ ├── RPM-GPG-KEY-redhat-legacy-rhx
│ │ │ │ ├── RPM-GPG-KEY-redhat-release
│ │ │ │ ├── RPM-GPG-KEY-remi
│ │ │ │ ├── RPM-GPG-KEY-rpmforge-dag
│ │ │ │ ├── RPM-GPG-KEY-sl
│ │ │ │ ├── RPM-GPG-KEY-webtatic-andy
│ │ │ │ ├── RPM-GPG-KEY.art
│ │ │ │ ├── RPM-GPG-KEY.atrpms
│ │ │ │ └── RubyWorks.GPG.key
│ │ │ └── yum-updatesd.conf
│ │ │ ├── manifests
│ │ │ ├── cron.pp
│ │ │ ├── defaults.pp
│ │ │ ├── init.pp
│ │ │ ├── managed_yumrepo.pp
│ │ │ ├── params.pp
│ │ │ ├── plugin.pp
│ │ │ ├── prerequisites.pp
│ │ │ ├── repo
│ │ │ │ ├── 10gen.pp
│ │ │ │ ├── atomic.pp
│ │ │ │ ├── atrpms.pp
│ │ │ │ ├── centalt.pp
│ │ │ │ ├── centos4.pp
│ │ │ │ ├── centos5.pp
│ │ │ │ ├── centos6.pp
│ │ │ │ ├── centos_testing.pp
│ │ │ │ ├── ceph.pp
│ │ │ │ ├── elasticsearch10.pp
│ │ │ │ ├── elasticsearch90.pp
│ │ │ │ ├── elrepo.pp
│ │ │ │ ├── epel.pp
│ │ │ │ ├── foreman.pp
│ │ │ │ ├── integ_ganeti.pp
│ │ │ │ ├── jpackage5.pp
│ │ │ │ ├── jpackage6.pp
│ │ │ │ ├── karan.pp
│ │ │ │ ├── logstash13.pp
│ │ │ │ ├── mongodb.pp
│ │ │ │ ├── monitoringsucks.pp
│ │ │ │ ├── newrelic.pp
│ │ │ │ ├── nginx.pp
│ │ │ │ ├── openstack_grizzly.pp
│ │ │ │ ├── passenger.pp
│ │ │ │ ├── pgdg91.pp
│ │ │ │ ├── pgdg92.pp
│ │ │ │ ├── pgdg93.pp
│ │ │ │ ├── puppetdevel.pp
│ │ │ │ ├── puppetlabs.pp
│ │ │ │ ├── rbel.pp
│ │ │ │ ├── remi.pp
│ │ │ │ ├── remi_php55.pp
│ │ │ │ ├── repoforge.pp
│ │ │ │ ├── repoforgeextras.pp
│ │ │ │ ├── rpmforge.pp
│ │ │ │ ├── sl5.pp
│ │ │ │ ├── sl6.pp
│ │ │ │ ├── tmz.pp
│ │ │ │ ├── varnish.pp
│ │ │ │ ├── vfabric.pp
│ │ │ │ ├── virtualbox.pp
│ │ │ │ └── webtatic.pp
│ │ │ └── updatesd.pp
│ │ │ ├── spec
│ │ │ ├── classes
│ │ │ │ └── yum_spec.rb
│ │ │ └── spec_helper.rb
│ │ │ └── templates
│ │ │ └── yum-cron.erb
│ ├── nodes
│ │ ├── Apache.pp
│ │ ├── Beanstalkd.pp
│ │ ├── Cron.pp
│ │ ├── Drush.pp
│ │ ├── ElasticSearch.pp
│ │ ├── Firewall.pp
│ │ ├── Hhvm.pp
│ │ ├── MailCatcher.pp
│ │ ├── MariaDb.pp
│ │ ├── MongoDb.pp
│ │ ├── Mysql.pp
│ │ ├── Nginx.pp
│ │ ├── NodeJs.pp
│ │ ├── Php.pp
│ │ ├── Postgresql.pp
│ │ ├── Python.pp
│ │ ├── RabbitMQ.pp
│ │ ├── Redis.pp
│ │ ├── Ruby.pp
│ │ ├── Server.pp
│ │ ├── Solr.pp
│ │ ├── Sqlite.pp
│ │ ├── UsersGroups.pp
│ │ ├── WPCli.pp
│ │ ├── Xdebug.pp
│ │ └── Xhprof.pp
│ └── site.pp
└── shell
│ ├── ascii-art
│ ├── important-notices.txt
│ └── self-promotion.txt
│ ├── execute-files.sh
│ ├── important-notices.sh
│ ├── initial-setup.sh
│ ├── install-puppet.sh
│ ├── install-ruby.sh
│ ├── os-detect.sh
│ └── ssh-keygen.sh
└── www
├── config.xml
├── css
└── index.css
├── font
└── ar_destine
│ ├── ardestine-webfont.eot
│ ├── ardestine-webfont.svg
│ ├── ardestine-webfont.ttf
│ ├── ardestine-webfont.woff
│ └── ardestine-webfont.woff2
├── img
├── MVI_0602_xvid.avi
├── check-mark-icon.png
├── drone-icon.png
├── logo.png
├── recording-pins.png
├── usb-icon.png
├── video-icon.png
├── wireless-icon.png
└── x-mark-icon.png
├── index.html
├── js
├── AppController.js
├── JoystickController.js
└── config.js
├── partials
├── fly.html
└── home.html
├── svg
└── rocket20.svg
└── vendor
├── angular-animate
├── .bower.json
├── README.md
├── angular-animate.js
├── angular-animate.min.js
├── angular-animate.min.js.map
├── bower.json
├── index.js
└── package.json
├── angular-aria
├── .bower.json
├── README.md
├── angular-aria.js
├── angular-aria.min.js
├── angular-aria.min.js.map
├── bower.json
├── index.js
└── package.json
├── angular-material
├── .bower.json
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── angular-material-mocks.js
├── angular-material.css
├── angular-material.js
├── angular-material.min.css
├── angular-material.min.js
├── bower.json
├── demos
│ ├── bottomSheet
│ │ └── demoBasicUsage
│ │ │ └── img
│ │ │ └── icons
│ │ │ ├── copy.svg
│ │ │ ├── copy2.svg
│ │ │ ├── facebook.svg
│ │ │ ├── hangout.svg
│ │ │ ├── mail.svg
│ │ │ ├── message.svg
│ │ │ ├── print.svg
│ │ │ ├── share-arrow.svg
│ │ │ ├── twitter.svg
│ │ │ └── upload.svg
│ ├── chips
│ │ ├── demoBasicUsage
│ │ │ └── style.scss
│ │ └── demoContactChips
│ │ │ └── style.scss
│ ├── gridList
│ │ ├── demoBasicUsage
│ │ │ └── style.scss
│ │ ├── demoDynamicTiles
│ │ │ └── style.scss
│ │ └── demoResponsiveUsage
│ │ │ └── style.scss
│ ├── icon
│ │ ├── demoLoadSvgIconsFromUrl
│ │ │ └── img
│ │ │ │ └── icons
│ │ │ │ ├── addShoppingCart.svg
│ │ │ │ ├── android.svg
│ │ │ │ └── cake.svg
│ │ ├── demoSvgIconSets
│ │ │ └── assets
│ │ │ │ ├── cake.svg
│ │ │ │ ├── core-icons.svg
│ │ │ │ └── social-icons.svg
│ │ ├── demoSvgIconsFromURL
│ │ │ └── img
│ │ │ │ └── icons
│ │ │ │ ├── addShoppingCart.svg
│ │ │ │ ├── android.svg
│ │ │ │ └── cake.svg
│ │ └── demoUsingTemplateCache
│ │ │ └── assets
│ │ │ ├── android.svg
│ │ │ ├── cake.svg
│ │ │ └── core-icons.svg
│ ├── input
│ │ └── demoIcons
│ │ │ ├── icons
│ │ │ ├── ic_email_24px.svg
│ │ │ ├── ic_person_24px.svg
│ │ │ ├── ic_phone_24px.svg
│ │ │ └── ic_place_24px.svg
│ │ │ └── style.scss
│ ├── list
│ │ └── demoListControls
│ │ │ └── img
│ │ │ ├── 100-0.jpeg
│ │ │ ├── 100-1.jpeg
│ │ │ └── 100-2.jpeg
│ ├── tabs
│ │ ├── demoDynamicHeight
│ │ │ └── style.scss
│ │ ├── demoDynamicTabs
│ │ │ └── style.scss
│ │ └── demoStaticTabs
│ │ │ └── style.scss
│ └── toolbar
│ │ └── demoBasicUsage
│ │ └── img
│ │ └── icons
│ │ ├── favorite.svg
│ │ ├── menu.svg
│ │ └── more_vert.svg
├── index.js
├── modules
│ ├── closure
│ │ ├── autocomplete
│ │ │ ├── autocomplete-default-theme.css
│ │ │ ├── autocomplete.css
│ │ │ └── autocomplete.js
│ │ ├── backdrop
│ │ │ ├── backdrop-default-theme.css
│ │ │ ├── backdrop.css
│ │ │ └── backdrop.js
│ │ ├── bottomSheet
│ │ │ ├── bottomSheet-default-theme.css
│ │ │ ├── bottomSheet.css
│ │ │ └── bottomSheet.js
│ │ ├── button
│ │ │ ├── button-default-theme.css
│ │ │ ├── button.css
│ │ │ └── button.js
│ │ ├── card
│ │ │ ├── card-default-theme.css
│ │ │ ├── card.css
│ │ │ └── card.js
│ │ ├── checkbox
│ │ │ ├── checkbox-default-theme.css
│ │ │ ├── checkbox.css
│ │ │ └── checkbox.js
│ │ ├── chips
│ │ │ ├── chips-default-theme.css
│ │ │ ├── chips.css
│ │ │ └── chips.js
│ │ ├── content
│ │ │ ├── content-default-theme.css
│ │ │ ├── content.css
│ │ │ └── content.js
│ │ ├── core
│ │ │ ├── core.css
│ │ │ ├── core.js
│ │ │ └── default-theme.js
│ │ ├── dialog
│ │ │ ├── dialog-default-theme.css
│ │ │ ├── dialog.css
│ │ │ └── dialog.js
│ │ ├── divider
│ │ │ ├── divider-default-theme.css
│ │ │ ├── divider.css
│ │ │ └── divider.js
│ │ ├── gridList
│ │ │ ├── gridList-default-theme.css
│ │ │ ├── gridList.css
│ │ │ └── gridList.js
│ │ ├── icon
│ │ │ ├── icon-default-theme.css
│ │ │ ├── icon.css
│ │ │ └── icon.js
│ │ ├── input
│ │ │ ├── input-default-theme.css
│ │ │ ├── input.css
│ │ │ └── input.js
│ │ ├── list
│ │ │ ├── list-default-theme.css
│ │ │ ├── list.css
│ │ │ └── list.js
│ │ ├── menu
│ │ │ ├── menu.css
│ │ │ └── menu.js
│ │ ├── progressCircular
│ │ │ ├── progressCircular-default-theme.css
│ │ │ ├── progressCircular.css
│ │ │ └── progressCircular.js
│ │ ├── progressLinear
│ │ │ ├── progressLinear-default-theme.css
│ │ │ ├── progressLinear.css
│ │ │ └── progressLinear.js
│ │ ├── radioButton
│ │ │ ├── radioButton-default-theme.css
│ │ │ ├── radioButton.css
│ │ │ └── radioButton.js
│ │ ├── select
│ │ │ ├── select-default-theme.css
│ │ │ ├── select.css
│ │ │ └── select.js
│ │ ├── sidenav
│ │ │ ├── sidenav-default-theme.css
│ │ │ ├── sidenav.css
│ │ │ └── sidenav.js
│ │ ├── slider
│ │ │ ├── slider-default-theme.css
│ │ │ ├── slider.css
│ │ │ └── slider.js
│ │ ├── sticky
│ │ │ ├── sticky.css
│ │ │ └── sticky.js
│ │ ├── subheader
│ │ │ ├── subheader-default-theme.css
│ │ │ ├── subheader.css
│ │ │ └── subheader.js
│ │ ├── swipe
│ │ │ └── swipe.js
│ │ ├── switch
│ │ │ ├── switch-default-theme.css
│ │ │ ├── switch.css
│ │ │ └── switch.js
│ │ ├── tabs
│ │ │ ├── tabs-arrow.svg
│ │ │ ├── tabs-default-theme.css
│ │ │ ├── tabs.css
│ │ │ └── tabs.js
│ │ ├── textField
│ │ │ ├── textField-default-theme.css
│ │ │ ├── textField.css
│ │ │ └── textField.js
│ │ ├── toast
│ │ │ ├── toast-default-theme.css
│ │ │ ├── toast.css
│ │ │ └── toast.js
│ │ ├── toolbar
│ │ │ ├── toolbar-default-theme.css
│ │ │ ├── toolbar.css
│ │ │ └── toolbar.js
│ │ ├── tooltip
│ │ │ ├── tooltip-default-theme.css
│ │ │ ├── tooltip.css
│ │ │ └── tooltip.js
│ │ └── whiteframe
│ │ │ ├── whiteframe.css
│ │ │ └── whiteframe.js
│ ├── css
│ │ └── angular-material-layout.css
│ └── js
│ │ ├── autocomplete
│ │ ├── autocomplete-default-theme.css
│ │ ├── autocomplete-default-theme.min.css
│ │ ├── autocomplete.css
│ │ ├── autocomplete.js
│ │ ├── autocomplete.min.css
│ │ ├── autocomplete.min.js
│ │ └── bower.json
│ │ ├── backdrop
│ │ ├── backdrop-default-theme.css
│ │ ├── backdrop-default-theme.min.css
│ │ ├── backdrop.css
│ │ ├── backdrop.js
│ │ ├── backdrop.min.css
│ │ ├── backdrop.min.js
│ │ └── bower.json
│ │ ├── bottomSheet
│ │ ├── bottomSheet-default-theme.css
│ │ ├── bottomSheet-default-theme.min.css
│ │ ├── bottomSheet.css
│ │ ├── bottomSheet.js
│ │ ├── bottomSheet.min.css
│ │ ├── bottomSheet.min.js
│ │ └── bower.json
│ │ ├── button
│ │ ├── bower.json
│ │ ├── button-default-theme.css
│ │ ├── button-default-theme.min.css
│ │ ├── button.css
│ │ ├── button.js
│ │ ├── button.min.css
│ │ └── button.min.js
│ │ ├── card
│ │ ├── bower.json
│ │ ├── card-default-theme.css
│ │ ├── card-default-theme.min.css
│ │ ├── card.css
│ │ ├── card.js
│ │ ├── card.min.css
│ │ └── card.min.js
│ │ ├── checkbox
│ │ ├── bower.json
│ │ ├── checkbox-default-theme.css
│ │ ├── checkbox-default-theme.min.css
│ │ ├── checkbox.css
│ │ ├── checkbox.js
│ │ ├── checkbox.min.css
│ │ └── checkbox.min.js
│ │ ├── chips
│ │ ├── bower.json
│ │ ├── chips-default-theme.css
│ │ ├── chips-default-theme.min.css
│ │ ├── chips.css
│ │ ├── chips.js
│ │ ├── chips.min.css
│ │ └── chips.min.js
│ │ ├── content
│ │ ├── bower.json
│ │ ├── content-default-theme.css
│ │ ├── content-default-theme.min.css
│ │ ├── content.css
│ │ ├── content.js
│ │ ├── content.min.css
│ │ └── content.min.js
│ │ ├── core
│ │ ├── bower.json
│ │ ├── core.css
│ │ ├── core.js
│ │ ├── core.min.css
│ │ ├── core.min.js
│ │ └── default-theme.js
│ │ ├── dialog
│ │ ├── bower.json
│ │ ├── dialog-default-theme.css
│ │ ├── dialog-default-theme.min.css
│ │ ├── dialog.css
│ │ ├── dialog.js
│ │ ├── dialog.min.css
│ │ └── dialog.min.js
│ │ ├── divider
│ │ ├── bower.json
│ │ ├── divider-default-theme.css
│ │ ├── divider-default-theme.min.css
│ │ ├── divider.css
│ │ ├── divider.js
│ │ ├── divider.min.css
│ │ └── divider.min.js
│ │ ├── gridList
│ │ ├── bower.json
│ │ ├── gridList.css
│ │ ├── gridList.js
│ │ ├── gridList.min.css
│ │ └── gridList.min.js
│ │ ├── icon
│ │ ├── bower.json
│ │ ├── icon-default-theme.css
│ │ ├── icon-default-theme.min.css
│ │ ├── icon.css
│ │ ├── icon.js
│ │ ├── icon.min.css
│ │ └── icon.min.js
│ │ ├── input
│ │ ├── bower.json
│ │ ├── input-default-theme.css
│ │ ├── input-default-theme.min.css
│ │ ├── input.css
│ │ ├── input.js
│ │ ├── input.min.css
│ │ └── input.min.js
│ │ ├── list
│ │ ├── bower.json
│ │ ├── list-default-theme.css
│ │ ├── list-default-theme.min.css
│ │ ├── list.css
│ │ ├── list.js
│ │ ├── list.min.css
│ │ └── list.min.js
│ │ ├── menu
│ │ ├── bower.json
│ │ ├── menu.css
│ │ ├── menu.js
│ │ ├── menu.min.css
│ │ └── menu.min.js
│ │ ├── progressCircular
│ │ ├── bower.json
│ │ ├── progressCircular-default-theme.css
│ │ ├── progressCircular-default-theme.min.css
│ │ ├── progressCircular.css
│ │ ├── progressCircular.js
│ │ ├── progressCircular.min.css
│ │ └── progressCircular.min.js
│ │ ├── progressLinear
│ │ ├── bower.json
│ │ ├── progressLinear-default-theme.css
│ │ ├── progressLinear-default-theme.min.css
│ │ ├── progressLinear.css
│ │ ├── progressLinear.js
│ │ ├── progressLinear.min.css
│ │ └── progressLinear.min.js
│ │ ├── radioButton
│ │ ├── bower.json
│ │ ├── radioButton-default-theme.css
│ │ ├── radioButton-default-theme.min.css
│ │ ├── radioButton.css
│ │ ├── radioButton.js
│ │ ├── radioButton.min.css
│ │ └── radioButton.min.js
│ │ ├── select
│ │ ├── bower.json
│ │ ├── select-default-theme.css
│ │ ├── select-default-theme.min.css
│ │ ├── select.css
│ │ ├── select.js
│ │ ├── select.min.css
│ │ └── select.min.js
│ │ ├── sidenav
│ │ ├── bower.json
│ │ ├── sidenav-default-theme.css
│ │ ├── sidenav-default-theme.min.css
│ │ ├── sidenav.css
│ │ ├── sidenav.js
│ │ ├── sidenav.min.css
│ │ └── sidenav.min.js
│ │ ├── slider
│ │ ├── bower.json
│ │ ├── slider-default-theme.css
│ │ ├── slider-default-theme.min.css
│ │ ├── slider.css
│ │ ├── slider.js
│ │ ├── slider.min.css
│ │ └── slider.min.js
│ │ ├── sticky
│ │ ├── bower.json
│ │ ├── sticky.css
│ │ ├── sticky.js
│ │ ├── sticky.min.css
│ │ └── sticky.min.js
│ │ ├── subheader
│ │ ├── bower.json
│ │ ├── subheader-default-theme.css
│ │ ├── subheader-default-theme.min.css
│ │ ├── subheader.css
│ │ ├── subheader.js
│ │ ├── subheader.min.css
│ │ └── subheader.min.js
│ │ ├── swipe
│ │ ├── bower.json
│ │ ├── swipe.js
│ │ └── swipe.min.js
│ │ ├── switch
│ │ ├── bower.json
│ │ ├── switch-default-theme.css
│ │ ├── switch-default-theme.min.css
│ │ ├── switch.css
│ │ ├── switch.js
│ │ ├── switch.min.css
│ │ └── switch.min.js
│ │ ├── tabs
│ │ ├── bower.json
│ │ ├── tabs-default-theme.css
│ │ ├── tabs-default-theme.min.css
│ │ ├── tabs.css
│ │ ├── tabs.js
│ │ ├── tabs.min.css
│ │ └── tabs.min.js
│ │ ├── textField
│ │ ├── bower.json
│ │ ├── textField-default-theme.css
│ │ ├── textField-default-theme.min.css
│ │ ├── textField.css
│ │ ├── textField.js
│ │ ├── textField.min.css
│ │ └── textField.min.js
│ │ ├── toast
│ │ ├── bower.json
│ │ ├── toast-default-theme.css
│ │ ├── toast-default-theme.min.css
│ │ ├── toast.css
│ │ ├── toast.js
│ │ ├── toast.min.css
│ │ └── toast.min.js
│ │ ├── toolbar
│ │ ├── bower.json
│ │ ├── toolbar-default-theme.css
│ │ ├── toolbar-default-theme.min.css
│ │ ├── toolbar.css
│ │ ├── toolbar.js
│ │ ├── toolbar.min.css
│ │ └── toolbar.min.js
│ │ ├── tooltip
│ │ ├── bower.json
│ │ ├── tooltip-default-theme.css
│ │ ├── tooltip-default-theme.min.css
│ │ ├── tooltip.css
│ │ ├── tooltip.js
│ │ ├── tooltip.min.css
│ │ └── tooltip.min.js
│ │ └── whiteframe
│ │ ├── bower.json
│ │ ├── whiteframe.css
│ │ ├── whiteframe.js
│ │ ├── whiteframe.min.css
│ │ └── whiteframe.min.js
└── package.json
├── angular-mocks
├── .bower.json
├── README.md
├── angular-mocks.js
├── bower.json
├── ngAnimateMock.js
├── ngMock.js
├── ngMockE2E.js
└── package.json
├── angular-route
├── .bower.json
├── README.md
├── angular-route.js
├── angular-route.min.js
├── angular-route.min.js.map
├── bower.json
├── index.js
└── package.json
├── angular-touch
├── .bower.json
├── README.md
├── angular-touch.js
├── angular-touch.min.js
├── angular-touch.min.js.map
├── bower.json
├── index.js
└── package.json
├── angular
├── .bower.json
├── README.md
├── angular-csp.css
├── angular.js
├── angular.min.js
├── angular.min.js.gzip
├── angular.min.js.map
├── bower.json
├── index.js
└── package.json
├── bootstrap
├── .bower.json
├── Gruntfile.js
├── LICENSE
├── README.md
├── bower.json
├── dist
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── grunt
│ ├── .jshintrc
│ ├── bs-commonjs-generator.js
│ ├── bs-glyphicons-data-generator.js
│ ├── bs-lessdoc-parser.js
│ ├── bs-raw-files-generator.js
│ ├── configBridge.json
│ └── sauce_browsers.yml
├── js
│ ├── .jscsrc
│ ├── .jshintrc
│ ├── affix.js
│ ├── alert.js
│ ├── button.js
│ ├── carousel.js
│ ├── collapse.js
│ ├── dropdown.js
│ ├── modal.js
│ ├── popover.js
│ ├── scrollspy.js
│ ├── tab.js
│ ├── tooltip.js
│ └── transition.js
├── less
│ ├── .csscomb.json
│ ├── .csslintrc
│ ├── alerts.less
│ ├── badges.less
│ ├── bootstrap.less
│ ├── breadcrumbs.less
│ ├── button-groups.less
│ ├── buttons.less
│ ├── carousel.less
│ ├── close.less
│ ├── code.less
│ ├── component-animations.less
│ ├── dropdowns.less
│ ├── forms.less
│ ├── glyphicons.less
│ ├── grid.less
│ ├── input-groups.less
│ ├── jumbotron.less
│ ├── labels.less
│ ├── list-group.less
│ ├── media.less
│ ├── mixins.less
│ ├── mixins
│ │ ├── alerts.less
│ │ ├── background-variant.less
│ │ ├── border-radius.less
│ │ ├── buttons.less
│ │ ├── center-block.less
│ │ ├── clearfix.less
│ │ ├── forms.less
│ │ ├── gradients.less
│ │ ├── grid-framework.less
│ │ ├── grid.less
│ │ ├── hide-text.less
│ │ ├── image.less
│ │ ├── labels.less
│ │ ├── list-group.less
│ │ ├── nav-divider.less
│ │ ├── nav-vertical-align.less
│ │ ├── opacity.less
│ │ ├── pagination.less
│ │ ├── panels.less
│ │ ├── progress-bar.less
│ │ ├── reset-filter.less
│ │ ├── reset-text.less
│ │ ├── resize.less
│ │ ├── responsive-visibility.less
│ │ ├── size.less
│ │ ├── tab-focus.less
│ │ ├── table-row.less
│ │ ├── text-emphasis.less
│ │ ├── text-overflow.less
│ │ └── vendor-prefixes.less
│ ├── modals.less
│ ├── navbar.less
│ ├── navs.less
│ ├── normalize.less
│ ├── pager.less
│ ├── pagination.less
│ ├── panels.less
│ ├── popovers.less
│ ├── print.less
│ ├── progress-bars.less
│ ├── responsive-embed.less
│ ├── responsive-utilities.less
│ ├── scaffolding.less
│ ├── tables.less
│ ├── theme.less
│ ├── thumbnails.less
│ ├── tooltip.less
│ ├── type.less
│ ├── utilities.less
│ ├── variables.less
│ └── wells.less
├── package.js
└── package.json
├── hammerjs
├── .bower.json
├── .bowerrc
├── .gitignore
├── .jscsrc
├── .jshintrc
├── .travis.yml
├── CHANGELOG.md
├── CONTRIBUTING.md
├── Gruntfile.coffee
├── LICENSE.md
├── README.md
├── bower.json
├── component.json
├── hammer.js
├── hammer.min.js
├── hammer.min.map
└── package.json
├── jquery-hammerjs
├── .bower.json
├── .bowerrc
├── .gitignore
├── LICENSE
├── README.md
├── bower.json
├── jquery.hammer.js
└── package.json
├── jquery
├── .bower.json
├── MIT-LICENSE.txt
├── bower.json
├── dist
│ ├── jquery.js
│ ├── jquery.min.js
│ └── jquery.min.map
└── src
│ ├── ajax.js
│ ├── ajax
│ ├── jsonp.js
│ ├── load.js
│ ├── parseJSON.js
│ ├── parseXML.js
│ ├── script.js
│ ├── var
│ │ ├── nonce.js
│ │ └── rquery.js
│ └── xhr.js
│ ├── attributes.js
│ ├── attributes
│ ├── attr.js
│ ├── classes.js
│ ├── prop.js
│ ├── support.js
│ └── val.js
│ ├── callbacks.js
│ ├── core.js
│ ├── core
│ ├── access.js
│ ├── init.js
│ ├── parseHTML.js
│ ├── ready.js
│ └── var
│ │ └── rsingleTag.js
│ ├── css.js
│ ├── css
│ ├── addGetHookIf.js
│ ├── curCSS.js
│ ├── defaultDisplay.js
│ ├── hiddenVisibleSelectors.js
│ ├── support.js
│ ├── swap.js
│ └── var
│ │ ├── cssExpand.js
│ │ ├── getStyles.js
│ │ ├── isHidden.js
│ │ ├── rmargin.js
│ │ └── rnumnonpx.js
│ ├── data.js
│ ├── data
│ ├── Data.js
│ ├── accepts.js
│ └── var
│ │ ├── data_priv.js
│ │ └── data_user.js
│ ├── deferred.js
│ ├── deprecated.js
│ ├── dimensions.js
│ ├── effects.js
│ ├── effects
│ ├── Tween.js
│ └── animatedSelector.js
│ ├── event.js
│ ├── event
│ ├── ajax.js
│ ├── alias.js
│ └── support.js
│ ├── exports
│ ├── amd.js
│ └── global.js
│ ├── intro.js
│ ├── jquery.js
│ ├── manipulation.js
│ ├── manipulation
│ ├── _evalUrl.js
│ ├── support.js
│ └── var
│ │ └── rcheckableType.js
│ ├── offset.js
│ ├── outro.js
│ ├── queue.js
│ ├── queue
│ └── delay.js
│ ├── selector-native.js
│ ├── selector-sizzle.js
│ ├── selector.js
│ ├── serialize.js
│ ├── sizzle
│ └── dist
│ │ ├── sizzle.js
│ │ ├── sizzle.min.js
│ │ └── sizzle.min.map
│ ├── traversing.js
│ ├── traversing
│ ├── findFilter.js
│ └── var
│ │ └── rneedsContext.js
│ ├── var
│ ├── arr.js
│ ├── class2type.js
│ ├── concat.js
│ ├── hasOwn.js
│ ├── indexOf.js
│ ├── pnum.js
│ ├── push.js
│ ├── rnotwhite.js
│ ├── slice.js
│ ├── strundefined.js
│ ├── support.js
│ └── toString.js
│ └── wrap.js
├── ngCordova
├── .bower.json
├── CHANGELOG.md
├── LICENSE
├── README.md
├── bower.json
├── dist
│ ├── ng-cordova-mocks.js
│ ├── ng-cordova-mocks.min.js
│ ├── ng-cordova.js
│ └── ng-cordova.min.js
└── package.json
└── virtualjoystick.js
├── .bower.json
├── MIT-LICENSE.txt
├── Makefile
├── README.md
├── examples
├── LimitStickTravelDemo.html
├── LimitStickTravelDemoStationaryBase.html
├── basic.html
├── dual.html
└── stationarybase.html
└── virtualjoystick.js
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "www/vendor"
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .vagrant
2 | .vagrant/*
3 | node_modules
4 | node_modules/*
5 |
6 | /platforms
7 | /plugins
--------------------------------------------------------------------------------
/CordovaApp-debug.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/CordovaApp-debug.apk
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # quadcopterControl
2 | Cordova application to control multiwii quadcopter (by a raspberry pi)
3 |
4 | See http://www.instructables.com/id/The-Drone-Pi/ for more informations on our project
5 |
6 | ##Release APK
7 | You can find the current android apk in "CordovaApp-debug.apk"
8 |
--------------------------------------------------------------------------------
/puphpet/files/exec-always/empty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/files/exec-always/empty
--------------------------------------------------------------------------------
/puphpet/files/exec-once/empty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/files/exec-once/empty
--------------------------------------------------------------------------------
/puphpet/files/startup-always/empty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/files/startup-always/empty
--------------------------------------------------------------------------------
/puphpet/files/startup-once/empty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/files/startup-once/empty
--------------------------------------------------------------------------------
/puphpet/puppet/hiera.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | :backends: yaml
3 | :yaml:
4 | :datadir: '/vagrant/puphpet'
5 | :hierarchy:
6 | - config
7 | :logger: console
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4 | concat: "git://github.com/puppetlabs/puppetlabs-concat.git"
5 | symlinks:
6 | apache: "#{source_dir}"
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/.puppet-lint.rc:
--------------------------------------------------------------------------------
1 | --no-single_quote_string_with_variables-check
2 | --no-80chars-check
3 | --no-class_inherits_from_params_class-check
4 | --no-class_parameter_defaults-check
5 | --no-documentation-check
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/.sync.yml:
--------------------------------------------------------------------------------
1 | ---
2 | .travis.yml:
3 | extras:
4 | - rvm: 1.9.3
5 | env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
6 | - rvm: 2.0.0
7 | env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
8 | Rakefile:
9 | extra_disabled_lint_checks:
10 | - 'disable_only_variable_string'
11 | spec/spec_helper.rb:
12 | unmanaged: true
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/default_mods/load.pp:
--------------------------------------------------------------------------------
1 | # private define
2 | define apache::default_mods::load ($module = $title) {
3 | if defined("apache::mod::${module}") {
4 | include "::apache::mod::${module}"
5 | } else {
6 | ::apache::mod { $module: }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/listen.pp:
--------------------------------------------------------------------------------
1 | define apache::listen {
2 | $listen_addr_port = $name
3 |
4 | # Template uses: $listen_addr_port
5 | concat::fragment { "Listen ${listen_addr_port}":
6 | ensure => present,
7 | target => $::apache::ports_file,
8 | content => template('apache/listen.erb'),
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/actions.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::actions {
2 | apache::mod { 'actions': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/auth_basic.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::auth_basic {
2 | ::apache::mod { 'auth_basic': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::auth_kerb {
2 | ::apache::mod { 'auth_kerb': }
3 | }
4 |
5 |
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/cache.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::cache {
2 | ::apache::mod { 'cache': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/cgi.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::cgi {
2 | Class['::apache::mod::prefork'] -> Class['::apache::mod::cgi']
3 | ::apache::mod { 'cgi': }
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/dav.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::dav {
2 | ::apache::mod { 'dav': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/dev.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::dev {
2 | # Development packages are not apache modules
3 | warning('apache::mod::dev is deprecated; please use apache::dev')
4 | include ::apache::dev
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/expires.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::expires {
2 | ::apache::mod { 'expires': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/headers.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::headers {
2 | ::apache::mod { 'headers': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/include.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::include {
2 | ::apache::mod { 'include': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/perl.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::perl {
2 | ::apache::mod { 'perl': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::proxy_ajp {
2 | Class['::apache::mod::proxy'] -> Class['::apache::mod::proxy_ajp']
3 | ::apache::mod { 'proxy_ajp': }
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/proxy_balancer.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::proxy_balancer {
2 |
3 | include ::apache::mod::proxy
4 | include ::apache::mod::proxy_http
5 |
6 | Class['::apache::mod::proxy'] -> Class['::apache::mod::proxy_balancer']
7 | Class['::apache::mod::proxy_http'] -> Class['::apache::mod::proxy_balancer']
8 | ::apache::mod { 'proxy_balancer': }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/proxy_http.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::proxy_http {
2 | Class['::apache::mod::proxy'] -> Class['::apache::mod::proxy_http']
3 | ::apache::mod { 'proxy_http': }
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/python.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::python {
2 | ::apache::mod { 'python': }
3 | }
4 |
5 |
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::rewrite {
2 | include ::apache::params
3 | ::apache::mod { 'rewrite': }
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/speling.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::speling {
2 | ::apache::mod { 'speling': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/suexec.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::suexec {
2 | ::apache::mod { 'suexec': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/vhost_alias.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::vhost_alias {
2 | ::apache::mod { 'vhost_alias': }
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp:
--------------------------------------------------------------------------------
1 | class apache::mod::xsendfile {
2 | include ::apache::params
3 | ::apache::mod { 'xsendfile': }
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/namevirtualhost.pp:
--------------------------------------------------------------------------------
1 | define apache::namevirtualhost {
2 | $addr_port = $name
3 |
4 | # Template uses: $addr_port
5 | concat::fragment { "NameVirtualHost ${addr_port}":
6 | ensure => present,
7 | target => $::apache::ports_file,
8 | content => template('apache/namevirtualhost.erb'),
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/manifests/proxy.pp:
--------------------------------------------------------------------------------
1 | # Class: apache::proxy
2 | #
3 | # This class enabled the proxy module for Apache
4 | #
5 | # Actions:
6 | # - Enables Apache Proxy module
7 | #
8 | # Requires:
9 | #
10 | # Sample Usage:
11 | #
12 | class apache::proxy {
13 | warning('apache::proxy is deprecated; please use apache::mod::proxy')
14 | include ::apache::mod::proxy
15 | }
16 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64-pe.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | - database
6 | - dashboard
7 | platform: el-6-x86_64
8 | box : centos-64-x64-vbox4210-nocm
9 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
10 | hypervisor : vagrant
11 | CONFIG:
12 | type: pe
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-607-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-607-x64:
3 | roles:
4 | - master
5 | platform: debian-6-amd64
6 | box : debian-607-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-70rc1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-70rc1-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-70rc1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-i386.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-i386:
3 | roles:
4 | - master
5 | platform: debian-7-i386
6 | box : debian-73-i386-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-i386-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/sles-11sp1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11sp1-x64:
3 | roles:
4 | - master
5 | platform: sles-11-x86_64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-amd64
6 | box : puppetlabs/ubuntu-14.04-64-nocm
7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level : debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/fixtures/files/negotiation.conf:
--------------------------------------------------------------------------------
1 | # This is a file only for spec testing
2 |
3 | LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
4 | ForceLanguagePriority Prefer Fallback
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/fixtures/files/spec:
--------------------------------------------------------------------------------
1 | # This is a file only for spec testing
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb:
--------------------------------------------------------------------------------
1 | Fake template for rspec.
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/fixtures/templates/negotiation.conf.erb:
--------------------------------------------------------------------------------
1 | # This is a template only for spec testing
2 |
3 | LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
4 | ForceLanguagePriority Prefer Fallback
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/confd/no-accf.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | AcceptFilter http none
3 | AcceptFilter https none
4 |
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/fastcgi/server.erb:
--------------------------------------------------------------------------------
1 | FastCGIExternalServer <%= @faux_path %> -idle-timeout <%= @timeout %> <%= if @flush then '-flush' end %> -host <%= @host %>
2 | Alias <%= @fcgi_alias %> <%= @faux_path %>
3 | Action <%= @file_type %> <%= @fcgi_alias %>
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/listen.erb:
--------------------------------------------------------------------------------
1 | <%# Listen should always be one of:
2 | -
3 | - :
4 | - [
5 | -%>
6 | Listen <%= @listen_addr_port %>
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb:
--------------------------------------------------------------------------------
1 | <% if @verifyServerCert == true -%>
2 | LDAPVerifyServerCert On
3 | <% else -%>
4 | LDAPVerifyServerCert Off
5 | <% end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb:
--------------------------------------------------------------------------------
1 | ScriptSock "<%= @cgisock_path %>"
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb:
--------------------------------------------------------------------------------
1 | DAVLockDB "<%= @dav_lock %>"
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/deflate.conf.erb:
--------------------------------------------------------------------------------
1 | <%- @types.sort.each do |type| -%>
2 | AddOutputFilterByType DEFLATE <%= type %>
3 | <%- end -%>
4 |
5 | <%- @notes.sort.each do |type,note| -%>
6 | DeflateFilterNote <%= type %> <%=note %>
7 | <%- end -%>
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb:
--------------------------------------------------------------------------------
1 | DirectoryIndex <%= @indexes.join(' ') %>
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/disk_cache.conf.erb:
--------------------------------------------------------------------------------
1 |
2 |
3 | CacheEnable disk /
4 | CacheRoot "<%= @cache_root %>"
5 | CacheDirLevels 2
6 | CacheDirLength 1
7 |
8 |
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/fastcgi.conf.erb:
--------------------------------------------------------------------------------
1 | # The Fastcgi Apache module configuration file is being
2 | # managed by Puppet and changes will be overwritten.
3 |
4 | AddHandler fastcgi-script .fcgi
5 | FastCgiIpcDir "<%= @fastcgi_lib_path %>"
6 |
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/fcgid.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | <% @options.sort_by {|key, value| key}.each do |key, value| -%>
3 | <%= key %> <%= value %>
4 | <% end -%>
5 |
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | StartServers <%= @startservers %>
3 | MinSpareServers <%= @minspareservers %>
4 | MaxSpareServers <%= @maxspareservers %>
5 | ServerLimit <%= @serverlimit %>
6 | MaxClients <%= @maxclients %>
7 | MaxRequestsPerChild <%= @maxrequestsperchild %>
8 |
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/ldap.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | SetHandler ldap-status
3 | <%- if scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%>
4 | Require ip 127.0.0.1 ::1
5 | <%- else -%>
6 | Order deny,allow
7 | Deny from all
8 | Allow from 127.0.0.1 ::1
9 | Satisfy all
10 | <%- end -%>
11 |
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/load.erb:
--------------------------------------------------------------------------------
1 | <% if @loadfiles -%>
2 | <% Array(@loadfiles).each do |loadfile| -%>
3 | LoadFile <%= loadfile %>
4 | <% end -%>
5 |
6 | <% end -%>
7 | LoadModule <%= @_id %> <%= @_path %>
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/mime_magic.conf.erb:
--------------------------------------------------------------------------------
1 | MIMEMagicFile "<%= @magic_file %>"
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/mpm_event.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | StartServers 2
3 | MinSpareThreads 25
4 | MaxSpareThreads 75
5 | ThreadLimit 64
6 | ThreadsPerChild 25
7 | MaxClients 150
8 | MaxRequestsPerChild 0
9 |
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/negotiation.conf.erb:
--------------------------------------------------------------------------------
1 | LanguagePriority <%= Array(@language_priority).join(' ') %>
2 | ForceLanguagePriority <%= Array(@force_language_priority).join(' ') %>
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/prefork.conf.erb:
--------------------------------------------------------------------------------
1 |
2 | StartServers <%= @startservers %>
3 | MinSpareServers <%= @minspareservers %>
4 | MaxSpareServers <%= @maxspareservers %>
5 | ServerLimit <%= @serverlimit %>
6 | MaxClients <%= @maxclients %>
7 | MaxRequestsPerChild <%= @maxrequestsperchild %>
8 |
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/mod/reqtimeout.conf.erb:
--------------------------------------------------------------------------------
1 | RequestReadTimeout header=20-40,minrate=500
2 | RequestReadTimeout body=10,minrate=500
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/namevirtualhost.erb:
--------------------------------------------------------------------------------
1 | <%# NameVirtualHost should always be one of:
2 | - *
3 | - *:
4 | - _default_:
5 | -
6 | - :
7 | -%>
8 | NameVirtualHost <%= @addr_port %>
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/ports_header.erb:
--------------------------------------------------------------------------------
1 | # ************************************
2 | # Listen & NameVirtualHost resources in module puppetlabs-apache
3 | # Managed by Puppet
4 | # ************************************
5 |
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_action.erb:
--------------------------------------------------------------------------------
1 | <% if @action -%>
2 |
3 | Action <%= @action %> /cgi-bin virtual
4 | <% end -%>
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_custom_fragment.erb:
--------------------------------------------------------------------------------
1 | <% if @custom_fragment -%>
2 |
3 | ## Custom fragment
4 | <%= @custom_fragment %>
5 | <% end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_header.erb:
--------------------------------------------------------------------------------
1 | <% if @headers and ! @headers.empty? -%>
2 |
3 | ## Header rules
4 | ## as per http://httpd.apache.org/docs/2.2/mod/mod_headers.html#header
5 | <%- Array(@headers).each do |header_statement| -%>
6 | <%- if header_statement != '' -%>
7 | Header <%= header_statement %>
8 | <%- end -%>
9 | <%- end -%>
10 | <% end -%>
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_rack.erb:
--------------------------------------------------------------------------------
1 | <% if @rack_base_uris -%>
2 |
3 | ## Enable rack
4 | <% Array(@rack_base_uris).each do |uri| -%>
5 | RackBaseURI <%= uri %>
6 | <% end -%>
7 | <% end -%>
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_serveralias.erb:
--------------------------------------------------------------------------------
1 | <% if @serveraliases and ! @serveraliases.empty? -%>
2 |
3 | ## Server aliases
4 | <% Array(@serveraliases).each do |serveralias| -%>
5 | ServerAlias <%= serveralias %>
6 | <% end -%>
7 | <% end -%>
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_suexec.erb:
--------------------------------------------------------------------------------
1 | <% if @suexec_user_group -%>
2 |
3 | SuexecUserGroup <%= @suexec_user_group %>
4 | <% end -%>
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb:
--------------------------------------------------------------------------------
1 | <% if @suphp_engine == 'on' -%>
2 | <% if @suphp_addhandler -%>
3 | suPHP_AddHandler <%= @suphp_addhandler %>
4 | <% end -%>
5 | <% if @suphp_engine -%>
6 | suPHP_Engine <%= @suphp_engine %>
7 | <% end -%>
8 | <% if @suphp_configpath -%>
9 | suPHP_ConfigPath "<%= @suphp_configpath %>"
10 | <% end -%>
11 | <% end -%>
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/apache.pp:
--------------------------------------------------------------------------------
1 | include apache
2 | include apache::mod::php
3 | include apache::mod::cgi
4 | include apache::mod::userdir
5 | include apache::mod::disk_cache
6 | include apache::mod::proxy_http
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/dev.pp:
--------------------------------------------------------------------------------
1 | include apache::dev
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/init.pp:
--------------------------------------------------------------------------------
1 | include apache
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/mod_load_params.pp:
--------------------------------------------------------------------------------
1 | # Tests the path and identifier parameters for the apache::mod class
2 |
3 | # Base class for clarity:
4 | class { 'apache': }
5 |
6 |
7 | # Exaple parameter usage:
8 | apache::mod { 'testmod':
9 | path => '/usr/some/path/mod_testmod.so',
10 | id => 'testmod_custom_name',
11 | }
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/mods.pp:
--------------------------------------------------------------------------------
1 | ## Default mods
2 |
3 | # Base class. Declares default vhost on port 80 and default ssl
4 | # vhost on port 443 listening on all interfaces and serving
5 | # $apache::docroot, and declaring our default set of modules.
6 | class { 'apache':
7 | default_mods => true,
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apache/tests/php.pp:
--------------------------------------------------------------------------------
1 | class { 'apache':
2 | mpm_module => 'prefork',
3 | }
4 | include apache::mod::php
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | "stdlib":
4 | "repo": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
5 | "ref": "v2.2.1"
6 | symlinks:
7 | "apt": "#{source_dir}"
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/.puppet-lint.rc:
--------------------------------------------------------------------------------
1 | --no-single_quote_string_with_variables-check
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 | require 'puppet-lint/tasks/puppet-lint'
3 |
4 | PuppetLint.configuration.send('disable_single_quote_string_with_variables')
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/manifests/release.pp:
--------------------------------------------------------------------------------
1 | # release.pp
2 |
3 | class apt::release (
4 | $release_id
5 | ) {
6 |
7 | include apt::params
8 |
9 | $root = $apt::params::root
10 |
11 | file { "${root}/apt.conf.d/01release":
12 | owner => root,
13 | group => root,
14 | mode => '0644',
15 | content => "APT::Default-Release \"${release_id}\";"
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/manifests/update.pp:
--------------------------------------------------------------------------------
1 | class apt::update {
2 | include apt::params
3 |
4 | exec { 'apt_update':
5 | command => "${apt::params::provider} update",
6 | logoutput => 'on_failure',
7 | refreshonly => true,
8 | timeout => $apt::update_timeout,
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-70rc1-x64:
3 | roles:
4 | - master
5 | platform: debian-70rc1-x64
6 | box : debian-70rc1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-12042-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-server-12.04-amd64
6 | box : ubuntu-server-12042-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/templates/source.list.erb:
--------------------------------------------------------------------------------
1 | # <%= @name %>
2 | deb <% if @architecture %>[arch=<%= @architecture %>] <% end %><%= @location %> <%= @release_real %> <%= @repos %>
3 | <%- if @include_src then -%>
4 | deb-src <% if @architecture %>[arch=<%= @architecture %>] <% end %><%= @location %> <%= @release_real %> <%= @repos %>
5 | <%- end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/builddep.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 | apt::builddep{ 'glusterfs-server': }
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/debian/testing.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 | class { 'apt::debian::testing': }
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/debian/unstable.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 | class { 'apt::debian::unstable': }
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/init.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/key.pp:
--------------------------------------------------------------------------------
1 | # Declare Apt key for apt.puppetlabs.com source
2 | apt::key { 'puppetlabs':
3 | key => '4BD6EC30',
4 | key_server => 'pgp.mit.edu',
5 | key_options => 'http-proxy="http://proxyuser:proxypass@example.org:3128"',
6 | }
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/params.pp:
--------------------------------------------------------------------------------
1 | include apt::params
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/pin.pp:
--------------------------------------------------------------------------------
1 | # pin a release in apt, useful for unstable repositories
2 | apt::pin { 'foo':
3 | packages => '*',
4 | priority => 0,
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/ppa.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 |
3 | # Example declaration of an Apt PPA
4 | apt::ppa{ 'ppa:openstack-ppa/bleeding-edge': }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/release.pp:
--------------------------------------------------------------------------------
1 | class { 'apt': }
2 | class { 'apt::release':
3 | release_id => 'karmic'
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp:
--------------------------------------------------------------------------------
1 | include apt::unattended_upgrades
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/beanstalkd/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
4 |
5 |
6 | gem 'rake'
7 | gem 'rspec-expectations'
8 | gem 'rspec'
9 | gem 'facter'
10 | gem 'puppet', puppetversion
11 | gem 'rspec-puppet'
12 | gem 'puppetlabs_spec_helper'
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/beanstalkd/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rake'
2 |
3 | require 'rspec/core/rake_task'
4 |
5 | task :default => [:spec]
6 |
7 |
8 | RSpec::Core::RakeTask.new(:spec) do |t|
9 | t.pattern = 'spec/*/*_spec.rb'
10 | end
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp
--------------------------------------------------------------------------------
/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'rspec-puppet'
2 |
3 | fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures'))
4 |
5 | RSpec.configure do |c|
6 | c.module_path = File.join(fixture_path, 'modules')
7 | c.manifest_dir = File.join(fixture_path, 'manifests')
8 | end
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | git: "git://github.com/puppetlabs/puppetlabs-git"
4 | symlinks:
5 | composer: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/.travis.yml:
--------------------------------------------------------------------------------
1 | language: ruby
2 | rvm:
3 | - 1.9.3
4 | before_script:
5 | after_script:
6 | script: "bundle exec rake spec"
7 | env:
8 | - PUPPET_VERSION=2.7.23
9 | - PUPPET_VERSION=3.0.2
10 | - PUPPET_VERSION=3.2.4
11 | - PUPPET_VERSION=3.3.0
12 | notifications:
13 | email: false
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppet-lint/tasks/puppet-lint'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/lib/facter/composer_home.rb:
--------------------------------------------------------------------------------
1 | Facter.add(:composer_home) do
2 | setcode do
3 | ENV['HOME']
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/spec/fixtures/manifests/site.pp:
--------------------------------------------------------------------------------
1 | node default {
2 | include composer
3 |
4 | composer::exec {'ohai':
5 | cmd => 'install',
6 | cwd => '/some/cool/dir',
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
--------------------------------------------------------------------------------
/puphpet/puppet/modules/composer/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | 'stdlib':
4 | repo: 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
5 | ref: '4.0.0'
6 | symlinks:
7 | 'concat': '#{source_dir}'
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/.gitattributes:
--------------------------------------------------------------------------------
1 | *.sh eol=lf
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/Modulefile:
--------------------------------------------------------------------------------
1 | name 'puppetlabs-concat'
2 | version '1.1.0'
3 | source 'git://github.com/puppetlabs/puppetlabs-concat.git'
4 | author 'Puppetlabs'
5 | license 'Apache 2.0'
6 | summary 'Concat module'
7 | description 'Concat module'
8 | project_page 'http://github.com/puppetlabs/puppetlabs-concat'
9 | dependency 'puppetlabs/stdlib', '>= 4.0.0'
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 | require 'puppet-lint/tasks/puppet-lint'
3 |
4 | PuppetLint.configuration.send('disable_80chars')
5 | PuppetLint.configuration.send('disable_quoted_booleans')
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/lib/facter/concat_basedir.rb:
--------------------------------------------------------------------------------
1 | # == Fact: concat_basedir
2 | #
3 | # A custom fact that sets the default location for fragments
4 | #
5 | # "${::vardir}/concat/"
6 | #
7 | Facter.add("concat_basedir") do
8 | setcode do
9 | File.join(Puppet[:vardir],"concat")
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-607-x64:
3 | roles:
4 | - master
5 | platform: debian-6-amd64
6 | box : debian-607-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-70rc1-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-70rc1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64.localhost:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: foss
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64.localdomain:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11-x64.local:
3 | roles:
4 | - master
5 | platform: sles-11-x64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11sp1-x64:
3 | roles:
4 | - master
5 | platform: sles-11-x86_64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-amd64
6 | box : puppetlabs/ubuntu-14.04-64-nocm
7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level : debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/concat/tests/init.pp:
--------------------------------------------------------------------------------
1 | concat { '/tmp/concat':
2 | ensure => present,
3 | force => true,
4 | owner => 'root',
5 | group => 'root',
6 | mode => '0644',
7 | }
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/elasticsearch/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: git://github.com/puppetlabs/puppetlabs-stdlib.git
4 | symlinks:
5 | elasticsearch: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/elasticsearch/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'rspec-puppet'
7 | gem 'puppetlabs_spec_helper', '>= 0.1.0'
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/elasticsearch/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint'
4 | require './spec/lib/template_check_task.rb'
5 | require './spec/lib/parser_validate_task.rb'
6 | PuppetLint.configuration.send("disable_80chars")
7 | PuppetLint.configuration.send("disable_class_inherits_from_params_class")
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/elasticsearch/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/module_spec_helper'
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb:
--------------------------------------------------------------------------------
1 | ### MANAGED BY PUPPET ###
2 |
3 | <% scope.lookupvar('elasticsearch::init_defaults').sort.map do |key, value| -%>
4 | <%= key %>=<%= value %>
5 | <% end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/epel/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
3 | def default_facts
4 | {
5 | :osfamily => 'RedHat',
6 | :operatingsystem => 'CentOS',
7 | }
8 | end
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/epel/tests/init.pp:
--------------------------------------------------------------------------------
1 | # And by test, I mean, run this thing for me using Puppet apply and I'll check
2 | # it out.
3 | include 'epel'
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/erlang/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | apt: git://github.com/puppetlabs/puppetlabs-apt.git
4 | stdlib: git://github.com/puppetlabs/puppetlabs-stdlib.git
5 | epel: git://github.com/stahnma/puppet-module-epel.git
6 | symlinks:
7 | erlang: "#{source_dir}"
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/erlang/.rspec:
--------------------------------------------------------------------------------
1 | --format documentation
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/erlang/Gemfile:
--------------------------------------------------------------------------------
1 | source "http://rubygems.org"
2 |
3 |
4 | gem "rake"
5 | gem "puppet", ENV['PUPPET_VERSION'] || '~> 3.2.0'
6 | gem "puppet-lint"
7 | gem "rspec-puppet", '~> 1.0.0'
8 | gem "puppetlabs_spec_helper"
9 | gem "rspec-system-puppet"
10 | gem "vagrant-wrapper"
11 | gem "puppet-syntax"
12 |
13 | group :development do
14 | gem "puppet-blacksmith"
15 | end
16 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/erlang/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | symlinks:
3 | "firewall": "#{source_dir}"
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/Modulefile:
--------------------------------------------------------------------------------
1 | name 'puppetlabs-firewall'
2 | version '1.1.1'
3 | source 'git://github.com/puppetlabs/puppetlabs-firewall.git'
4 | author 'puppetlabs'
5 | license 'ASL 2.0'
6 | summary 'Firewall Module'
7 | description 'Manages Firewalls such as iptables'
8 | project_page 'http://forge.puppetlabs.com/puppetlabs/firewall'
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
3 | require 'puppet-lint/tasks/puppet-lint'
4 | PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp']
5 |
6 | task :default do
7 | sh %{rake -T}
8 | end
9 |
10 | desc 'Run reasonably quick tests for CI'
11 | task :ci => [
12 | :lint,
13 | :spec,
14 | ]
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/lib/facter/ip6tables_version.rb:
--------------------------------------------------------------------------------
1 | Facter.add(:ip6tables_version) do
2 | confine :kernel => :linux
3 | setcode do
4 | version = Facter::Util::Resolution.exec('ip6tables --version')
5 | if version
6 | version.match(/\d+\.\d+\.\d+/).to_s
7 | else
8 | nil
9 | end
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/lib/facter/iptables_version.rb:
--------------------------------------------------------------------------------
1 | Facter.add(:iptables_version) do
2 | confine :kernel => :linux
3 | setcode do
4 | version = Facter::Util::Resolution.exec('iptables --version')
5 | if version
6 | version.match(/\d+\.\d+\.\d+/).to_s
7 | else
8 | nil
9 | end
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-fusion503-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box
8 | hypervisor : fusion
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-607-x64:
3 | roles:
4 | - master
5 | platform: debian-6-amd64
6 | box : debian-607-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-70rc1-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-70rc1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11sp1-x64:
3 | roles:
4 | - master
5 | platform: sles-11-x86_64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-64
6 | box: puppetlabs/ubuntu-14.04-64-nocm
7 | hypervisor : vagrant
8 | CONFIG:
9 | type: foss
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | vcsrepo: git://github.com/puppetlabs/puppetlabs-vcsrepo.git
4 | symlinks:
5 | git: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/CHANGELOG:
--------------------------------------------------------------------------------
1 | 2011-06-03 - Dan Bode - 0.0.1
2 | * initial commit
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/Modulefile:
--------------------------------------------------------------------------------
1 | name 'puppetlabs-git'
2 | version '0.0.3'
3 | source 'git://github.com/puppetlabs/puppetlabs-git.git'
4 | author 'puppetlabs'
5 | license 'Apache 2.0'
6 | summary 'module for installing git'
7 | description 'module for installing git'
8 | project_page 'https://github.com/puppetlabs/puppetlabs-git/'
9 | dependency 'puppetlabs/vcsrepo'
10 |
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/lib/facter/git_exec_path.rb:
--------------------------------------------------------------------------------
1 | # git_exec_path.rb
2 | Facter.add('git_exec_path') do
3 | setcode 'git --exec-path 2>/dev/null'
4 | end
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/lib/facter/git_version.rb:
--------------------------------------------------------------------------------
1 | # git_version
2 | Facter.add('git_version') do
3 | setcode 'git --version 2>/dev/null'.sub(/git version /, '')
4 | end
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/manifests/gitosis.pp:
--------------------------------------------------------------------------------
1 | # Class: gitosis
2 | #
3 | # This installs and configures gitosis
4 | #
5 | # Requires:
6 | # - Class[git]
7 | #
8 | class git::gitosis {
9 | include ::git
10 | package {'gitosis':
11 | ensure => present
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/manifests/init.pp:
--------------------------------------------------------------------------------
1 | # Class: git
2 | #
3 | # This class installs git
4 | #
5 | # Actions:
6 | # - Install the git package
7 | #
8 | # Sample Usage:
9 | # class { 'git': }
10 | #
11 | class git {
12 | if ! defined(Package['git']) {
13 | package { 'git':
14 | ensure => present
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/tests/gitosis.pp:
--------------------------------------------------------------------------------
1 | class { 'git::gitosis': }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/git/tests/init.pp:
--------------------------------------------------------------------------------
1 | class { 'git': }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: http://github.com/puppetlabs/puppetlabs-stdlib.git
4 | symlinks:
5 | java: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 | require 'puppet-lint/tasks/puppet-lint'
3 |
4 | PuppetLint.configuration.send("disable_80chars")
5 | PuppetLint.configuration.log_format = "%{path}:%{linenumber}:%{check}:%{KIND}:%{message}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/centos-64-x64-fusion.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-fusion503-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box
8 | hypervisor : fusion
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/debian-607-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-607-x64:
3 | roles:
4 | - master
5 | platform: debian-6-amd64
6 | box : debian-607-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/debian-70rc1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-70rc1-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-70rc1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/sles-11sp1-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11sp1-x64:
3 | roles:
4 | - master
5 | platform: sles-11-x86_64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-amd64
6 | box : puppetlabs/ubuntu-14.04-64-nocm
7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level : debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/java/tests/init.pp:
--------------------------------------------------------------------------------
1 | class { 'java':
2 | distribution => 'jdk',
3 | version => 'latest',
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mailcatcher/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4 | symlinks:
5 | mailcatcher: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mailcatcher/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 | require 'puppet-lint/tasks/puppet-lint'
3 |
4 | PuppetLint.configuration.send('disable_class_inherits_from_params_class')
5 | PuppetLint.configuration.send("disable_80chars")
6 | PuppetLint.configuration.log_format = "%{path}:%{linenumber}:%{check}:%{KIND}:%{message}"
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mailcatcher/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4 | "apt": "git://github.com/puppetlabs/puppetlabs-apt.git"
5 | symlinks:
6 | "mongodb": "#{source_dir}"
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/manifests/replset.pp:
--------------------------------------------------------------------------------
1 | # Wrapper class useful for hiera based deployments
2 |
3 | class mongodb::replset(
4 | $sets = undef
5 | ) {
6 |
7 | if $sets {
8 | create_resources(mongodb_replset, $sets)
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/sles-11-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11-x64.local:
3 | roles:
4 | - master
5 | platform: sles-11-x64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/tests/globals.pp:
--------------------------------------------------------------------------------
1 | class { 'mongodb::globals':
2 | manage_package_repo => true
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/tests/init.pp:
--------------------------------------------------------------------------------
1 | class { '::mongodb': }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mongodb/tests/server.pp:
--------------------------------------------------------------------------------
1 | class { 'mongodb::globals': manage_package_repo => true }->
2 | class { 'mongodb::server': }
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/monitor/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint'
4 | PuppetLint.configuration.send("disable_80chars")
5 | PuppetLint.configuration.send('disable_class_parameter_defaults')
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/monitor/spec/fixtures/manifests/site.pp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/monitor/spec/fixtures/manifests/site.pp
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | "stdlib": "https://github.com/puppetlabs/puppetlabs-stdlib"
4 | symlinks:
5 | "mysql": "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/bindings/java.pp:
--------------------------------------------------------------------------------
1 | # Private class
2 | class mysql::bindings::java {
3 |
4 | package { 'mysql-connector-java':
5 | ensure => $mysql::bindings::java_package_ensure,
6 | name => $mysql::bindings::java_package_name,
7 | provider => $mysql::bindings::java_package_provider,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/bindings/perl.pp:
--------------------------------------------------------------------------------
1 | # Private class
2 | class mysql::bindings::perl {
3 |
4 | package{ 'perl_mysql':
5 | ensure => $mysql::bindings::perl_package_ensure,
6 | name => $mysql::bindings::perl_package_name,
7 | provider => $mysql::bindings::perl_package_provider,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/bindings/php.pp:
--------------------------------------------------------------------------------
1 | # Private class: See README.md
2 | class mysql::bindings::php {
3 |
4 | package { 'php-mysql':
5 | ensure => $mysql::bindings::php_package_ensure,
6 | name => $mysql::bindings::php_package_name,
7 | provider => $mysql::bindings::php_package_provider,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/bindings/python.pp:
--------------------------------------------------------------------------------
1 | # Private class
2 | class mysql::bindings::python {
3 |
4 | package { 'python-mysqldb':
5 | ensure => $mysql::bindings::python_package_ensure,
6 | name => $mysql::bindings::python_package_name,
7 | provider => $mysql::bindings::python_package_provider,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/bindings/ruby.pp:
--------------------------------------------------------------------------------
1 | # Private class
2 | class mysql::bindings::ruby {
3 |
4 | package{ 'ruby_mysql':
5 | ensure => $mysql::bindings::ruby_package_ensure,
6 | name => $mysql::bindings::ruby_package_name,
7 | provider => $mysql::bindings::ruby_package_provider,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/client/install.pp:
--------------------------------------------------------------------------------
1 | class mysql::client::install {
2 |
3 | package { 'mysql_client':
4 | ensure => $mysql::client::package_ensure,
5 | name => $mysql::client::package_name,
6 | }
7 |
8 | }
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/server/install.pp:
--------------------------------------------------------------------------------
1 | #
2 | class mysql::server::install {
3 |
4 | package { 'mysql-server':
5 | ensure => $mysql::server::package_ensure,
6 | name => $mysql::server::package_name,
7 | }
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/manifests/server/mysqltuner.pp:
--------------------------------------------------------------------------------
1 | #
2 | class mysql::server::mysqltuner($ensure='present') {
3 | # mysql performance tester
4 | file { '/usr/local/bin/mysqltuner':
5 | ensure => $ensure,
6 | mode => '0550',
7 | source => 'puppet:///modules/mysql/mysqltuner.pl',
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-510-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-510-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-510-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-510-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/sles-11-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11-x64.local:
3 | roles:
4 | - master
5 | platform: sles-11-x64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-amd64
6 | box : puppetlabs/ubuntu-14.04-64-nocm
7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level : debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/classes/mysql_server_mysqltuner_spec.rb:
--------------------------------------------------------------------------------
1 | describe 'mysql::server::mysqltuner' do
2 |
3 | it { should contain_file('/usr/local/bin/mysqltuner') }
4 |
5 | end
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'simplecov'
2 | SimpleCov.start do
3 | add_filter "/spec/"
4 | end
5 | require 'puppetlabs_spec_helper/module_spec_helper'
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/templates/my.cnf.pass.erb:
--------------------------------------------------------------------------------
1 | [client]
2 | user=root
3 | host=localhost
4 | <% unless scope.lookupvar('mysql::server::root_password') == 'UNSET' -%>
5 | password='<%= scope.lookupvar('mysql::server::root_password') %>'
6 | <% end -%>
7 | socket=<%= @options['client']['socket'] -%>
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/backup.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::server':
2 | config_hash => {'root_password' => 'password'}
3 | }
4 | class { 'mysql::backup':
5 | backupuser => 'myuser',
6 | backuppassword => 'mypassword',
7 | backupdir => '/tmp/backups',
8 | }
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/bindings.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::bindings':
2 | php_enable => 'true',
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/init.pp:
--------------------------------------------------------------------------------
1 | include mysql
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/java.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::java':}
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/mysql_database.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::server':
2 | config_hash => {'root_password' => 'password'}
3 | }
4 | database{ ['test1', 'test2', 'test3']:
5 | ensure => present,
6 | charset => 'utf8',
7 | require => Class['mysql::server'],
8 | }
9 | database{ 'test4':
10 | ensure => present,
11 | charset => 'latin1',
12 | }
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/mysql_grant.pp:
--------------------------------------------------------------------------------
1 | mysql_grant{'test1@localhost/redmine.*':
2 | user => 'test1@localhost',
3 | table => 'redmine.*',
4 | privileges => ['UPDATE'],
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/perl.pp:
--------------------------------------------------------------------------------
1 | include mysql::perl
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/python.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::python':}
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/ruby.pp:
--------------------------------------------------------------------------------
1 | include mysql::ruby
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/server.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::server':
2 | root_password => 'password',
3 | }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/server/account_security.pp:
--------------------------------------------------------------------------------
1 | class { 'mysql::server':
2 | config_hash => { 'root_password' => 'password', },
3 | }
4 | class { 'mysql::server::account_security': }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/mysql/tests/server/config.pp:
--------------------------------------------------------------------------------
1 | mysql::server::config { 'testfile':
2 | settings => {
3 | 'mysqld' => {
4 | 'bind-address' => '0.0.0.0',
5 | 'read-only' => true,
6 | },
7 | 'client' => {
8 | 'port' => '3306'
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | symlinks:
3 | nginx: "#{source_dir}"
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/.travis/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
3 | # use librarian-puppet to manage fixtures instead of .fixtures.yml
4 | # offers more possibilities like explicit version management, forge downloads,...
5 | task :librarian_spec_prep do
6 | sh "librarian-puppet install --path=$PWD/spec/fixtures/modules/"
7 | end
8 | task :spec_prep => :librarian_spec_prep
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/Puppetfile:
--------------------------------------------------------------------------------
1 | forge 'http://forge.puppetlabs.com'
2 |
3 | mod 'puppetlabs/stdlib', '>= 3.0.0'
4 | mod 'puppetlabs/apt', '>= 1.0.0'
5 | mod 'puppetlabs/concat', '>= 1.1.0'
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/Puppetfile.lock:
--------------------------------------------------------------------------------
1 | FORGE
2 | remote: http://forge.puppetlabs.com
3 | specs:
4 | puppetlabs/apt (1.2.0)
5 | puppetlabs/stdlib (>= 2.2.1)
6 | puppetlabs/concat (1.1.0)
7 | puppetlabs/stdlib (4.1.0)
8 |
9 | DEPENDENCIES
10 | puppetlabs/apt (>= 1.0.0)
11 | puppetlabs/concat (>= 1.1.0)
12 | puppetlabs/stdlib (>= 3.0.0)
13 |
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jfryman/puppet-nginx",
3 | "type": "project",
4 | "description": "Puppet module for nginx installation",
5 | "keywords": ["puppet", "nginx"],
6 | "license": "Apache-2.0",
7 | "require": {
8 | },
9 | "extra": {
10 | "branch-alias": {
11 | "dev-master": "1.x-dev"
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/manifests/package/freebsd.pp:
--------------------------------------------------------------------------------
1 | # Class: nginx::package::freebsd
2 | #
3 | # Manage the nginx package on FreeBSD
4 | class nginx::package::freebsd (
5 | $package_name = 'nginx',
6 | $package_ensure = 'present'
7 | ) {
8 |
9 | package { $package_name:
10 | ensure => $package_ensure,
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
3 | RSpec.configure do |c|
4 | c.default_facts = {
5 | :kernel => 'Linux',
6 | :concat_basedir => '/var/lib/puppet/concat',
7 | }
8 | end
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/templates/conf.d/map.erb:
--------------------------------------------------------------------------------
1 | map <%= @string %> $<%= @name %> {
2 | <% if @hostnames -%>
3 | hostnames;
4 | <% end -%>
5 | <% if @default -%>
6 | default <%= @default %>;
7 | <% end -%>
8 | <% if @mappings -%>
9 | <%- @mappings.sort_by{|k,v| k}.each do |key,value| -%>
10 | <%= key %> <%= value %>;
11 | <%- end -%>
12 | <% end -%>
13 | }
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/templates/conf.d/upstream_member.erb:
--------------------------------------------------------------------------------
1 | server <%= @server %>:<%= @port %> fail_timeout=<%= @upstream_fail_timeout %>;
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/templates/conf.d/upstream_members.erb:
--------------------------------------------------------------------------------
1 | <% @members.each do |i| %>
2 | server <%= i %> fail_timeout=<%= @upstream_fail_timeout %>;<% end %>
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/templates/vhost/locations/alias.erb:
--------------------------------------------------------------------------------
1 | alias <%= @location_alias %>;
2 | <% if defined? @autoindex -%>
3 | autoindex <%= @autoindex %>;
4 | <% end -%>
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/templates/vhost/locations/stub_status.erb:
--------------------------------------------------------------------------------
1 | stub_status on;
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/tests/init.pp:
--------------------------------------------------------------------------------
1 | # The notify before should always come BEFORE all resources
2 | # managed by the nginx class
3 | # and the notify last should always come AFTER all resources
4 | # managed by the nginx class.
5 | node default {
6 | notify { 'before': }
7 | -> class { 'nginx': }
8 | -> notify { 'last': }
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/tests/location_alias.pp:
--------------------------------------------------------------------------------
1 | include nginx
2 |
3 | nginx::resource::location { 'www.test.com-alias':
4 | ensure => present,
5 | location => '/some/url',
6 | location_alias => '/new/url/',
7 | vhost => 'www.test.com',
8 | }
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/nginx/tests/upstream.pp:
--------------------------------------------------------------------------------
1 | include nginx
2 |
3 | nginx::resource::upstream { 'proxypass':
4 | ensure => present,
5 | members => [
6 | 'localhost:3000',
7 | 'localhost:3001',
8 | 'localhost:3002',
9 | ],
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4 | symlinks:
5 | "ntp": "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/manifests/install.pp:
--------------------------------------------------------------------------------
1 | #
2 | class ntp::install inherits ntp {
3 |
4 | package { 'ntp':
5 | ensure => $package_ensure,
6 | name => $package_name,
7 | }
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/sles-11-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11-x64.local:
3 | roles:
4 | - master
5 | platform: sles-11-x64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb:
--------------------------------------------------------------------------------
1 | #my uber ntp config
2 | #
3 |
4 | server foobar
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/unit/puppet/provider/README.markdown:
--------------------------------------------------------------------------------
1 | Provider Specs
2 | ==============
3 |
4 | Define specs for your providers under this directory.
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/spec/unit/puppet/type/README.markdown:
--------------------------------------------------------------------------------
1 | Resource Type Specs
2 | ===================
3 |
4 | Define specs for your resource types in this directory.
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/ntp/tests/init.pp:
--------------------------------------------------------------------------------
1 | node default {
2 |
3 | notify { 'enduser-before': }
4 | notify { 'enduser-after': }
5 |
6 | class { 'ntp':
7 | require => Notify['enduser-before'],
8 | before => Notify['enduser-after'],
9 | }
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/.gemfile:
--------------------------------------------------------------------------------
1 | source :rubygems
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'puppetlabs_spec_helper', '>= 0.1.0'
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint'
4 | PuppetLint.configuration.send("disable_80chars")
5 | PuppetLint.configuration.send('disable_class_parameter_defaults')
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/lib/facter/php_fact_extension_dir.rb:
--------------------------------------------------------------------------------
1 | Facter.add("php_fact_extension_dir") do
2 | setcode do
3 | Facter::Util::Resolution.exec('php-config --extension-dir') || nil
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/lib/facter/php_fact_version.rb:
--------------------------------------------------------------------------------
1 | Facter.add("php_fact_version") do
2 | setcode do
3 | Facter::Util::Resolution.exec('php-config --version') || nil
4 | end
5 | end
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/manifests/devel.pp:
--------------------------------------------------------------------------------
1 | # Class php::devel
2 | #
3 | # Installs php devel package
4 | #
5 | class php::devel {
6 |
7 | if $php::package_devel != ''
8 | and ! defined(Package[$php::package_devel]) {
9 | package { $php::package_devel :
10 | ensure => $php::manage_package,
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/templates/extra-ini.erb:
--------------------------------------------------------------------------------
1 | ; File Managed by Puppet
2 |
3 | <% if @value != "" -%>
4 | <% if @value.is_a? Array -%>
5 | <% @value.each do |name| -%>
6 | <%= name %>
7 | <% end %>
8 | <% else -%>
9 | <%= value %>
10 | <% end -%>
11 | <% end -%>
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/php/templates/spec.erb:
--------------------------------------------------------------------------------
1 | # This is a template used only for rspec tests
2 |
3 | # Yaml of the whole scope
4 | <%= scope.to_hash.reject { |k,v| !( k.is_a?(String) && v.is_a?(String) ) }.to_yaml %>
5 |
6 | # Custom Options
7 | <%= options['opt_a'] %>
8 | <%= options['opt_b'] %>
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | apt: "https://github.com/puppetlabs/puppetlabs-apt.git"
4 | stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
5 | firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
6 | concat: "https://github.com/puppetlabs/puppetlabs-concat.git"
7 | symlinks:
8 | postgresql: "#{source_dir}"
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'bundler/setup'
3 |
4 | Bundler.require :default
5 |
6 | require 'puppetlabs_spec_helper/rake_tasks'
7 | require 'puppet-lint/tasks/puppet-lint'
8 |
9 | task :default do
10 | sh %{rake -T}
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-510-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-510-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-510-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-607-x64:
3 | roles:
4 | - master
5 | platform: debian-6-amd64
6 | box : debian-607-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/devel_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'postgresql::lib::devel', :type => :class do
4 | let :facts do
5 | {
6 | :osfamily => 'Debian',
7 | :operatingsystem => 'Debian',
8 | :operatingsystemrelease => '6.0',
9 | }
10 | end
11 | it { should contain_class("postgresql::lib::devel") }
12 | end
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/unit/classes/params_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'postgresql::params', :type => :class do
4 | let :facts do
5 | {
6 | :osfamily => 'Debian',
7 | :operatingsystem => 'Debian',
8 | :operatingsystemrelease => '6.0',
9 | }
10 | end
11 | it { should contain_class("postgresql::params") }
12 | end
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'postgresql_password', :type => :puppet_function do
4 | it { should run.with_params('foo', 'bar').
5 | and_return('md596948aad3fcae80c08a35c9b5958cd89') }
6 | end
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/postgresql/templates/pg_hba_rule.conf:
--------------------------------------------------------------------------------
1 |
2 | # Rule Name: <%=@name%>
3 | # Description: <%=@description%>
4 | # Order: <%=@order%>
5 | <%=@type%> <%=@database%> <%=@user%> <%=@address%> <%=@auth_method%> <%=@auth_option%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/README.md:
--------------------------------------------------------------------------------
1 | # Puppet module: puphpet
2 |
3 | This is a Puppet module for [PuPHPet](https://puphpet.com)-related code
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/files/xdebug_cli_alias.erb:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | XDEBUG_CONFIG="idekey=xdebug" php -dxdebug.remote_host=`echo $SSH_CLIENT | cut -d "=" -f 2 | awk '{print $1}'` "$@"
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/manifests/init.pp:
--------------------------------------------------------------------------------
1 | class puphpet inherits puphpet::params {}
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb:
--------------------------------------------------------------------------------
1 | <%= @vhost['custom_fragment'] %>
2 |
3 | <% if !@require_mod_php %>
4 | <% if @vhost.has_key?('engine') %>
5 | <% if @vhost['engine'] == 'php' %>
6 | ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://<%= @fcgi_string %><%= @vhost['docroot'] %>/$1
7 | <% end %>
8 | <% end %>
9 | <% end %>
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/templates/apache/hhvm-httpd.conf.erb:
--------------------------------------------------------------------------------
1 | <%= scope.function_template(['apache/httpd.conf.erb']) -%>
2 |
3 | FastCgiExternalServer <%= @docroot %>/hhvm.external -host <%= @hhvm_values['settings']['host'] %>:<%= @hhvm_values['settings']['port'] %>
4 | AddHandler hhvm .php
5 | Action hhvm /usr/lib/cgi-bin/hhvm.external
6 | Alias /usr/lib/cgi-bin/ <%= @docroot %>/
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/php-wrapper.erb:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | PHP_FCGI_MAX_REQUESTS=10000
4 | export PHP_FCGI_MAX_REQUESTS
5 |
6 | exec <%= @phpcgi %>
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/spdy_conf.erb:
--------------------------------------------------------------------------------
1 | # FcgidMaxRequestsPerProcess should be <= PHP_FCGI_MAX_REQUESTS
2 | FcgidMaxRequestsPerProcess 10000
3 |
4 |
5 | AddHandler fcgid-script .php
6 | Options +ExecCGI
7 | FcgidWrapper /usr/local/bin/php-wrapper .php
8 |
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | "concat": "git://github.com/puppetlabs/puppetlabs-concat.git"
4 | "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
5 | symlinks:
6 | "puppi": "#{source_dir}"
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/.gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'puppetlabs_spec_helper', '>= 0.1.0'
7 | gem 'puppet-blacksmith', '>= 2.0.0'
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet_blacksmith/rake_tasks'
4 | require 'puppet-lint'
5 | PuppetLint.configuration.send("disable_80chars")
6 | PuppetLint.configuration.send('disable_class_parameter_defaults')
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/files/info/readme/readme:
--------------------------------------------------------------------------------
1 | Default ReadMe File.
2 | Edit puppi/files/info/readme/readme to change this message
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/files/info/readme/readme-default:
--------------------------------------------------------------------------------
1 | No extra node or role related info available.
2 | To have node or role specific extar info, create
3 | modules/puppi/files/info/readme/readme--$hostname or
4 | modules/puppi/files/info/readme/readme-$role
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/files/scripts/execute.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # execute.sh - Made for Puppi
3 | # This script just executes what is passed as argument
4 |
5 | # Sources common header for Puppi scripts
6 | . $(dirname $0)/header || exit 10
7 |
8 | #parse variables
9 | command=$(eval "echo "$*"")
10 |
11 | #execute command
12 | eval "${command}"
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/lib/facter/last_run.rb:
--------------------------------------------------------------------------------
1 | require 'facter'
2 | Facter.add("last_run") do
3 | confine :kernel => [ 'Linux' , 'SunOS' , 'FreeBSD' , 'Darwin' ]
4 | setcode do
5 | Facter::Util::Resolution.exec('date')
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/lib/facter/windows_common_appdata.rb:
--------------------------------------------------------------------------------
1 | require 'facter'
2 | Facter.add(:windows_common_appdata) do
3 | confine :operatingsystem => :windows
4 | if Facter.value(:osfamily) == "windows"
5 | require 'win32/dir'
6 | end
7 | setcode do
8 | Dir::COMMON_APPDATA
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/manifests/two.pp:
--------------------------------------------------------------------------------
1 | # Class: puppi::two
2 | #
3 | # Installs Puppi NextGen
4 | #
5 | class puppi::two {
6 |
7 | # The Puppi command
8 | package { 'puppi':
9 | ensure => present,
10 | provider => 'gem',
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/puppi/templates/log.erb:
--------------------------------------------------------------------------------
1 | <% @array_log.each do |path| %><%= path %>
2 | <% end %>
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/pyenv/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib:
4 | "repo": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
5 | "ref": "3.2.1"
6 | vcsrepo: "git://github.com/puppetlabs/puppetlabs-vcsrepo.git"
7 | symlinks:
8 | apache: "#{source_dir}"
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/pyenv/.travis.yml:
--------------------------------------------------------------------------------
1 | language: ruby
2 | bundler_args: --without development debug acceptance
3 | script: "bundle exec rake lint"
4 | rvm:
5 | - 1.8.7
6 | - 1.9.3
7 | env:
8 | matrix:
9 | - PUPPET_GEM_VERSION="~> 3.4.0"
10 | - PUPPET_GEM_VERSION="~> 3.5.0"
11 | matrix:
12 | fast_finish: true
13 | notifications:
14 | email: false
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/pyenv/lib/puppet/feature/pyenv.rb:
--------------------------------------------------------------------------------
1 | require 'puppet/util/feature'
2 |
3 | Puppet.features.add(:pyenv) {
4 | if not Facter.value('pyenv_binary').nil?
5 | File.executable?(Facter.value('pyenv_binary'))
6 | else
7 | true
8 | end
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/spec/README.markdown:
--------------------------------------------------------------------------------
1 | Specs
2 | =====
3 |
4 | The Puppet project uses RSpec for testing.
5 |
6 | For more information on RSpec, see http://rspec.info/
7 |
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/templates/rabbitmq-env.conf.erb:
--------------------------------------------------------------------------------
1 | <%- @environment_variables.keys.sort.each do |key| -%>
2 | <%- if @environment_variables[key] != 'UNSET' -%>
3 | <%= key %>=<%= @environment_variables[key] %>
4 | <%- end -%>
5 | <%- end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp:
--------------------------------------------------------------------------------
1 | # install first the garethr-erlang module. See README.md
2 | include 'erlang'
3 |
4 | class { 'erlang': epel_enable => true}
5 | Class['erlang'] -> Class['rabbitmq']
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/permissions/add.pp:
--------------------------------------------------------------------------------
1 | rabbitmq_user { 'blah7':
2 | password => 'foo',
3 | }
4 | rabbitmq_vhost { 'test5': }
5 | rabbitmq_user_permissions { 'blah7@test5':
6 | configure_permission => 'config2',
7 | read_permission => 'ready',
8 | #write_permission => 'ready',
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/plugin.pp:
--------------------------------------------------------------------------------
1 | class { 'rabbitmq::server':
2 | config_stomp => true,
3 | }
4 |
5 | $rabbitmq_plugins = [ 'amqp_client', 'rabbitmq_stomp' ]
6 |
7 | rabbitmq_plugin { $rabbitmq_plugins:
8 | ensure => present,
9 | require => Class['rabbitmq::server'],
10 | provider => 'rabbitmqplugins',
11 | }
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp:
--------------------------------------------------------------------------------
1 | # requires pupetlabs-apt
2 | include rabbitmq::repo::apt
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/server.pp:
--------------------------------------------------------------------------------
1 | class { 'rabbitmq::server':
2 | port => '5672',
3 | delete_guest_user => true,
4 | version => 'latest',
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/service.pp:
--------------------------------------------------------------------------------
1 | class { 'rabbitmq::service': }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/user/add.pp:
--------------------------------------------------------------------------------
1 | rabbitmq_user { ['blah2', 'blah3', 'blah4']:
2 | password => 'phoey!',
3 | #provider => 'rabbitmqctl',
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp:
--------------------------------------------------------------------------------
1 | rabbitmq_vhost { ['fooey', 'blah']: }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/redis/Gemfile:
--------------------------------------------------------------------------------
1 | source :rubygems
2 |
3 | puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
4 |
5 | gem 'rake'
6 | gem 'puppet-lint'
7 | gem 'puppet', puppetversion
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/redis/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppet-lint/tasks/puppet-lint'
2 |
3 | PuppetLint.configuration.send("disable_80chars")
4 | PuppetLint.configuration.send('disable_class_parameter_defaults')
5 |
6 | task :default => :lint
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/redis/templates/redis.logrotate.erb:
--------------------------------------------------------------------------------
1 | <%= @conf_logfile_real %> {
2 | weekly
3 | rotate 10
4 | copytruncate
5 | delaycompress
6 | compress
7 | notifempty
8 | missingok
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/Puppetfile:
--------------------------------------------------------------------------------
1 | forge 'http://forge.puppetlabs.com'
2 |
3 | metadata
4 |
5 | mod 'puppetlabs/apache', '>= 1.1.0'
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/lib/facter/rvm_installed.rb:
--------------------------------------------------------------------------------
1 | Facter.add("rvm_installed") do
2 | rvm_binary = "/usr/local/rvm/bin/rvm"
3 |
4 | setcode do
5 | File.exists? rvm_binary
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/lib/facter/rvm_version.rb:
--------------------------------------------------------------------------------
1 | Facter.add("rvm_version") do
2 | rvm_binary = "/usr/local/rvm/bin/rvm"
3 |
4 | setcode do
5 | File.exists?(rvm_binary) ? `#{rvm_binary} version`.strip.match(/rvm ([0-9]+\.[0-9]+\.[0-9]+) .*/)[1] : nil
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/manifests/gpg.pp:
--------------------------------------------------------------------------------
1 | # RVM's GPG key security signing mechanism requires gpg2 for key import / validation
2 |
3 | class rvm::gpg($package = $rvm::params::gpg_package) inherits rvm::params {
4 | ensure_packages([$package])
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/manifests/group.pp:
--------------------------------------------------------------------------------
1 | # Create the RVM group
2 | class rvm::group inherits rvm::params {
3 | ensure_resource('group', $rvm::params::group, {'ensure' => 'present' })
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/manifests/params.pp:
--------------------------------------------------------------------------------
1 | # Default module parameters
2 | class rvm::params() {
3 |
4 | $group = $::operatingsystem ? {
5 | default => 'rvm',
6 | }
7 |
8 | $proxy_url = undef
9 |
10 | $gpg_package = $::osfamily ? {
11 | /(Debian|RedHat)/ => 'gnupg2',
12 | default => undef,
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/manifests/passenger/dependencies/oraclelinux.pp:
--------------------------------------------------------------------------------
1 | # Package dependencies for Passenger on Oracle Linux
2 | class rvm::passenger::dependencies::oraclelinux {
3 | ensure_packages(['libcurl-devel'])
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/manifests/passenger/dependencies/ubuntu.pp:
--------------------------------------------------------------------------------
1 | # Package dependencies for Passenger on Ubuntu
2 | class rvm::passenger::dependencies::ubuntu {
3 | ensure_packages(['curl','libcurl4-gnutls-dev'])
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/acceptance/nodesets/debian-73-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level: debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | image: devopsil/puppet:3.5.1
7 | # ip: localhost
8 | hypervisor : docker
9 | docker_image_commands:
10 | - yum -y install tar
11 | - useradd vagrant
12 | CONFIG:
13 | log_level: debug
14 | type: git
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/defines/rvm_alias_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'rvm_alias' do
4 |
5 | let(:title) { '2.0' }
6 | let(:params) {{ :target_ruby => '2.0-384' }}
7 |
8 | context "when using default parameters", :compile do
9 | it { should contain_rvm_alias('2.0').with_target_ruby('2.0-384') }
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/spec/defines/rvm_system_ruby_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'rvm_system_ruby' do
4 |
5 | let(:title) { '2.0' }
6 |
7 | context "when using default parameters", :compile do
8 | it { should contain_rvm_system_ruby('2.0') }
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/tests/common.yaml:
--------------------------------------------------------------------------------
1 | rvm::system_rubies:
2 | '1.9': {}
3 | '2.0':
4 | default_use: true
5 | '2.1': {}
6 | 'jruby-1.7': {}
7 |
8 | rvm::system_users:
9 | - root
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/tests/init.pp:
--------------------------------------------------------------------------------
1 | if $::osfamily == 'RedHat' {
2 | class { 'epel':
3 | before => Class['rvm'],
4 | }
5 | }
6 |
7 | class { 'rvm': }
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/rvm/tests/site.pp:
--------------------------------------------------------------------------------
1 | if $::osfamily == 'RedHat' {
2 | class { 'epel':
3 | before => Class['rvm'],
4 | }
5 | }
6 |
7 | class { 'rvm': }
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/solr/.gemfile:
--------------------------------------------------------------------------------
1 | source :rubygems
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'puppetlabs_spec_helper', '>= 0.1.0'
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/solr/README.md:
--------------------------------------------------------------------------------
1 |
2 | [](https://travis-ci.org/example42/puppet-solr)
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/solr/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint'
4 | PuppetLint.configuration.send("disable_80chars")
5 | PuppetLint.configuration.send('disable_class_parameter_defaults')
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sqlite/manifests/init.pp:
--------------------------------------------------------------------------------
1 | # Class: sqlite
2 | #
3 | # This class manages the installation of the sqlite
4 | # database.
5 | #
6 | # Sample Usage:
7 | # class { 'sqlite': }
8 | class sqlite {
9 | package { 'sqlite':
10 | ensure => installed,
11 | }
12 |
13 | file { '/var/lib/sqlite/':
14 | ensure => directory,
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sqlite/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sqlite/tests/init.pp:
--------------------------------------------------------------------------------
1 | include sqlite
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
4 | symlinks:
5 | staging: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/files/sample:
--------------------------------------------------------------------------------
1 | sample file to test module.
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/files/sample.tar.bz2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/staging/files/sample.tar.bz2
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/files/sample.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/puphpet/puppet/modules/staging/files/sample.tar.gz
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/lib/facter/staging_windir.rb:
--------------------------------------------------------------------------------
1 | Facter.add(:staging_windir) do
2 | confine :osfamily => :windows
3 | setcode do
4 | program_data = `echo %SYSTEMDRIVE%\\ProgramData`.chomp
5 | if File.directory? program_data
6 | "#{program_data}\\staging"
7 | else
8 | "C:\\staging"
9 | end
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/spec/fixtures/hiera.yaml:
--------------------------------------------------------------------------------
1 | ---
2 | :backends: - puppet
3 |
4 | :hierarchy: - common
5 |
6 | :puppet:
7 | :datasource: data
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/module_spec_helper'
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/tests/deploy.pp:
--------------------------------------------------------------------------------
1 | staging::deploy { 'sample.tar.gz':
2 | source => 'puppet:///modules/staging/sample.tar.gz',
3 | target => '/usr/local',
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/tests/init.pp:
--------------------------------------------------------------------------------
1 | include staging
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/staging/tests/scope_defaults.pp:
--------------------------------------------------------------------------------
1 | Exec {
2 | path => '/bin',
3 | }
4 |
5 | if scope_defaults('Exec', 'path') {
6 | notice('good')
7 | }
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/README_SPECS.markdown:
--------------------------------------------------------------------------------
1 | NOTE
2 | ====
3 |
4 | This project's specs depend on puppet core, and thus they require the
5 | `puppetlabs_spec_helper` project. For more information please see the README
6 | in that project, which can be found here: [puppetlabs spec
7 | helper](https://github.com/puppetlabs/puppetlabs_spec_helper)
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-59-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-59-x64:
3 | roles:
4 | - master
5 | platform: el-5-x86_64
6 | box : centos-59-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: git
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-64-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-vbox436-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | fedora-18-x64:
3 | roles:
4 | - master
5 | platform: fedora-18-x86_64
6 | box : fedora-18-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | sles-11-x64.local:
3 | roles:
4 | - master
5 | platform: sles-11-x64
6 | box : sles-11sp1-x64-vbox4210-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | ubuntu-server-1404-x64:
3 | roles:
4 | - master
5 | platform: ubuntu-14.04-amd64
6 | box : puppetlabs/ubuntu-14.04-64-nocm
7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm
8 | hypervisor : vagrant
9 | CONFIG:
10 | log_level : debug
11 | type: git
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb:
--------------------------------------------------------------------------------
1 | #! /usr/bin/env ruby -S rspec
2 | # Support code for running stuff with warnings disabled.
3 | module Kernel
4 | def with_verbose_disabled
5 | verbose, $VERBOSE = $VERBOSE, nil
6 | result = yield
7 | $VERBOSE = verbose
8 | return result
9 | end
10 | end
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb:
--------------------------------------------------------------------------------
1 | #! /usr/bin/env ruby -S rspec
2 | require 'rspec'
3 |
4 | class Object
5 | # This is necessary because the RAL has a 'should'
6 | # method.
7 | alias :must :should
8 | alias :must_not :should_not
9 | end
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 |
3 | require 'spec_helper'
4 |
5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin")
6 |
7 | describe anchor do
8 | it "should stringify normally" do
9 | expect(anchor.to_s).to eq("Anchor[ntp::begin]")
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/tests/file_line.pp:
--------------------------------------------------------------------------------
1 | # This is a simple smoke test
2 | # of the file_line resource type.
3 | file { '/tmp/dansfile':
4 | ensure => present
5 | }->
6 | file_line { 'dans_line':
7 | line => 'dan is awesome',
8 | path => '/tmp/dansfile',
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp:
--------------------------------------------------------------------------------
1 | include stdlib
2 | info('has_ip_address(\'192.168.1.256\'):', has_ip_address('192.168.1.256'))
3 | info('has_ip_address(\'127.0.0.1\'):', has_ip_address('127.0.0.1'))
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp:
--------------------------------------------------------------------------------
1 | include stdlib
2 | info('has_ip_network(\'127.0.0.0\'):', has_ip_network('127.0.0.0'))
3 | info('has_ip_network(\'128.0.0.0\'):', has_ip_network('128.0.0.0'))
4 |
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/stdlib/tests/init.pp:
--------------------------------------------------------------------------------
1 | include stdlib
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | 'stdlib':
4 | repo: 'git://github.com/puppetlabs/puppetlabs-stdlib'
5 | ref: '4.1.0'
6 | 'concat':
7 | repo: 'git://github.com/puppetlabs/puppetlabs-concat'
8 | ref: '1.0.1'
9 | symlinks:
10 | supervisord: "#{source_dir}"
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/manifests/install.pp:
--------------------------------------------------------------------------------
1 | # Class supervisord::install
2 | #
3 | # Installs supervisor package (defaults to using pip)
4 | #
5 | class supervisord::install inherits supervisord {
6 | package { $supervisord::package_name:
7 | ensure => $supervisord::package_ensure,
8 | provider => $supervisord::package_provider
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/manifests/service.pp:
--------------------------------------------------------------------------------
1 | # Class: supervisord::service
2 | #
3 | # Class for the supervisord service
4 | #
5 | class supervisord::service inherits supervisord {
6 | service { $supervisord::service_name:
7 | ensure => $supervisord::service_ensure,
8 | enable => true,
9 | hasrestart => true,
10 | hasstatus => true
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-i386.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-i386:
3 | roles:
4 | - master
5 | platform: el-6-i386
6 | box : centos-65-i386-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-i386-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-65-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box : centos-65-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-i386.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-i386:
3 | roles:
4 | - master
5 | platform: debian-7-i386
6 | box : debian-73-i386-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-i386-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/default.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | debian-73-x64:
3 | roles:
4 | - master
5 | platform: debian-7-amd64
6 | box : debian-73-x64-virtualbox-nocm
7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box
8 | hypervisor : vagrant
9 | CONFIG:
10 | type: foss
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
3 | fixture_path = File.expand_path(File.join(__FILE__, '..', 'fixtures'))
4 |
5 | RSpec.configure do |c|
6 | c.module_path = File.join(fixture_path, 'modules')
7 | c.manifest_dir = File.join(fixture_path, 'manifests')
8 | end
9 |
10 | at_exit { RSpec::Puppet::Coverage.report! }
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/templates/conf/group.erb:
--------------------------------------------------------------------------------
1 | [group:<%= @name %>]
2 | programs=<%= @progstring %>
3 | <% if @priority -%>
4 | priority=<%= @priority %>
5 | <% end -%>
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/templates/init/Debian/defaults.erb:
--------------------------------------------------------------------------------
1 | # Defaults for supervisor initscript
2 | # sourced by /etc/init.d/supervisor
3 | # installed at /etc/default/supervisor by the maintainer scripts
4 |
5 | #
6 | # This is a POSIX shell fragment
7 | #
8 |
9 | # Additional options that are passed to the Daemon.
10 | DAEMON_OPTS="-c <%= @config_file %>"
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/templates/init/RedHat/defaults.erb:
--------------------------------------------------------------------------------
1 | # this is sourced by the supervisord init script
2 | # written by jkoppe
3 |
4 | set -a
5 |
6 | # should probably put both of these options as runtime arguments
7 | OPTIONS="-c <%= @config_file %>"
8 | PIDFILE=<%= @run_path %><%= @pid_file %>
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/tests/group.pp:
--------------------------------------------------------------------------------
1 | supervisord::group { 'mygroup':
2 | priority => 100,
3 | program => ['program1', 'program2', 'program3']
4 | }
--------------------------------------------------------------------------------
/puphpet/puppet/modules/supervisord/tests/init.pp:
--------------------------------------------------------------------------------
1 | class { 'supervisord':
2 | install_pip => true,
3 | install_init => true,
4 | nocleanup => true,
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/.fixtures.yml:
--------------------------------------------------------------------------------
1 | fixtures:
2 | repositories:
3 | stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4 | symlinks:
5 | swap_file: "#{source_dir}"
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/.rspec:
--------------------------------------------------------------------------------
1 | --format documentation
2 | --color
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/CONTRIBUTORS:
--------------------------------------------------------------------------------
1 | Peter Souter (@petems)
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/Guardfile:
--------------------------------------------------------------------------------
1 | notification :off
2 |
3 | guard 'rake', :task => 'test' do
4 | watch(%r{^manifests\/(.+)\.pp$})
5 | end
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/spec/acceptance/nodesets/centos-64-x64.yml:
--------------------------------------------------------------------------------
1 | HOSTS:
2 | centos-64-x64:
3 | roles:
4 | - master
5 | platform: el-6-x86_64
6 | box: centos-64-x64-vbox4210-nocm
7 | box_url: http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box
8 | hypervisor: vagrant
9 | CONFIG:
10 | log_level: verbose
11 | type: foss
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/spec/classes/coverage_spec.rb:
--------------------------------------------------------------------------------
1 | at_exit { RSpec::Puppet::Coverage.report! }
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/swap_file/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/Gemfile:
--------------------------------------------------------------------------------
1 | source :rubygems
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'rspec-puppet'
7 | gem 'puppetlabs_spec_helper', '>= 0.4.0'
8 |
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/Modulefile:
--------------------------------------------------------------------------------
1 | name 'thias-sysctl'
2 | version '0.3.0'
3 | source 'git://github.com/thias/puppet-sysctl'
4 | author 'Matthias Saou'
5 | license 'Apache 2.0'
6 | summary 'Sysctl module'
7 | description "Manage sysctl variable values."
8 | project_page 'https://github.com/thias/puppet-sysctl'
9 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint'
4 | PuppetLint.configuration.send("disable_80chars")
5 | PuppetLint.configuration.send("disable_autoloader_layout")
6 | PuppetLint.configuration.send("disable_quoted_booleans")
7 |
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/spec/classes/sysctl_base_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe 'sysctl::base', :type => :class do
4 |
5 | it { should create_class('sysctl::base') }
6 | it { should contain_file('/etc/sysctl.d') }
7 |
8 | end
9 |
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/module_spec_helper'
3 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/templates/sysctl.d-file.erb:
--------------------------------------------------------------------------------
1 | <% if @comment -%>
2 | <% @comment.each do |line| -%>
3 | # <%= line %>
4 | <% end -%>
5 | <% end -%>
6 | <%= @title %> = <%= @value %>
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/tests/base.pp:
--------------------------------------------------------------------------------
1 | include sysctl::base
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/sysctl/tests/init.pp:
--------------------------------------------------------------------------------
1 | sysctl { 'net.ipv4.ip_forward': value => '1' }
2 | sysctl { 'net.core.somaxconn': value => '65536' }
3 | sysctl { 'vm.swappiness': ensure => absent }
4 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/Modulefile:
--------------------------------------------------------------------------------
1 | name 'puppetlabs/vcsrepo'
2 | version '0.2.0'
3 | summary 'Manage repositories from various version control systems'
4 | description 'Manage repositories from various version control systems'
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/Rakefile:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/rake_tasks'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-bzr-branch':
2 | ensure => present,
3 | provider => bzr,
4 | source => 'lp:do',
5 | revision => '1312',
6 | }
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/bzr/init_repo.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-bzr-init':
2 | ensure => present,
3 | provider => bzr,
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-cvs-repo':
2 | ensure => present,
3 | provider => cvs,
4 | }
5 |
6 | vcsrepo { '/tmp/vcstest-cvs-workspace-local':
7 | ensure => present,
8 | provider => cvs,
9 | source => '/tmp/vcstest-cvs-repo',
10 | require => Vcsrepo['/tmp/vcstest-cvs-repo'],
11 | }
12 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-cvs-workspace-remote':
2 | ensure => present,
3 | provider => cvs,
4 | source => ':pserver:anonymous@cvs.sv.gnu.org:/sources/leetcvrt',
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/git/bare_init.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-git-bare':
2 | ensure => bare,
3 | provider => git,
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-git-clone':
2 | ensure => present,
3 | provider => git,
4 | source => 'git://github.com/bruce/rtex.git',
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/git/working_copy_init.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-git-wc':
2 | ensure => present,
3 | provider => git,
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-hg-clone':
2 | ensure => present,
3 | provider => hg,
4 | source => 'http://hg.basho.com/riak',
5 | revision => 'riak-0.5.3',
6 | }
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/hg/init_repo.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-hg-init':
2 | ensure => present,
3 | provider => hg,
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/svn/checkout.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-svn-checkout':
2 | ensure => present,
3 | provider => svn,
4 | source => 'http://svn.edgewall.org/repos/babel/trunk',
5 | }
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp:
--------------------------------------------------------------------------------
1 | vcsrepo { '/tmp/vcstest-svn-server':
2 | ensure => present,
3 | provider => svn,
4 | }
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/bzr_version_info.txt:
--------------------------------------------------------------------------------
1 | revision-id: menesis@pov.lt-20100309191856-4wmfqzc803fj300x
2 | date: 2010-03-09 21:18:56 +0200
3 | build-date: 2010-03-14 00:42:43 -0800
4 | revno: 2634
5 | branch-nick: mytest
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_a.txt:
--------------------------------------------------------------------------------
1 | feature/foo
2 | feature/bar
3 | feature/baz
4 | feature/quux
5 | only/local
6 | * master
7 | refactor/foo
8 | origin/HEAD
9 | origin/feature/foo
10 | origin/feature/bar
11 | origin/feature/baz
12 | origin/feature/quux
13 | origin/only/remote
14 | origin/master
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_feature_bar.txt:
--------------------------------------------------------------------------------
1 | feature/foo
2 | * feature/bar
3 | feature/baz
4 | feature/quux
5 | only/local
6 | master
7 | refactor/foo
8 | origin/HEAD
9 | origin/feature/foo
10 | origin/feature/bar
11 | origin/feature/baz
12 | origin/feature/quux
13 | origin/only/remote
14 | origin/master
15 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_none.txt:
--------------------------------------------------------------------------------
1 | feature/foo
2 | feature/bar
3 | feature/baz
4 | feature/quux
5 | only/local
6 | master
7 | * (no branch)
8 | refactor/foo
9 | origin/HEAD
10 | origin/feature/foo
11 | origin/feature/bar
12 | origin/feature/baz
13 | origin/feature/quux
14 | origin/only/remote
15 | origin/master
16 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_parents.txt:
--------------------------------------------------------------------------------
1 | changeset: 3:34e6012c783a
2 | parent: 2:21ea4598c962
3 | parent: 1:9d0ff0028458
4 | user: Test User
5 | date: Fri Aug 07 13:13:02 2009 -0400
6 | summary: merge
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/fixtures/svn_info.txt:
--------------------------------------------------------------------------------
1 | Path: .
2 | URL: http://example.com/svn/trunk
3 | Repository Root: http://example.com/svn
4 | Repository UUID: 75246ace-e253-0410-96dd-a7613ca8dc81
5 | Revision: 4
6 | Node Kind: directory
7 | Schedule: normal
8 | Last Changed Author: jon
9 | Last Changed Rev: 3
10 | Last Changed Date: 2008-08-07 11:34:25 -0700 (Thu, 07 Aug 2008)
11 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/spec.opts:
--------------------------------------------------------------------------------
1 | --format
2 | s
3 | --colour
4 | --loadby
5 | mtime
6 | --backtrace
7 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 | require 'simplecov'
3 | require 'support/filesystem_helpers'
4 | require 'support/fixture_helpers'
5 |
6 | SimpleCov.start do
7 | add_filter "/spec/"
8 | end
9 |
10 | RSpec.configure do |c|
11 | c.include FilesystemHelpers
12 | c.include FixtureHelpers
13 | end
14 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/support/fixture_helpers.rb:
--------------------------------------------------------------------------------
1 | module FixtureHelpers
2 |
3 | def fixture(name, ext = '.txt')
4 | File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', name.to_s + ext))
5 | end
6 |
7 | end
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/type/README.markdown:
--------------------------------------------------------------------------------
1 | Resource Type Specs
2 | ===================
3 |
4 | Define specs for your resource types in this directory.
5 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/yum/.gemfile:
--------------------------------------------------------------------------------
1 | source :rubygems
2 |
3 | puppetversion = ENV['PUPPET_VERSION']
4 | gem 'puppet', puppetversion, :require => false
5 | gem 'puppet-lint'
6 | gem 'puppetlabs_spec_helper', '>= 0.1.0'
7 | gem 'rspec-puppet', '0.1.6'
8 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/yum/Modulefile:
--------------------------------------------------------------------------------
1 | name 'example42-yum'
2 | version '2.1.9'
3 | author 'Alessandro Franceschi'
4 | license 'Apache2'
5 | project_page 'http://www.example42.com'
6 | source 'https://github.com/example42/puppet-yum'
7 | summary 'Puppet module for nagios'
8 | description 'This module installs and manages yum and yum repositories'
9 | dependency 'example42/puppi', '>= 2.0.0'
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/yum/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rubygems'
2 | require 'puppetlabs_spec_helper/rake_tasks'
3 | require 'puppet-lint/tasks/puppet-lint'
4 | PuppetLint.configuration.send('disable_80chars')
5 | PuppetLint.configuration.send('disable_class_parameter_defaults')
6 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/yum/files/empty/.placeholder:
--------------------------------------------------------------------------------
1 | # Placeholder for git
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/modules/yum/spec/spec_helper.rb:
--------------------------------------------------------------------------------
1 | require 'puppetlabs_spec_helper/module_spec_helper'
2 |
--------------------------------------------------------------------------------
/puphpet/puppet/nodes/Cron.pp:
--------------------------------------------------------------------------------
1 | if $cron_values == undef { $cron_values = hiera_hash('cron', false) }
2 |
3 | if count($cron_values['jobs']) > 0 {
4 | each( $cron_values['jobs'] ) |$key, $job| {
5 | $job_values = delete_values($job, '')
6 |
7 | create_resources(cron, { "${key}" => $job_values })
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/puphpet/puppet/site.pp:
--------------------------------------------------------------------------------
1 | import 'nodes/*.pp'
2 |
--------------------------------------------------------------------------------
/puphpet/shell/ascii-art/self-promotion.txt:
--------------------------------------------------------------------------------
1 |
2 | ____ ____ _ _ ____ _ generated using
3 | | _ \ _ _| _ \| | | | _ \ ___| |_ ___ ___ _ __ ___
4 | | |_) | | | | |_) | |_| | |_) / _ \ __| / __/ _ \| '_ ` _ \
5 | | __/| |_| | __/| _ | __/ __/ |_ | (_| (_) | | | | | |
6 | |_| \__,_|_| |_| |_|_| \___|\__(_)___\___/|_| |_| |_|
7 |
--------------------------------------------------------------------------------
/puphpet/shell/important-notices.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | VAGRANT_CORE_FOLDER=$(cat '/.puphpet-stuff/vagrant-core-folder.txt')
4 |
5 | if [[ -f '/.puphpet-stuff/displayed-important-notices' ]]; then
6 | exit 0
7 | fi
8 |
9 | cat "${VAGRANT_CORE_FOLDER}/shell/ascii-art/important-notices.txt"
10 |
11 | touch '/.puphpet-stuff/displayed-important-notices'
12 |
--------------------------------------------------------------------------------
/www/font/ar_destine/ardestine-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/font/ar_destine/ardestine-webfont.eot
--------------------------------------------------------------------------------
/www/font/ar_destine/ardestine-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/font/ar_destine/ardestine-webfont.ttf
--------------------------------------------------------------------------------
/www/font/ar_destine/ardestine-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/font/ar_destine/ardestine-webfont.woff
--------------------------------------------------------------------------------
/www/font/ar_destine/ardestine-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/font/ar_destine/ardestine-webfont.woff2
--------------------------------------------------------------------------------
/www/img/MVI_0602_xvid.avi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/MVI_0602_xvid.avi
--------------------------------------------------------------------------------
/www/img/check-mark-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/check-mark-icon.png
--------------------------------------------------------------------------------
/www/img/drone-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/drone-icon.png
--------------------------------------------------------------------------------
/www/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/logo.png
--------------------------------------------------------------------------------
/www/img/recording-pins.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/recording-pins.png
--------------------------------------------------------------------------------
/www/img/usb-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/usb-icon.png
--------------------------------------------------------------------------------
/www/img/video-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/video-icon.png
--------------------------------------------------------------------------------
/www/img/wireless-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/wireless-icon.png
--------------------------------------------------------------------------------
/www/img/x-mark-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/img/x-mark-icon.png
--------------------------------------------------------------------------------
/www/vendor/angular-animate/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-animate",
3 | "version": "1.4.3",
4 | "main": "./angular-animate.js",
5 | "ignore": [],
6 | "dependencies": {
7 | "angular": "1.4.3"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-animate/index.js:
--------------------------------------------------------------------------------
1 | require('./angular-animate');
2 | module.exports = 'ngAnimate';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-aria/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-aria",
3 | "version": "1.4.3",
4 | "main": "./angular-aria.js",
5 | "ignore": [],
6 | "dependencies": {
7 | "angular": "1.4.3"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-aria/index.js:
--------------------------------------------------------------------------------
1 | require('./angular-aria');
2 | module.exports = 'ngAria';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/.gitignore:
--------------------------------------------------------------------------------
1 | *.log
2 | *.sw*
3 | .DS_STORE
4 | /.idea/
5 | default-theme.css
6 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material",
3 | "version": "0.9.8",
4 | "ignore": [],
5 | "dependencies": {
6 | "angular": "^1.3.0 || >1.4.0-beta.0",
7 | "angular-animate": "^1.3.0 || >1.4.0-beta.0",
8 | "angular-aria": "^1.3.15 || >1.4.0-beta.0"
9 | },
10 | "main": [
11 | "angular-material.js",
12 | "angular-material.css"
13 | ]
14 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/bottomSheet/demoBasicUsage/img/icons/share-arrow.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/gridList/demoResponsiveUsage/style.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/angular-material/demos/gridList/demoResponsiveUsage/style.scss
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/input/demoIcons/icons/ic_email_24px.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/input/demoIcons/icons/ic_person_24px.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/input/demoIcons/icons/ic_place_24px.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/list/demoListControls/img/100-0.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/angular-material/demos/list/demoListControls/img/100-0.jpeg
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/list/demoListControls/img/100-1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/angular-material/demos/list/demoListControls/img/100-1.jpeg
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/list/demoListControls/img/100-2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/angular-material/demos/list/demoListControls/img/100-2.jpeg
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/tabs/demoDynamicHeight/style.scss:
--------------------------------------------------------------------------------
1 | md-content {
2 | background-color: transparent !important;
3 | md-tabs {
4 | background: #f6f6f6;
5 | border: 1px solid #e1e1e1;
6 | md-tabs-canvas {
7 | background: white;
8 | }
9 | }
10 | h1:first-child {
11 | margin-top: 0;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/demos/toolbar/demoBasicUsage/img/icons/menu.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/index.js:
--------------------------------------------------------------------------------
1 | // Should already be required, here for clarity
2 | require('angular');
3 |
4 | // Load Angular and dependent libs
5 | require('angular-animate');
6 | require('angular-aria');
7 |
8 | // Now load Angular Material
9 | require('./angular-material');
10 |
11 | // Export namespace
12 | module.exports = 'ngMaterial';
13 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/backdrop/backdrop-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-backdrop.md-opaque.md-THEME_NAME-theme {
9 | background-color: '{{foreground-4-0.5}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/content/content-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-content.md-THEME_NAME-theme {
9 | background-color: '{{background-color}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/divider/divider-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-divider.md-THEME_NAME-theme {
9 | border-top-color: '{{foreground-4}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/gridList/gridList-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.8.0-rc1-master-91053dc
6 | */
7 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/menu/menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.6.0
6 | */
7 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/closure/sidenav/sidenav-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-sidenav.md-THEME_NAME-theme {
9 | background-color: '{{background-color}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/autocomplete/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-autocomplete",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-icon": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/backdrop/backdrop-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-backdrop.md-opaque.md-THEME_NAME-theme {
9 | background-color: '{{foreground-4-0.5}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/backdrop/backdrop-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-backdrop.md-opaque.md-THEME_NAME-theme{background-color:'{{foreground-4-0.5}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/backdrop/backdrop.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | !function(n,e,i){"use strict";function o(n){return n}e.module("material.components.backdrop",["material.core"]).directive("mdBackdrop",o),o.$inject=["$mdTheming"]}(window,window.angular);
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/backdrop/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-backdrop",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/bottomSheet/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-bottomSheet",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-backdrop": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/button/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-button",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/card/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-card",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/card/card-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-card.md-THEME_NAME-theme{background-color:'{{background-color}}';border-radius:2px}md-card.md-THEME_NAME-theme .md-card-image{border-radius:2px 2px 0 0}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/card/card.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | !function(n,i,t){"use strict";function e(n){return{restrict:"E",link:function(i,t,e){n(t)}}}i.module("material.components.card",["material.core"]).directive("mdCard",e),e.$inject=["$mdTheming"]}(window,window.angular);
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/checkbox/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-checkbox",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/chips/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-chips",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-autocomplete": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/content/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-content",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/content/content-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-content.md-THEME_NAME-theme {
9 | background-color: '{{background-color}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/content/content-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-content.md-THEME_NAME-theme{background-color:'{{background-color}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/core/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-core",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-gestures": "0.9.8",
6 | "angular-material-theming": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/dialog/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-dialog",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-backdrop": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/dialog/dialog-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-dialog.md-THEME_NAME-theme{border-radius:4px;background-color:'{{background-color}}'}md-dialog.md-THEME_NAME-theme.md-content-overflow .md-actions{border-top-color:'{{foreground-4}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/divider/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-divider",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/divider/divider-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-divider.md-THEME_NAME-theme {
9 | border-top-color: '{{foreground-4}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/divider/divider-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-divider.md-THEME_NAME-theme{border-top-color:'{{foreground-4}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/divider/divider.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-divider{display:block;border-top-width:1px;border-top-style:solid;margin:0}md-divider[md-inset]{margin-left:80px}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/divider/divider.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | !function(i,e,n){"use strict";function r(i){return{restrict:"E",link:i}}e.module("material.components.divider",["material.core"]).directive("mdDivider",r),r.$inject=["$mdTheming"]}(window,window.angular);
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/gridList/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-gridList",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/icon/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-icon",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/icon/icon.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-icon{margin:auto;background-repeat:no-repeat no-repeat;display:inline-block;vertical-align:middle;fill:currentColor;height:24px;width:24px}md-icon svg{pointer-events:none}md-icon[md-font-icon]{line-height:1;width:auto}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/input/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-input",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/list/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-list",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/menu/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-menu",
3 | "version": "0.6.0",
4 | "dependencies": {}
5 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/menu/menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.6.0
6 | */
7 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/menu/menu.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.6.0
6 | */
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/menu/menu.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.6.0
6 | */
7 | function MenuProvider(e){function n(){}return e("$mdMenu").setDefaults({methods:["placement"],options:n})}angular.module("material.components.menu",[]).factory("$mdMenu",MenuProvider),MenuProvider.$inject=["$$interimElementProvider"];
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/progressCircular/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-progressCircular",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/progressLinear/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-progressLinear",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/radioButton/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-radioButton",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/select/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-select",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-backdrop": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/sidenav/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-sidenav",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-backdrop": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/sidenav/sidenav-default-theme.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | /* mixin definition ; sets LTR and RTL within the same style call */
8 | md-sidenav.md-THEME_NAME-theme {
9 | background-color: '{{background-color}}'; }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/sidenav/sidenav-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-sidenav.md-THEME_NAME-theme{background-color:'{{background-color}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/slider/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-slider",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/sticky/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-sticky",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-content": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/subheader/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-subheader",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-sticky": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/swipe/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-swipe",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/switch/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-switch",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-checkbox": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/tabs/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-tabs",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-icon": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/textField/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-textField",
3 | "version": "0.9.0-rc1-master-3c0ce9b",
4 | "dependencies": {
5 | "angular-material-core": "0.9.0-rc1-master-3c0ce9b"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/toast/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-toast",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-button": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/toolbar/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-toolbar",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8",
6 | "angular-material-content": "0.9.8"
7 | }
8 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/tooltip/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-tooltip",
3 | "version": "0.9.8",
4 | "dependencies": {
5 | "angular-material-core": "0.9.8"
6 | }
7 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/tooltip/tooltip-default-theme.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */md-tooltip.md-THEME_NAME-theme{color:'{{background-A100}}'}md-tooltip.md-THEME_NAME-theme .md-background{background-color:'{{foreground-2}}'}
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/whiteframe/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-material-whiteframe",
3 | "version": "0.9.8",
4 | "dependencies": {}
5 | }
--------------------------------------------------------------------------------
/www/vendor/angular-material/modules/js/whiteframe/whiteframe.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Angular Material Design
3 | * https://github.com/angular/material
4 | * @license MIT
5 | * v0.9.8
6 | */
7 | !function(n,e,i){"use strict";e.module("material.components.whiteframe",[])}(window,window.angular);
--------------------------------------------------------------------------------
/www/vendor/angular-mocks/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-mocks",
3 | "version": "1.3.17",
4 | "main": "./angular-mocks.js",
5 | "ignore": [],
6 | "dependencies": {
7 | "angular": "1.3.17"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-mocks/ngAnimateMock.js:
--------------------------------------------------------------------------------
1 | require('./angular-mocks');
2 | module.exports = 'ngAnimateMock';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-mocks/ngMock.js:
--------------------------------------------------------------------------------
1 | require('./angular-mocks');
2 | module.exports = 'ngMock';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-mocks/ngMockE2E.js:
--------------------------------------------------------------------------------
1 | require('./angular-mocks');
2 | module.exports = 'ngMockE2E';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-route/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-route",
3 | "version": "1.4.3",
4 | "main": "./angular-route.js",
5 | "ignore": [],
6 | "dependencies": {
7 | "angular": "1.4.3"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-route/index.js:
--------------------------------------------------------------------------------
1 | require('./angular-route');
2 | module.exports = 'ngRoute';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular-touch/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-touch",
3 | "version": "1.4.3",
4 | "main": "./angular-touch.js",
5 | "ignore": [],
6 | "dependencies": {
7 | "angular": "1.4.3"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/angular-touch/index.js:
--------------------------------------------------------------------------------
1 | require('./angular-touch');
2 | module.exports = 'ngTouch';
3 |
--------------------------------------------------------------------------------
/www/vendor/angular/angular.min.js.gzip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/angular/angular.min.js.gzip
--------------------------------------------------------------------------------
/www/vendor/angular/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular",
3 | "version": "1.4.3",
4 | "main": "./angular.js",
5 | "ignore": [],
6 | "dependencies": {
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/angular/index.js:
--------------------------------------------------------------------------------
1 | require('./angular');
2 | module.exports = angular;
3 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adam-lebon/quadcopterControl/4c1fcd661217d0a52721a1014fa5eedc42161c55/www/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/www/vendor/bootstrap/grunt/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends" : "../js/.jshintrc",
3 | "asi" : false,
4 | "browser" : false,
5 | "es3" : false,
6 | "node" : true
7 | }
8 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/js/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi" : true,
3 | "browser" : true,
4 | "eqeqeq" : false,
5 | "eqnull" : true,
6 | "es3" : true,
7 | "expr" : true,
8 | "jquery" : true,
9 | "latedef" : true,
10 | "laxbreak" : true,
11 | "nonbsp" : true,
12 | "strict" : true,
13 | "undef" : true,
14 | "unused" : true
15 | }
16 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/background-variant.less:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | .bg-variant(@color) {
4 | background-color: @color;
5 | a&:hover,
6 | a&:focus {
7 | background-color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/labels.less:
--------------------------------------------------------------------------------
1 | // Labels
2 |
3 | .label-variant(@color) {
4 | background-color: @color;
5 |
6 | &[href] {
7 | &:hover,
8 | &:focus {
9 | background-color: darken(@color, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/opacity.less:
--------------------------------------------------------------------------------
1 | // Opacity
2 |
3 | .opacity(@opacity) {
4 | opacity: @opacity;
5 | // IE8 filter
6 | @opacity-ie: (@opacity * 100);
7 | filter: ~"alpha(opacity=@{opacity-ie})";
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/resize.less:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | .resizable(@direction) {
4 | resize: @direction; // Options: horizontal, vertical, both
5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
6 | }
7 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/size.less:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | .size(@width; @height) {
4 | width: @width;
5 | height: @height;
6 | }
7 |
8 | .square(@size) {
9 | .size(@size; @size);
10 | }
11 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/tab-focus.less:
--------------------------------------------------------------------------------
1 | // WebKit-style focus
2 |
3 | .tab-focus() {
4 | // Default
5 | outline: thin dotted;
6 | // WebKit
7 | outline: 5px auto -webkit-focus-ring-color;
8 | outline-offset: -2px;
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover,
6 | a&:focus {
7 | color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/bootstrap/less/mixins/text-overflow.less:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | .text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/hammerjs/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "json": "bower.json"
3 | }
--------------------------------------------------------------------------------
/www/vendor/hammerjs/.gitignore:
--------------------------------------------------------------------------------
1 | # ide
2 | .idea
3 | .iml
4 |
5 | # node
6 | lib-cov
7 | *.seed
8 | *.log
9 | *.csv
10 | *.dat
11 | *.out
12 | *.pid
13 | *.gz
14 |
15 | pids
16 | logs
17 | results
18 | tests/build.js
19 |
20 | npm-debug.log
21 | node_modules
22 |
--------------------------------------------------------------------------------
/www/vendor/hammerjs/.jscsrc:
--------------------------------------------------------------------------------
1 | {
2 | "preset": "google",
3 | "excludeFiles": [
4 | "*.js",
5 | "tests/**/assets",
6 | "node_modules/**"
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/hammerjs/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
5 | before_script:
6 | - npm install -g grunt-cli
7 |
8 | script:
9 | - grunt test-travis
--------------------------------------------------------------------------------
/www/vendor/hammerjs/README.md:
--------------------------------------------------------------------------------
1 | # Hammer.js 2.0 [](https://travis-ci.org/hammerjs/hammer.js/)
2 |
3 | Visit [hammerjs.github.io](http://hammerjs.github.io) for documentation.
4 |
5 | You can get the pre-build versions from the Hammer.js website, or do this by yourself running
6 | `npm install -g grunt-cli && npm install && grunt build`
7 |
--------------------------------------------------------------------------------
/www/vendor/hammerjs/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "hammerjs",
3 | "version": "2.0.4",
4 | "main": "hammer.js",
5 | "ignore": [
6 | "tests",
7 | "src"
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/hammerjs/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "hammerjs",
3 | "version": "2.0.3",
4 | "main": "hammer.js",
5 | "scripts": [
6 | "hammer.js"
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/www/vendor/jquery-hammerjs/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "json": "bower.json"
3 | }
--------------------------------------------------------------------------------
/www/vendor/jquery-hammerjs/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/www/vendor/jquery-hammerjs/README.md:
--------------------------------------------------------------------------------
1 | jquery.hammer.js
2 | ==============
3 |
4 | This jQuery plugin is just a small wrapper around the `Hammer()` class.
5 | It also extends the `Manager.emit` method by triggering jQuery events.
6 |
7 | ````js
8 | $(element).hammer(options).bind("pan", myPanHandler);
9 | ````
10 |
11 | The Hammer instance is stored at `$element.data("hammer")`.
12 |
13 |
--------------------------------------------------------------------------------
/www/vendor/jquery-hammerjs/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery-hammerjs",
3 | "version": "2.0.0",
4 | "main": "jquery.hammer.js",
5 | "dependencies": {
6 | "hammerjs": "2.0.x",
7 | "jquery": "2.1.x"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Support: Android 2.3
6 | // Workaround failure to string-cast null input
7 | jQuery.parseJSON = function( data ) {
8 | return JSON.parse( data + "" );
9 | };
10 |
11 | return jQuery.parseJSON;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core"
3 | ], function( jQuery ) {
4 | return jQuery.now();
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\?/);
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/attributes.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./attributes/attr",
4 | "./attributes/prop",
5 | "./attributes/classes",
6 | "./attributes/val"
7 | ], function( jQuery ) {
8 |
9 | // Return jQuery for attributes-only inclusion
10 | return jQuery;
11 | });
12 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // Match a standalone tag
3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^margin/);
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/deprecated.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./traversing"
4 | ], function( jQuery ) {
5 |
6 | // The number of elements contained in the matched element set
7 | jQuery.fn.size = function() {
8 | return this.length;
9 | };
10 |
11 | jQuery.fn.andSelf = jQuery.fn.addBack;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | jQuery.expr.filters.animated = function( elem ) {
8 | return jQuery.grep(jQuery.timers, function( fn ) {
9 | return elem === fn.elem;
10 | }).length;
11 | };
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/event/support.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../var/support"
3 | ], function( support ) {
4 |
5 | support.focusinBubbles = "onfocusin" in window;
6 |
7 | return support;
8 |
9 | });
10 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/manipulation/_evalUrl.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../ajax"
3 | ], function( jQuery ) {
4 |
5 | jQuery._evalUrl = function( url ) {
6 | return jQuery.ajax({
7 | url: url,
8 | type: "GET",
9 | dataType: "script",
10 | async: false,
11 | global: false,
12 | "throws": true
13 | });
14 | };
15 |
16 | return jQuery._evalUrl;
17 |
18 | });
19 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^(?:checkbox|radio)$/i);
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
2 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "sizzle"
4 | ], function( jQuery, Sizzle ) {
5 |
6 | jQuery.find = Sizzle;
7 | jQuery.expr = Sizzle.selectors;
8 | jQuery.expr[":"] = jQuery.expr.pseudos;
9 | jQuery.unique = Sizzle.uniqueSort;
10 | jQuery.text = Sizzle.getText;
11 | jQuery.isXMLDoc = Sizzle.isXML;
12 | jQuery.contains = Sizzle.contains;
13 |
14 | });
15 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define([ "./selector-sizzle" ]);
2 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | return jQuery.expr.match.needsContext;
6 | });
7 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [];
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // [[Class]] -> type pairs
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.concat;
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.hasOwnProperty;
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.indexOf;
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.push;
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\S+/g);
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.slice;
5 | });
6 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/strundefined.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return typeof undefined;
3 | });
4 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // All support tests are defined in their respective modules.
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/www/vendor/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.toString;
5 | });
6 |
--------------------------------------------------------------------------------