├── .gitignore ├── .gitlab-ci.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── debug.sh ├── node_init ├── puppet_command └── run_tests ├── contrib ├── leap-commit-template └── offlineimaprc.example.org ├── docs ├── en │ ├── details.html │ ├── details │ │ ├── development.html │ │ ├── development │ │ │ └── index.html │ │ ├── faq.html │ │ ├── faq │ │ │ └── index.html │ │ ├── ports.html │ │ ├── ports │ │ │ └── index.html │ │ ├── under-the-hood.html │ │ └── under-the-hood │ │ │ └── index.html │ ├── guide.html │ ├── guide │ │ ├── commands.html │ │ ├── commands │ │ │ └── index.html │ │ ├── config.html │ │ ├── config │ │ │ └── index.html │ │ ├── domains.html │ │ ├── domains │ │ │ └── index.html │ │ ├── environments.html │ │ ├── environments │ │ │ └── index.html │ │ ├── getting-started.html │ │ ├── getting-started │ │ │ └── index.html │ │ ├── keys-and-certificates.html │ │ ├── keys-and-certificates │ │ │ └── index.html │ │ ├── miscellaneous.html │ │ ├── miscellaneous │ │ │ └── index.html │ │ ├── nodes.html │ │ ├── nodes │ │ │ └── index.html │ │ ├── provider-configuration.html │ │ ├── provider-configuration │ │ │ └── index.html │ │ ├── virtual-machines.html │ │ └── virtual-machines │ │ │ └── index.html │ ├── services.html │ ├── services │ │ ├── couchdb.html │ │ ├── couchdb │ │ │ └── index.html │ │ ├── index.html │ │ ├── monitor.html │ │ ├── monitor │ │ │ └── index.html │ │ ├── mx.html │ │ ├── mx │ │ │ └── index.html │ │ ├── openvpn.html │ │ ├── openvpn │ │ │ └── index.html │ │ ├── soledad.html │ │ ├── soledad │ │ │ └── index.html │ │ ├── tor.html │ │ ├── tor │ │ │ └── index.html │ │ ├── webapp.html │ │ └── webapp │ │ │ └── index.html │ ├── troubleshooting.html │ ├── troubleshooting │ │ ├── known-issues.html │ │ ├── known-issues │ │ │ └── index.html │ │ ├── tests.html │ │ ├── tests │ │ │ └── index.html │ │ ├── where-to-look.html │ │ └── where-to-look │ │ │ └── index.html │ ├── tutorials.html │ ├── tutorials │ │ ├── quick-start.html │ │ ├── quick-start │ │ │ ├── guide │ │ │ │ └── commands.html │ │ │ ├── index.html │ │ │ └── platform.html │ │ ├── single-node-email.html │ │ ├── single-node-email │ │ │ └── index.html │ │ ├── single-node-vpn.html │ │ ├── single-node-vpn │ │ │ └── index.html │ │ ├── vagrant.html │ │ └── vagrant │ │ │ ├── index.html │ │ │ ├── known-issues.html │ │ │ └── quick-start.html │ ├── upgrading.html │ └── upgrading │ │ ├── upgrade-0-10.html │ │ ├── upgrade-0-8.html │ │ └── upgrade-0-9.html ├── index.html └── robots.txt.html ├── lib ├── leap │ └── platform.rb └── leap_cli │ ├── acme.rb │ ├── cloud.rb │ ├── cloud │ ├── cloud.rb │ ├── dependencies.rb │ └── image.rb │ ├── commands │ ├── README │ ├── cert.rb │ ├── clean.rb │ ├── compile.rb │ ├── db.rb │ ├── deploy.rb │ ├── env.rb │ ├── facts.rb │ ├── info.rb │ ├── inspect.rb │ ├── list.rb │ ├── node.rb │ ├── node_init.rb │ ├── open.rb │ ├── ping.rb │ ├── run.rb │ ├── ssh.rb │ ├── test.rb │ ├── user.rb │ ├── vagrant.rb │ └── vm.rb │ ├── config │ ├── cloud.rb │ ├── environment.rb │ ├── filter.rb │ ├── manager.rb │ ├── node.rb │ ├── node_cert.rb │ ├── object.rb │ ├── object_list.rb │ ├── provider.rb │ ├── secrets.rb │ ├── sources.rb │ └── tag.rb │ ├── leapfile_extensions.rb │ ├── load_libraries.rb │ ├── log_filter.rb │ ├── macros │ ├── core.rb │ ├── files.rb │ ├── hosts.rb │ ├── keys.rb │ ├── nodes.rb │ ├── provider.rb │ ├── secrets.rb │ └── stunnel.rb │ ├── ssh.rb │ ├── ssh │ ├── backend.rb │ ├── formatter.rb │ ├── key.rb │ ├── options.rb │ ├── remote_command.rb │ └── scripts.rb │ ├── util │ ├── console_table.rb │ ├── secret.rb │ └── vagrant.rb │ ├── x509.rb │ └── x509 │ ├── certs.rb │ ├── signing_profiles.rb │ └── utils.rb ├── platform.rb ├── provider_base ├── README ├── common.json ├── common.rb ├── files │ ├── branding │ │ ├── head.scss │ │ └── tail.scss │ └── service-definitions │ │ ├── provider.json.erb │ │ └── v1 │ │ ├── eip-service.json.erb │ │ ├── smtp-service.json.erb │ │ └── soledad-service.json.erb ├── provider.json ├── provider.rb ├── services │ ├── _api_tester.json │ ├── _couchdb_mirror.json │ ├── _couchdb_multimaster.json │ ├── _tor_common.json │ ├── couchdb.json │ ├── couchdb.rb │ ├── dns.json │ ├── monitor.json │ ├── monitor.rb │ ├── mx.json │ ├── mx.rb │ ├── obfsproxy.json │ ├── openvpn.json │ ├── soledad.json │ ├── soledad.rb │ ├── static.json │ ├── static.rb │ ├── tor.json │ ├── tor_exit.json │ ├── tor_exit.rb │ ├── tor_hidden_service.json │ ├── tor_hidden_service.rb │ ├── tor_relay.json │ ├── tor_relay.rb │ ├── webapp.json │ └── webapp.rb ├── tags │ ├── development.json │ ├── local.json │ ├── production.json │ └── vm.json ├── templates │ ├── common.json │ ├── couchdb.json │ ├── openvpn.json │ └── provider.json └── test │ └── openvpn │ └── client.ovpn.erb ├── puppet ├── bin │ └── apply_on_node.sh ├── hiera.yaml ├── manifests │ └── site.pp └── modules │ ├── apache │ ├── .gitignore │ ├── .gitrepo │ ├── .rspec │ ├── Gemfile │ ├── LICENSE │ ├── Puppetfile │ ├── README.md │ ├── Rakefile │ ├── files │ │ ├── conf.d │ │ │ ├── CentOS │ │ │ │ ├── ssl.conf │ │ │ │ └── welcome.conf │ │ │ ├── Debian │ │ │ │ ├── charset │ │ │ │ ├── security │ │ │ │ └── ssl.conf │ │ │ ├── do_includes.conf │ │ │ ├── git.conf │ │ │ ├── mozilla_autoconfig.conf │ │ │ ├── status.conf │ │ │ └── vhosts.conf │ │ ├── config │ │ │ ├── Debian.jessie │ │ │ │ └── apache2.conf │ │ │ ├── Debian.wheezy │ │ │ │ └── apache2.conf │ │ │ ├── Debian │ │ │ │ └── apache2.conf │ │ │ └── OpenBSD │ │ │ │ └── httpd.conf │ │ ├── include.d │ │ │ ├── defaults.inc │ │ │ ├── joomla.inc │ │ │ └── silverstripe.inc │ │ ├── itk_plus │ │ │ └── conf.d │ │ │ │ └── CentOS │ │ │ │ └── ssl.conf │ │ ├── modules.d │ │ │ └── Gentoo │ │ │ │ ├── 00_default_settings.conf │ │ │ │ ├── 00_error_documents.conf │ │ │ │ ├── 00_languages.conf │ │ │ │ ├── 00_mod_autoindex.conf │ │ │ │ ├── 00_mod_info.conf │ │ │ │ ├── 00_mod_log_config.conf │ │ │ │ ├── 00_mod_mime.conf │ │ │ │ ├── 00_mod_status.conf │ │ │ │ ├── 00_mod_userdir.conf │ │ │ │ ├── 00_mpm.conf │ │ │ │ ├── 10_mod_mem_cache.conf │ │ │ │ ├── 40_mod_ssl.conf │ │ │ │ ├── 45_mod_dav.conf │ │ │ │ ├── 46_mod_ldap.conf │ │ │ │ └── 70_mod_php5.conf │ │ ├── munin │ │ │ └── apache_activity │ │ ├── scripts │ │ │ └── OpenBSD │ │ │ │ └── bin │ │ │ │ ├── apache_logrotate.sh │ │ │ │ ├── restart_apache.sh │ │ │ │ └── restart_apache_ssl.sh │ │ ├── service │ │ │ └── CentOS │ │ │ │ ├── httpd │ │ │ │ ├── httpd.itk │ │ │ │ ├── httpd.itk_plus │ │ │ │ └── httpd.worker │ │ └── vhosts.d │ │ │ ├── CentOS │ │ │ └── 0-default.conf │ │ │ ├── Debian │ │ │ └── 0-default.conf │ │ │ ├── Gentoo │ │ │ ├── 0-default.conf │ │ │ └── default_vhost.include │ │ │ └── OpenBSD │ │ │ └── 0-default.conf │ ├── lib │ │ ├── facter │ │ │ └── apache_version.rb │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ ├── guess_apache_version.rb │ │ │ └── htpasswd_sha1.rb │ ├── manifests │ │ ├── base.pp │ │ ├── base │ │ │ └── itk.pp │ │ ├── centos.pp │ │ ├── centos │ │ │ ├── itk.pp │ │ │ ├── itk_plus.pp │ │ │ ├── module.pp │ │ │ └── worker.pp │ │ ├── config │ │ │ ├── file.pp │ │ │ ├── global.pp │ │ │ └── include.pp │ │ ├── debian.pp │ │ ├── debian │ │ │ ├── itk.pp │ │ │ └── module.pp │ │ ├── defaultdavdbdir.pp │ │ ├── defaultphpdirs.pp │ │ ├── file.pp │ │ ├── file │ │ │ ├── readonly.pp │ │ │ └── rw.pp │ │ ├── gentoo.pp │ │ ├── gentoo │ │ │ └── module.pp │ │ ├── htpasswd_user.pp │ │ ├── include │ │ │ ├── joomla.pp │ │ │ ├── mod_fcgid.pp │ │ │ └── silverstripe.pp │ │ ├── includes.pp │ │ ├── init.pp │ │ ├── itk.pp │ │ ├── itk │ │ │ └── lock.pp │ │ ├── itk_plus.pp │ │ ├── itk_plus │ │ │ └── lock.pp │ │ ├── logrotate │ │ │ ├── centos.pp │ │ │ └── centos │ │ │ │ └── vhosts.pp │ │ ├── mod_dav_svn.pp │ │ ├── mod_macro.pp │ │ ├── module.pp │ │ ├── module │ │ │ ├── alias.pp │ │ │ ├── auth_basic.pp │ │ │ ├── authn_core.pp │ │ │ ├── authn_file.pp │ │ │ ├── authz_core.pp │ │ │ ├── authz_host.pp │ │ │ ├── authz_user.pp │ │ │ ├── cgi.pp │ │ │ ├── dir.pp │ │ │ ├── env.pp │ │ │ ├── expires.pp │ │ │ ├── headers.pp │ │ │ ├── mime.pp │ │ │ ├── mpm_event.pp │ │ │ ├── mpm_prefork.pp │ │ │ ├── negotiation.pp │ │ │ ├── php5.pp │ │ │ ├── removeip.pp │ │ │ ├── rewrite.pp │ │ │ ├── socache_shmcb.pp │ │ │ └── status.pp │ │ ├── mozilla_autoconfig.pp │ │ ├── munin.pp │ │ ├── noiplog.pp │ │ ├── openbsd.pp │ │ ├── package.pp │ │ ├── package │ │ │ └── itk.pp │ │ ├── sftponly.pp │ │ ├── sftponly │ │ │ └── centos.pp │ │ ├── ssl.pp │ │ ├── ssl │ │ │ ├── base.pp │ │ │ ├── centos.pp │ │ │ ├── debian.pp │ │ │ ├── itk.pp │ │ │ ├── itk │ │ │ │ └── centos.pp │ │ │ ├── itk_plus.pp │ │ │ ├── itk_plus │ │ │ │ └── centos.pp │ │ │ └── openbsd.pp │ │ ├── status.pp │ │ ├── status │ │ │ ├── base.pp │ │ │ ├── centos.pp │ │ │ └── debian.pp │ │ ├── vhost.pp │ │ ├── vhost │ │ │ ├── davdbdir.pp │ │ │ ├── file.pp │ │ │ ├── file │ │ │ │ ├── documentrootdir.pp │ │ │ │ └── documentrootfile.pp │ │ │ ├── gitweb.pp │ │ │ ├── modperl.pp │ │ │ ├── passenger.pp │ │ │ ├── php │ │ │ │ ├── drupal.pp │ │ │ │ ├── gallery2.pp │ │ │ │ ├── global_exec_bin_dir.pp │ │ │ │ ├── joomla.pp │ │ │ │ ├── mediawiki.pp │ │ │ │ ├── safe_mode_bin.pp │ │ │ │ ├── silverstripe.pp │ │ │ │ ├── simplemachine.pp │ │ │ │ ├── spip.pp │ │ │ │ ├── standard.pp │ │ │ │ ├── typo3.pp │ │ │ │ ├── webapp.pp │ │ │ │ └── wordpress.pp │ │ │ ├── phpdirs.pp │ │ │ ├── proxy.pp │ │ │ ├── redirect.pp │ │ │ ├── static.pp │ │ │ ├── template.pp │ │ │ ├── webdav.pp │ │ │ └── webdir.pp │ │ ├── webdav.pp │ │ └── worker.pp │ ├── spec │ │ ├── classes │ │ │ └── init_spec.rb │ │ ├── defines │ │ │ ├── vhost_file_spec.rb │ │ │ ├── vhost_php_drupal_spec.rb │ │ │ ├── vhost_php_gallery2_spec.rb │ │ │ ├── vhost_php_joomla_spec.rb │ │ │ ├── vhost_php_standard_spec.rb │ │ │ ├── vhost_php_webapp_spec.rb │ │ │ ├── vhost_php_wordpress_spec.rb │ │ │ ├── vhost_spec.rb │ │ │ ├── vhost_static_spec.rb │ │ │ └── vhost_template_spec.rb │ │ ├── functions │ │ │ └── guess_apache_version.rb │ │ └── spec_helper.rb │ └── templates │ │ ├── default │ │ └── default_index.erb │ │ ├── include.d │ │ └── ssl_defaults.inc.erb │ │ ├── itk_plus │ │ └── CentOS │ │ │ ├── 00-listen-ssl.conf.erb │ │ │ └── 00-listen.conf.erb │ │ ├── vhosts │ │ ├── 0-default_ssl.conf.erb │ │ ├── default.erb │ │ ├── gitweb │ │ │ └── partial.erb │ │ ├── itk_plus.erb │ │ ├── itk_plus │ │ │ └── partial.erb │ │ ├── partials │ │ │ ├── authentication.erb │ │ │ ├── header_default.erb │ │ │ ├── logs.erb │ │ │ ├── mod_security.erb │ │ │ ├── php_settings.erb │ │ │ ├── ssl.erb │ │ │ └── std_override_options.erb │ │ ├── passenger │ │ │ └── partial.erb │ │ ├── perl │ │ │ └── partial.erb │ │ ├── php │ │ │ └── partial.erb │ │ ├── php_drupal │ │ │ └── partial.erb │ │ ├── php_gallery2 │ │ │ └── partial.erb │ │ ├── php_joomla │ │ │ └── partial.erb │ │ ├── php_mediawiki │ │ │ └── partial.erb │ │ ├── php_silverstripe │ │ │ └── partial.erb │ │ ├── php_typo3 │ │ │ └── partial.erb │ │ ├── php_wordpress │ │ │ └── partial.erb │ │ ├── proxy │ │ │ └── partial.erb │ │ ├── redirect │ │ │ └── partial.erb │ │ ├── static │ │ │ └── partial.erb │ │ └── webdav │ │ │ └── partial.erb │ │ └── webfiles │ │ └── autoconfig │ │ └── config.shtml.erb │ ├── apt │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .gitrepo │ ├── Gemfile │ ├── LICENSE │ ├── README │ ├── Rakefile │ ├── files │ │ ├── 02show_upgraded │ │ ├── 03clean │ │ ├── 03clean_vserver │ │ └── upgrade_initiator │ ├── lib │ │ └── facter │ │ │ ├── apt_running.rb │ │ │ ├── debian_codename.rb │ │ │ ├── debian_lts.rb │ │ │ ├── debian_nextcodename.rb │ │ │ ├── debian_nextrelease.rb │ │ │ ├── debian_release.rb │ │ │ ├── ubuntu_codename.rb │ │ │ ├── ubuntu_nextcodename.rb │ │ │ └── util │ │ │ ├── debian.rb │ │ │ └── ubuntu.rb │ ├── manifests │ │ ├── apt_conf.pp │ │ ├── apticron.pp │ │ ├── cron │ │ │ ├── base.pp │ │ │ ├── dist_upgrade.pp │ │ │ └── download.pp │ │ ├── dist_upgrade.pp │ │ ├── dist_upgrade │ │ │ └── initiator.pp │ │ ├── dot_d_directories.pp │ │ ├── dselect.pp │ │ ├── init.pp │ │ ├── key.pp │ │ ├── key │ │ │ └── plain.pp │ │ ├── listchanges.pp │ │ ├── params.pp │ │ ├── preferences.pp │ │ ├── preferences │ │ │ └── absent.pp │ │ ├── preferences_snippet.pp │ │ ├── preseeded_package.pp │ │ ├── proxy_client.pp │ │ ├── reboot_required_notify.pp │ │ ├── sources_list.pp │ │ ├── unattended_upgrades.pp │ │ ├── update.pp │ │ └── upgrade_package.pp │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── custom_facts_spec.rb │ └── templates │ │ ├── 20proxy.erb │ │ ├── 50unattended-upgrades.erb │ │ ├── Debian │ │ ├── apticron_jessie.erb │ │ ├── apticron_lenny.erb │ │ ├── apticron_sid.erb │ │ ├── apticron_squeeze.erb │ │ ├── apticron_wheezy.erb │ │ ├── listchanges_jessie.erb │ │ ├── listchanges_lenny.erb │ │ ├── listchanges_sid.erb │ │ ├── listchanges_squeeze.erb │ │ ├── listchanges_wheezy.erb │ │ ├── preferences_jessie.erb │ │ ├── preferences_lenny.erb │ │ ├── preferences_sid.erb │ │ ├── preferences_squeeze.erb │ │ ├── preferences_wheezy.erb │ │ └── sources.list.erb │ │ ├── Ubuntu │ │ ├── preferences_lucid.erb │ │ ├── preferences_maverick.erb │ │ ├── preferences_oneiric.erb │ │ ├── preferences_precise.erb │ │ ├── preferences_utopic.erb │ │ ├── preferences_vivid.erb │ │ ├── preferences_wily.erb │ │ ├── preferences_xenial.erb │ │ └── sources.list.erb │ │ ├── preferences_snippet.erb │ │ └── preferences_snippet_release.erb │ ├── augeas │ ├── .fixtures.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .puppet-lint.rc │ ├── .sync.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── lib │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ └── augeas.rb │ ├── manifests │ │ ├── files.pp │ │ ├── init.pp │ │ ├── lens.pp │ │ ├── packages.pp │ │ └── params.pp │ ├── metadata.json │ └── spec │ │ ├── .rspec │ │ ├── acceptance │ │ └── nodesets │ │ │ ├── centos-7-x86_64-docker.yml │ │ │ ├── centos-7-x86_64-openstack.yml │ │ │ ├── centos-7-x86_64-vagrant.yml │ │ │ ├── debian-6-x86_64-docker.yml │ │ │ ├── debian-6-x86_64-vagrant.yml │ │ │ ├── debian-7-x86_64-docker.yml │ │ │ ├── debian-7-x86_64-openstack.yml │ │ │ ├── debian-7-x86_64-vagrant.yml │ │ │ ├── debian-8-x86_64-docker.yml │ │ │ ├── debian-8-x86_64-openstack.yml │ │ │ └── ubuntu-14.04-x86_64-vagrant.yml │ │ ├── classes │ │ └── augeas_spec.rb │ │ ├── defines │ │ └── augeas_lens_spec.rb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ └── unit │ │ └── puppet │ │ └── parser │ │ └── functions │ │ └── augeas_spec.rb │ ├── backupninja │ ├── .gitrepo │ ├── LICENSE │ ├── README │ ├── files │ │ ├── checkbackups.pl │ │ └── nagios_plugins │ │ │ └── duplicity │ │ │ ├── README.md │ │ │ ├── backupninja_duplicity_freshness.sh │ │ │ └── check_backupninja_duplicity.py │ ├── manifests │ │ ├── cron.pp │ │ ├── duplicity.pp │ │ ├── generate_sshkey.pp │ │ ├── init.pp │ │ ├── key.pp │ │ ├── labelmount.pp │ │ ├── maildir.pp │ │ ├── mysql.pp │ │ ├── nagios_plugin │ │ │ └── duplicity.pp │ │ ├── pgsql.pp │ │ ├── rdiff.pp │ │ ├── rsync.pp │ │ ├── server.pp │ │ ├── sh.pp │ │ ├── svn.pp │ │ └── sys.pp │ └── templates │ │ ├── backupninja.conf.erb │ │ ├── backupninja.cron.erb │ │ ├── dup.conf.erb │ │ ├── labelmount.conf.erb │ │ ├── labelmount.handler │ │ ├── maildir.conf.erb │ │ ├── mysql.conf.erb │ │ ├── pgsql.conf.erb │ │ ├── rdiff.conf.erb │ │ ├── rsync.conf.erb │ │ ├── sh.conf.erb │ │ ├── svn.conf.erb │ │ ├── sys.conf.erb │ │ ├── umount.conf.erb │ │ └── umount.handler │ ├── bundler │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ └── manifests │ │ ├── config.pp │ │ ├── install.pp │ │ └── params.pp │ ├── check_mk │ ├── .gitignore │ ├── .gitrepo │ ├── Changelog │ ├── LICENSE │ ├── Modulefile │ ├── README.md │ ├── Rakefile │ ├── TODO │ ├── debian.md │ ├── example.yaml │ ├── files │ │ ├── agent │ │ │ └── local_checks │ │ │ │ └── all_hosts │ │ │ │ └── README.md │ │ └── use_ssh.mk │ ├── manifests │ │ ├── agent.pp │ │ ├── agent │ │ │ ├── config.pp │ │ │ ├── generate_sshkey.pp │ │ │ ├── install.pp │ │ │ ├── install_local.pp │ │ │ ├── local_checks.pp │ │ │ ├── mrpe.pp │ │ │ ├── ps.pp │ │ │ ├── register.pp │ │ │ └── service.pp │ │ ├── config.pp │ │ ├── host.pp │ │ ├── hostgroup.pp │ │ ├── htpasswd.pp │ │ ├── init.pp │ │ ├── install.pp │ │ ├── install_tarball.pp │ │ ├── omd_repo.pp │ │ ├── ps.pp │ │ ├── server │ │ │ ├── collect_hosts.pp │ │ │ ├── collect_ps.pp │ │ │ └── configure_ssh.pp │ │ └── service.pp │ └── templates │ │ ├── agent │ │ └── check_mk.erb │ │ ├── main.mk.erb │ │ └── setup.conf.erb │ ├── clamav │ ├── files │ │ ├── 01-leap.conf │ │ ├── clamav-daemon.path │ │ ├── clamav-daemon_default │ │ └── clamav-milter_default │ ├── manifests │ │ ├── daemon.pp │ │ ├── daemon │ │ │ └── activation.pp │ │ ├── freshclam.pp │ │ ├── init.pp │ │ ├── milter.pp │ │ └── unofficial_sigs.pp │ └── templates │ │ ├── clamav-milter.conf.erb │ │ ├── local.pdb.erb │ │ └── whitelisted_addresses.erb │ ├── common │ ├── .gitrepo │ ├── LICENSE │ ├── README │ ├── lib │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ ├── basename.rb │ │ │ ├── dirname.rb │ │ │ ├── get_default.rb │ │ │ ├── hostname.rb │ │ │ ├── multi_source_template.rb │ │ │ ├── prefix_with.rb │ │ │ ├── re_escape.rb │ │ │ ├── slash_escape.rb │ │ │ ├── substitute.rb │ │ │ └── tfile.rb │ ├── manifests │ │ ├── module_dir.pp │ │ ├── module_file.pp │ │ ├── moduledir.pp │ │ └── moduledir │ │ │ └── common.pp │ └── spec │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ └── unit │ │ └── parser │ │ └── functions │ │ └── tfile.rb │ ├── concat │ ├── .gitrepo │ ├── CHANGELOG │ ├── LICENSE │ ├── Modulefile │ ├── README.markdown │ ├── Rakefile │ ├── files │ │ ├── concatfragments.sh │ │ └── null │ │ │ └── .gitignore │ ├── lib │ │ └── facter │ │ │ └── concat_basedir.rb │ ├── manifests │ │ ├── fragment.pp │ │ ├── init.pp │ │ └── setup.pp │ └── spec │ │ ├── defines │ │ └── init_spec.rb │ │ └── spec_helper.rb │ ├── couchdb │ ├── .fixtures.yml │ ├── .gitrepo │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── files │ │ ├── Debian │ │ │ └── couchdb │ │ ├── couch-doc-diff │ │ ├── couch-doc-update │ │ └── local.ini │ ├── lib │ │ ├── facter │ │ │ ├── couchdb_pwhash_alg.rb │ │ │ └── couchdb_version.rb │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ ├── couchdblookup.rb │ │ │ └── pbkdf2.rb │ ├── manifests │ │ ├── add_user.pp │ │ ├── backup.pp │ │ ├── base.pp │ │ ├── bigcouch.pp │ │ ├── bigcouch │ │ │ ├── add_node.pp │ │ │ ├── debian.pp │ │ │ ├── document.pp │ │ │ └── package │ │ │ │ └── cloudant.pp │ │ ├── create_db.pp │ │ ├── debian.pp │ │ ├── deploy_config.pp │ │ ├── document.pp │ │ ├── init.pp │ │ ├── mirror_db.pp │ │ ├── params.pp │ │ ├── query.pp │ │ ├── query │ │ │ └── setup.pp │ │ ├── redhat.pp │ │ ├── ssl │ │ │ ├── deploy_cert.pp │ │ │ └── generate_cert.pp │ │ └── update.pp │ ├── spec │ │ ├── classes │ │ │ └── couchdb_spec.rb │ │ ├── fixtures │ │ │ └── manifests │ │ │ │ └── site.pp │ │ ├── functions │ │ │ └── versioncmp_spec.rb │ │ └── spec_helper.rb │ └── templates │ │ ├── admin.ini.erb │ │ ├── bigcouch │ │ ├── default.ini │ │ └── vm.args │ │ └── couchdb-backup.py.erb │ ├── git │ ├── .gitrepo │ ├── files │ │ ├── config │ │ │ ├── CentOS │ │ │ │ ├── git-daemon │ │ │ │ └── git-daemon.vhosts │ │ │ └── Debian │ │ │ │ └── git-daemon │ │ ├── init.d │ │ │ ├── CentOS │ │ │ │ └── git-daemon │ │ │ └── Debian │ │ │ │ └── git-daemon │ │ ├── web │ │ │ └── gitweb.conf │ │ └── xinetd.d │ │ │ ├── git │ │ │ ├── git.disabled │ │ │ └── git.vhosts │ ├── manifests │ │ ├── base.pp │ │ ├── centos.pp │ │ ├── changes.pp │ │ ├── clone.pp │ │ ├── daemon.pp │ │ ├── daemon │ │ │ ├── base.pp │ │ │ ├── centos.pp │ │ │ ├── disable.pp │ │ │ └── vhosts.pp │ │ ├── debian.pp │ │ ├── init.pp │ │ ├── svn.pp │ │ ├── web.pp │ │ └── web │ │ │ ├── absent.pp │ │ │ ├── lighttpd.pp │ │ │ ├── repo.pp │ │ │ └── repo │ │ │ └── lighttpd.pp │ └── templates │ │ └── web │ │ ├── config │ │ └── lighttpd │ ├── haveged │ └── manifests │ │ └── init.pp │ ├── journald │ └── manifests │ │ └── init.pp │ ├── leap │ ├── manifests │ │ ├── cli │ │ │ └── install.pp │ │ ├── init.pp │ │ └── logfile.pp │ └── templates │ │ └── rsyslog.erb │ ├── leap_mx │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── mx.conf.erb │ ├── lsb │ ├── .gitrepo │ └── manifests │ │ ├── base.pp │ │ ├── centos.pp │ │ ├── debian.pp │ │ └── init.pp │ ├── nagios │ ├── .gitrepo │ ├── LICENSE │ ├── README │ ├── README.pnp4nagios │ ├── files │ │ ├── configs │ │ │ ├── CentOS │ │ │ │ ├── cgi.cfg │ │ │ │ ├── nagios.cfg │ │ │ │ └── private │ │ │ │ │ ├── resource.cfg.i386 │ │ │ │ │ └── resource.cfg.x86_64 │ │ │ ├── Debian │ │ │ │ ├── cgi.cfg │ │ │ │ ├── nagios.cfg │ │ │ │ └── private │ │ │ │ │ ├── resource.cfg.amd64 │ │ │ │ │ ├── resource.cfg.i386 │ │ │ │ │ └── resource.cfg.x86_64 │ │ │ ├── apache2.conf │ │ │ ├── cgi.cfg │ │ │ ├── nagios.cfg │ │ │ └── nagios_templates.cfg │ │ ├── htpasswd.users │ │ ├── irc_bot │ │ │ ├── riseup-nagios-client.pl │ │ │ └── riseup-nagios-server.pl │ │ ├── munin │ │ │ ├── nagios_hosts │ │ │ ├── nagios_perf │ │ │ └── nagios_svc │ │ ├── nrpe │ │ │ └── nrpe_commands.cfg │ │ ├── nsca │ │ │ ├── nsca.cfg │ │ │ └── send_nsca.cfg │ │ ├── plugin_data │ │ │ └── sks-keyservers.netCA.pem │ │ ├── plugins │ │ │ ├── check_dns2 │ │ │ ├── check_dnsbl │ │ │ ├── check_gpg │ │ │ ├── check_horde_login │ │ │ ├── check_imap_login │ │ │ ├── check_jabber_login │ │ │ ├── check_mysql_health │ │ │ ├── check_openvpn_server.pl │ │ │ └── check_pop3_login │ │ └── pnp4nagios │ │ │ ├── action.gif │ │ │ ├── apache.conf │ │ │ ├── npcd │ │ │ ├── pnp4nagios-popup-templates.cfg │ │ │ ├── pnp4nagios-templates.cfg │ │ │ └── status-header.ssi │ ├── images │ │ └── nagiosgraph.gif │ ├── manifests │ │ ├── apache.pp │ │ ├── base.pp │ │ ├── centos.pp │ │ ├── command │ │ │ ├── imap_pop3.pp │ │ │ ├── nrpe.pp │ │ │ ├── nrpe_timeout.pp │ │ │ └── smtp.pp │ │ ├── debian.pp │ │ ├── debian │ │ │ └── apache.pp │ │ ├── defaults.pp │ │ ├── defaults │ │ │ ├── commands.pp │ │ │ ├── contactgroups.pp │ │ │ ├── contacts.pp │ │ │ ├── host_templates.pp │ │ │ ├── hostgroups.pp │ │ │ ├── plugins.pp │ │ │ ├── pnp4nagios.pp │ │ │ ├── service_templates.pp │ │ │ ├── templates.pp │ │ │ ├── timeperiods.pp │ │ │ └── vars.pp │ │ ├── headless.pp │ │ ├── init.pp │ │ ├── irc_bot.pp │ │ ├── irc_bot │ │ │ ├── base.pp │ │ │ ├── centos.pp │ │ │ ├── debian.pp │ │ │ └── disable.pp │ │ ├── lighttpd.pp │ │ ├── munin.pp │ │ ├── nrpe.pp │ │ ├── nrpe │ │ │ ├── base.pp │ │ │ ├── command.pp │ │ │ ├── debian.pp │ │ │ ├── freebsd.pp │ │ │ ├── linux.pp │ │ │ └── xinetd.pp │ │ ├── nsca.pp │ │ ├── nsca │ │ │ ├── client.pp │ │ │ └── server.pp │ │ ├── plugin.pp │ │ ├── plugin │ │ │ ├── deploy.pp │ │ │ └── scriptpaths.pp │ │ ├── plugins │ │ │ ├── gpg.pp │ │ │ ├── horde_login.pp │ │ │ ├── jabber.pp │ │ │ └── mail_login.pp │ │ ├── pnp4nagios.pp │ │ ├── pnp4nagios │ │ │ └── popup.pp │ │ ├── service.pp │ │ ├── service │ │ │ ├── dns.pp │ │ │ ├── dns_host.pp │ │ │ ├── gpgkey.pp │ │ │ ├── horde_login.pp │ │ │ ├── http.pp │ │ │ ├── imap.pp │ │ │ ├── imap_login.pp │ │ │ ├── mysql.pp │ │ │ ├── ntp.pp │ │ │ ├── passive.pp │ │ │ ├── ping.pp │ │ │ ├── pop.pp │ │ │ ├── pop3_login.pp │ │ │ ├── smtp.pp │ │ │ └── ssmtp.pp │ │ ├── storeconfigs.pp │ │ ├── stored_config.pp │ │ ├── target.pp │ │ └── target │ │ │ └── fqdn.pp │ └── templates │ │ ├── irc_bot │ │ ├── CentOS │ │ │ └── nagios-nsa.sh.erb │ │ ├── Debian │ │ │ └── nagios-nsa.sh.erb │ │ └── nsa.cfg.erb │ │ └── nrpe │ │ ├── nrpe.cfg │ │ └── nrpe_command.erb │ ├── ntp │ ├── .fixtures.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .nodeset.yml │ ├── .travis.yml │ ├── CHANGELOG │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── Modulefile │ ├── README.markdown │ ├── Rakefile │ ├── manifests │ │ ├── config.pp │ │ ├── init.pp │ │ ├── install.pp │ │ ├── params.pp │ │ └── service.pp │ ├── spec │ │ ├── classes │ │ │ └── ntp_spec.rb │ │ ├── fixtures │ │ │ └── modules │ │ │ │ └── my_ntp │ │ │ │ └── templates │ │ │ │ └── ntp.conf.erb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ ├── spec_helper_system.rb │ │ ├── system │ │ │ ├── basic_spec.rb │ │ │ ├── class_spec.rb │ │ │ ├── ntp_config_spec.rb │ │ │ ├── ntp_install_spec.rb │ │ │ ├── ntp_service_spec.rb │ │ │ ├── preferred_servers_spec.rb │ │ │ └── restrict_spec.rb │ │ └── unit │ │ │ └── puppet │ │ │ ├── provider │ │ │ └── README.markdown │ │ │ └── type │ │ │ └── README.markdown │ ├── templates │ │ └── ntp.conf.erb │ └── tests │ │ └── init.pp │ ├── obfsproxy │ ├── files │ │ ├── obfsproxy_init │ │ └── obfsproxy_logrotate │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── etc_conf.erb │ ├── opendkim │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── opendkim.conf │ ├── openvpn │ ├── .fixtures.yml │ ├── .gitignore │ ├── .gitrepo │ ├── Modulefile │ ├── Rakefile │ ├── Readme.markdown │ ├── manifests │ │ ├── client.pp │ │ ├── init.pp │ │ ├── option.pp │ │ └── server.pp │ ├── spec │ │ ├── classes │ │ │ └── openvpn_init_spec.rb │ │ ├── defines │ │ │ ├── openvpn_client_spec.rb │ │ │ ├── openvpn_option_spec.rb │ │ │ └── openvpn_server_spec.rb │ │ └── spec_helper.rb │ └── templates │ │ ├── etc-default-openvpn.erb │ │ └── vars.erb │ ├── passenger │ ├── .gitrepo │ ├── README │ ├── files │ │ ├── mod_passenger.conf │ │ └── munin │ │ │ ├── passenger_memory_stats │ │ │ └── passenger_stats │ └── manifests │ │ ├── apache.pp │ │ ├── apache │ │ ├── base.pp │ │ ├── centos.pp │ │ └── debian.pp │ │ ├── init.pp │ │ └── munin.pp │ ├── postfix │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── files │ │ ├── header_checks.d │ │ │ └── .ignore │ │ ├── main.cf │ │ └── tls_policy.d │ │ │ └── .ignore │ ├── manifests │ │ ├── amavis.pp │ │ ├── anonsasl.pp │ │ ├── config.pp │ │ ├── disable.pp │ │ ├── disable │ │ │ ├── base.pp │ │ │ └── debian.pp │ │ ├── hash.pp │ │ ├── header_checks.pp │ │ ├── header_checks_snippet.pp │ │ ├── init.pp │ │ ├── mailalias.pp │ │ ├── mailman.pp │ │ ├── mta.pp │ │ ├── satellite.pp │ │ ├── smtp_auth.pp │ │ ├── tlspolicy.pp │ │ ├── tlspolicy_snippet.pp │ │ ├── transport.pp │ │ ├── transport_regexp.pp │ │ ├── transport_regexp_snippet.pp │ │ ├── virtual.pp │ │ ├── virtual_regexp.pp │ │ └── virtual_regexp_snippet.pp │ └── templates │ │ ├── anonsasl_header_checks.erb │ │ ├── master.cf.debian-5.erb │ │ ├── master.cf.debian-6.erb │ │ ├── master.cf.debian-7.erb │ │ ├── master.cf.debian-8.erb │ │ ├── master.cf.debian-sid.erb │ │ └── master.cf.redhat5.erb │ ├── postfwd │ ├── files │ │ └── postfwd_default │ ├── manifests │ │ └── init.pp │ └── templates │ │ └── postfwd.cf.erb │ ├── resolvconf │ ├── .gitrepo │ ├── manifests │ │ └── init.pp │ └── templates │ │ ├── resolvconf.OpenBSD.erb │ │ └── resolvconf.erb │ ├── rsyslog │ ├── .fixtures.yml │ ├── .gemfile │ ├── .gitignore │ ├── .gitrepo │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── lib │ │ └── facter │ │ │ └── rsyslog_version.rb │ ├── manifests │ │ ├── client.pp │ │ ├── config.pp │ │ ├── database.pp │ │ ├── imfile.pp │ │ ├── init.pp │ │ ├── install.pp │ │ ├── modload.pp │ │ ├── params.pp │ │ ├── server.pp │ │ ├── service.pp │ │ └── snippet.pp │ ├── metadata.json │ ├── spec │ │ ├── classes │ │ │ ├── rsyslog_client_spec.rb │ │ │ ├── rsyslog_database_spec.rb │ │ │ ├── rsyslog_server_spec.rb │ │ │ └── rsyslog_spec.rb │ │ ├── defines │ │ │ ├── rsyslog_imfile_spec.rb │ │ │ └── rsyslog_snippet_spec.rb │ │ ├── spec.opts │ │ └── spec_helper.rb │ ├── templates │ │ ├── client.conf.erb │ │ ├── database.conf.erb │ │ ├── imfile.erb │ │ ├── modload.erb │ │ ├── rsyslog.conf.erb │ │ ├── rsyslog_default.erb │ │ ├── rsyslog_default_gentoo.erb │ │ ├── rsyslog_default_rhel7.erb │ │ ├── server-default.conf.erb │ │ ├── server-hostname.conf.erb │ │ └── server │ │ │ ├── _default-footer.conf.erb │ │ │ └── _default-header.conf.erb │ └── tests │ │ ├── database.pp │ │ ├── init.pp │ │ ├── log_templates.pp │ │ └── multiple_hosts.pp │ ├── ruby │ ├── .gitrepo │ └── manifests │ │ ├── devel.pp │ │ ├── init.pp │ │ ├── mysql.pp │ │ ├── postgres.pp │ │ ├── shadow.pp │ │ └── shadow │ │ ├── base.pp │ │ └── debian.pp │ ├── rubygems │ ├── .gitrepo │ ├── files │ │ └── gemrc │ └── manifests │ │ ├── activerecord.pp │ │ ├── activesupport.pp │ │ ├── backports.pp │ │ ├── bcrypt.pp │ │ ├── brokengem.pp │ │ ├── camping.pp │ │ ├── captcha │ │ └── v_0_1_2.pp │ │ ├── chronic_duration.pp │ │ ├── devel.pp │ │ ├── fastercsv.pp │ │ ├── gd │ │ └── v_0_7_4.pp │ │ ├── gem.pp │ │ ├── gem │ │ └── cachedir.pp │ │ ├── gpgme.pp │ │ ├── hiera.pp │ │ ├── hiera_puppet.pp │ │ ├── highline.pp │ │ ├── init.pp │ │ ├── ip.pp │ │ ├── json │ │ └── v_1_4_6.pp │ │ ├── lockfile.pp │ │ ├── mail.pp │ │ ├── maildir.pp │ │ ├── markaby.pp │ │ ├── moneta.pp │ │ ├── mysql.pp │ │ ├── net_ldap │ │ └── v_0_0_4.pp │ │ ├── ntlm │ │ └── v_0_1_1.pp │ │ ├── open4.pp │ │ ├── pbkdf2.pp │ │ ├── postgres.pp │ │ ├── rack.pp │ │ ├── sinatra.pp │ │ ├── sqlite.pp │ │ ├── systemu.pp │ │ ├── thin.pp │ │ ├── tlsmail.pp │ │ ├── tmail.pp │ │ ├── xmlsimple.pp │ │ ├── xmpp4r.pp │ │ └── ya2yaml.pp │ ├── shorewall │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── files │ │ ├── boilerplate │ │ │ ├── blacklist.footer │ │ │ ├── blacklist.header │ │ │ ├── clear.footer │ │ │ ├── clear.header │ │ │ ├── continue.footer │ │ │ ├── continue.header │ │ │ ├── hosts.footer │ │ │ ├── hosts.header │ │ │ ├── init.footer │ │ │ ├── init.header │ │ │ ├── initdone.footer │ │ │ ├── initdone.header │ │ │ ├── interfaces.footer │ │ │ ├── interfaces.header │ │ │ ├── maclog.footer │ │ │ ├── maclog.header │ │ │ ├── mangle.footer │ │ │ ├── mangle.header │ │ │ ├── masq.footer │ │ │ ├── masq.header │ │ │ ├── nat.footer │ │ │ ├── nat.header │ │ │ ├── params.footer │ │ │ ├── params.header │ │ │ ├── policy.footer │ │ │ ├── policy.header │ │ │ ├── providers.footer │ │ │ ├── providers.header │ │ │ ├── proxyarp.footer │ │ │ ├── proxyarp.header │ │ │ ├── rfc1918.footer │ │ │ ├── rfc1918.header │ │ │ ├── routestopped.footer │ │ │ ├── routestopped.header │ │ │ ├── rtrules.footer │ │ │ ├── rtrules.header │ │ │ ├── rules.footer │ │ │ ├── rules.header │ │ │ ├── start.footer │ │ │ ├── start.header │ │ │ ├── started.footer │ │ │ ├── started.header │ │ │ ├── stop.footer │ │ │ ├── stop.header │ │ │ ├── stopped.footer │ │ │ ├── stopped.header │ │ │ ├── tcclasses.footer │ │ │ ├── tcclasses.header │ │ │ ├── tcdevices.footer │ │ │ ├── tcdevices.header │ │ │ ├── tcrules.footer │ │ │ ├── tcrules.header │ │ │ ├── tunnel.footer │ │ │ ├── tunnel.header │ │ │ ├── zones.footer │ │ │ └── zones.header │ │ └── empty │ │ │ └── .ignore │ ├── manifests │ │ ├── base.pp │ │ ├── blacklist.pp │ │ ├── centos.pp │ │ ├── debian.pp │ │ ├── entry.pp │ │ ├── extension_script.pp │ │ ├── gentoo.pp │ │ ├── host.pp │ │ ├── init.pp │ │ ├── interface.pp │ │ ├── managed_file.pp │ │ ├── mangle.pp │ │ ├── masq.pp │ │ ├── nat.pp │ │ ├── params.pp │ │ ├── policy.pp │ │ ├── providers.pp │ │ ├── proxyarp.pp │ │ ├── rfc1918.pp │ │ ├── routestopped.pp │ │ ├── rtrules.pp │ │ ├── rule.pp │ │ ├── rule_section.pp │ │ ├── rules │ │ │ ├── cobbler.pp │ │ │ ├── dns.pp │ │ │ ├── dns │ │ │ │ └── disable.pp │ │ │ ├── dns_rules.pp │ │ │ ├── ekeyd.pp │ │ │ ├── ftp.pp │ │ │ ├── gitdaemon.pp │ │ │ ├── gitdaemon │ │ │ │ └── absent.pp │ │ │ ├── http.pp │ │ │ ├── http │ │ │ │ └── disable.pp │ │ │ ├── https.pp │ │ │ ├── identd.pp │ │ │ ├── imap.pp │ │ │ ├── ipsec.pp │ │ │ ├── ipsec_nat.pp │ │ │ ├── jabberserver.pp │ │ │ ├── jetty.pp │ │ │ ├── jetty │ │ │ │ ├── http.pp │ │ │ │ └── ssl.pp │ │ │ ├── keyserver.pp │ │ │ ├── libvirt │ │ │ │ └── host.pp │ │ │ ├── managesieve.pp │ │ │ ├── mdns.pp │ │ │ ├── munin.pp │ │ │ ├── mysql.pp │ │ │ ├── nfsd.pp │ │ │ ├── ntp │ │ │ │ ├── client.pp │ │ │ │ └── server.pp │ │ │ ├── openfire.pp │ │ │ ├── openvpn.pp │ │ │ ├── out │ │ │ │ ├── ekeyd.pp │ │ │ │ ├── git.pp │ │ │ │ ├── ibackup.pp │ │ │ │ ├── imap.pp │ │ │ │ ├── irc.pp │ │ │ │ ├── ircs.pp │ │ │ │ ├── keyserver.pp │ │ │ │ ├── managesieve.pp │ │ │ │ ├── munin.pp │ │ │ │ ├── mysql.pp │ │ │ │ ├── pop3.pp │ │ │ │ ├── postgres.pp │ │ │ │ ├── puppet.pp │ │ │ │ ├── pyzor.pp │ │ │ │ ├── razor.pp │ │ │ │ ├── silc.pp │ │ │ │ ├── smtp.pp │ │ │ │ ├── ssh.pp │ │ │ │ ├── ssh │ │ │ │ │ ├── disable.pp │ │ │ │ │ └── remove.pp │ │ │ │ ├── whois.pp │ │ │ │ └── xmpp.pp │ │ │ ├── pop3.pp │ │ │ ├── postgres.pp │ │ │ ├── puppet.pp │ │ │ ├── puppet │ │ │ │ └── master.pp │ │ │ ├── rsync.pp │ │ │ ├── silcd.pp │ │ │ ├── smtp.pp │ │ │ ├── smtp │ │ │ │ └── disable.pp │ │ │ ├── smtp_submission.pp │ │ │ ├── smtp_submission │ │ │ │ └── disable.pp │ │ │ ├── smtps.pp │ │ │ ├── smtps │ │ │ │ └── disable.pp │ │ │ ├── sobby │ │ │ │ └── instance.pp │ │ │ ├── ssh.pp │ │ │ ├── syslog.pp │ │ │ ├── tftp.pp │ │ │ ├── tinc.pp │ │ │ ├── tomcat.pp │ │ │ ├── torify.pp │ │ │ └── torify │ │ │ │ ├── allow_tor_transparent_proxy.pp │ │ │ │ ├── allow_tor_user.pp │ │ │ │ ├── redirect_tcp_to_tor.pp │ │ │ │ ├── reject_non_tor.pp │ │ │ │ └── user.pp │ │ ├── tcclasses.pp │ │ ├── tcdevices.pp │ │ ├── tcrules.pp │ │ ├── tunnel.pp │ │ └── zone.pp │ └── templates │ │ └── debian_default.erb │ ├── site_apache │ ├── files │ │ ├── autorestart.conf │ │ ├── conf.d │ │ │ ├── acme.conf │ │ │ └── security │ │ └── include.d │ │ │ └── ssl_common.inc │ ├── manifests │ │ ├── common.pp │ │ └── common │ │ │ ├── acme.pp │ │ │ ├── autorestart.pp │ │ │ └── tls.pp │ ├── spec │ │ └── classes │ │ │ └── autorestart_spec.rb │ └── templates │ │ └── vhosts.d │ │ ├── api.conf.erb │ │ ├── common.conf.erb │ │ └── hidden_service.conf.erb │ ├── site_apt │ ├── files │ │ └── keys │ │ │ ├── leap-archive.gpg │ │ │ └── leap-experimental-archive.gpg │ ├── manifests │ │ ├── dist_upgrade.pp │ │ ├── init.pp │ │ ├── leap_repo.pp │ │ ├── preferences │ │ │ ├── check_mk.pp │ │ │ ├── python_cryptography.pp │ │ │ └── twisted.pp │ │ └── unattended_upgrades.pp │ └── templates │ │ ├── 51unattended-upgrades-leap │ │ ├── Debian │ │ └── preferences_jessie.erb │ │ ├── jessie │ │ └── postfix.seeds │ │ ├── preferences.include_squeeze │ │ ├── secondary.list │ │ └── wheezy │ │ └── postfix.seeds │ ├── site_check_mk │ ├── files │ │ ├── agent │ │ │ ├── local_checks │ │ │ │ ├── all_hosts │ │ │ │ │ └── run_node_tests.sh │ │ │ │ ├── couchdb │ │ │ │ │ └── leap_couch_stats.sh │ │ │ │ └── mx │ │ │ │ │ └── check_leap_mx.sh │ │ │ ├── logwatch │ │ │ │ ├── leap_mx.cfg │ │ │ │ ├── logwatch.cfg │ │ │ │ ├── openvpn.cfg │ │ │ │ ├── soledad.cfg │ │ │ │ ├── stunnel.cfg │ │ │ │ ├── syslog │ │ │ │ │ ├── bigcouch.cfg │ │ │ │ │ └── couchdb.cfg │ │ │ │ ├── syslog_header.cfg │ │ │ │ ├── syslog_tail.cfg │ │ │ │ └── webapp.cfg │ │ │ └── plugins │ │ │ │ └── mk_logwatch.1.2.4 │ │ ├── extra_service_conf.mk │ │ └── ignored_services.mk │ ├── manifests │ │ ├── agent.pp │ │ ├── agent │ │ │ ├── couchdb.pp │ │ │ ├── haveged.pp │ │ │ ├── logwatch.pp │ │ │ ├── logwatch │ │ │ │ └── syslog.pp │ │ │ ├── mrpe.pp │ │ │ ├── mx.pp │ │ │ ├── openvpn.pp │ │ │ ├── package │ │ │ │ ├── nagios_plugins_contrib.pp │ │ │ │ └── perl_plugin.pp │ │ │ ├── soledad.pp │ │ │ ├── stunnel.pp │ │ │ └── webapp.pp │ │ └── server.pp │ └── templates │ │ ├── extra_host_conf.mk │ │ ├── host_contactgroups.mk │ │ ├── hostgroups.mk │ │ └── use_ssh.mk │ ├── site_config │ ├── files │ │ └── xterm-title.sh │ ├── lib │ │ ├── facter │ │ │ ├── dhcp_enabled.rb │ │ │ ├── ip_interface.rb │ │ │ └── vagrant.rb │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ ├── create_resources_hash_from.rb │ │ │ ├── sorted_json.rb │ │ │ └── sorted_yaml.rb │ ├── manifests │ │ ├── caching_resolver.pp │ │ ├── default.pp │ │ ├── dhclient.pp │ │ ├── files.pp │ │ ├── hosts.pp │ │ ├── initial_firewall.pp │ │ ├── packages.pp │ │ ├── packages │ │ │ ├── build_essential.pp │ │ │ └── gnutls.pp │ │ ├── params.pp │ │ ├── remove.pp │ │ ├── remove │ │ │ ├── bigcouch.pp │ │ │ ├── files.pp │ │ │ ├── jessie.pp │ │ │ ├── monitoring.pp │ │ │ ├── soledad.pp │ │ │ ├── tapicero.pp │ │ │ └── webapp.pp │ │ ├── resolvconf.pp │ │ ├── ruby.pp │ │ ├── ruby │ │ │ └── dev.pp │ │ ├── setup.pp │ │ ├── shell.pp │ │ ├── slow.pp │ │ ├── sysctl.pp │ │ ├── syslog.pp │ │ ├── vagrant.pp │ │ └── x509 │ │ │ ├── ca.pp │ │ │ ├── ca_bundle.pp │ │ │ ├── cert.pp │ │ │ ├── client_ca │ │ │ ├── ca.pp │ │ │ └── key.pp │ │ │ ├── commercial │ │ │ ├── ca.pp │ │ │ ├── cert.pp │ │ │ └── key.pp │ │ │ └── key.pp │ └── templates │ │ ├── hosts │ │ ├── ipv4firewall_up.rules.erb │ │ ├── ipv6firewall_up.rules.erb │ │ └── reload_dhclient.erb │ ├── site_couchdb │ ├── files │ │ ├── couchdb_scripts_defaults.conf │ │ ├── designs │ │ │ ├── Readme.md │ │ │ ├── customers │ │ │ │ └── Customer.json │ │ │ ├── identities │ │ │ │ └── Identity.json │ │ │ ├── invite_codes │ │ │ │ └── InviteCode.json │ │ │ ├── messages │ │ │ │ └── Message.json │ │ │ ├── sessions │ │ │ │ └── Session.json │ │ │ ├── tickets │ │ │ │ └── Ticket.json │ │ │ ├── tokens │ │ │ │ └── Token.json │ │ │ └── users │ │ │ │ └── User.json │ │ ├── leap_ca_daemon │ │ └── local.ini │ ├── lib │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ └── rotated_db_name.rb │ └── manifests │ │ ├── add_users.pp │ │ ├── backup.pp │ │ ├── create_dbs.pp │ │ ├── designs.pp │ │ ├── init.pp │ │ ├── mirror.pp │ │ ├── plain.pp │ │ ├── setup.pp │ │ └── upload_design.pp │ ├── site_mx │ └── manifests │ │ └── init.pp │ ├── site_nagios │ ├── files │ │ ├── configs │ │ │ └── Debian │ │ │ │ └── nagios.cfg │ │ └── plugins │ │ │ └── check_last_regex_in_log │ ├── manifests │ │ ├── add_host_services.pp │ │ ├── add_service.pp │ │ ├── init.pp │ │ ├── plugins.pp │ │ ├── server.pp │ │ └── server │ │ │ ├── add_contacts.pp │ │ │ ├── apache.pp │ │ │ ├── contactgroup.pp │ │ │ ├── hostgroup.pp │ │ │ └── icli.pp │ └── templates │ │ └── icli_aliases.erb │ ├── site_nickserver │ ├── manifests │ │ └── init.pp │ └── templates │ │ ├── nickserver-proxy.conf.erb │ │ └── nickserver.yml.erb │ ├── site_obfsproxy │ ├── README │ └── manifests │ │ └── init.pp │ ├── site_openvpn │ ├── README │ ├── manifests │ │ ├── dh_key.pp │ │ ├── init.pp │ │ ├── resolver.pp │ │ └── server_config.pp │ └── templates │ │ └── add_gateway_ips.sh.erb │ ├── site_postfix │ ├── files │ │ └── checks │ │ │ ├── helo_access.pcre │ │ │ └── received_anon │ ├── manifests │ │ ├── debug.pp │ │ ├── mx.pp │ │ ├── mx │ │ │ ├── checks.pp │ │ │ ├── received_anon.pp │ │ │ ├── rewrite_openpgp_header.pp │ │ │ ├── smtp_auth.pp │ │ │ ├── smtp_tls.pp │ │ │ ├── smtpd_checks.pp │ │ │ ├── smtpd_tls.pp │ │ │ └── static_aliases.pp │ │ └── satellite.pp │ └── templates │ │ ├── checks │ │ ├── helo_access.erb │ │ └── rewrite_openpgp_headers.erb │ │ └── virtual-aliases.erb │ ├── site_rsyslog │ └── templates │ │ └── client.conf.erb │ ├── site_shorewall │ ├── files │ │ └── Debian │ │ │ └── shorewall.service │ └── manifests │ │ ├── defaults.pp │ │ ├── dnat.pp │ │ ├── dnat_rule.pp │ │ ├── eip.pp │ │ ├── ip_forward.pp │ │ ├── monitor.pp │ │ ├── mx.pp │ │ ├── obfsproxy.pp │ │ ├── service │ │ ├── http.pp │ │ ├── https.pp │ │ ├── smtp.pp │ │ └── webapp_api.pp │ │ ├── soledad.pp │ │ ├── sshd.pp │ │ ├── stunnel │ │ ├── client.pp │ │ └── server.pp │ │ ├── tor.pp │ │ └── webapp.pp │ ├── site_squid_deb_proxy │ └── manifests │ │ └── client.pp │ ├── site_sshd │ ├── manifests │ │ ├── authorized_keys.pp │ │ ├── deploy_authorized_keys.pp │ │ ├── init.pp │ │ └── mosh.pp │ └── templates │ │ ├── authorized_keys.erb │ │ ├── ssh_config.erb │ │ └── ssh_known_hosts.erb │ ├── site_static │ ├── README │ ├── manifests │ │ ├── domain.pp │ │ ├── hidden_service.pp │ │ ├── init.pp │ │ └── location.pp │ └── templates │ │ ├── amber.erb │ │ ├── apache.conf.erb │ │ └── rack.erb │ ├── site_stunnel │ └── manifests │ │ ├── client.pp │ │ ├── clients.pp │ │ ├── init.pp │ │ ├── override_service.pp │ │ └── servers.pp │ ├── site_tor │ └── manifests │ │ ├── disable_exit.pp │ │ ├── hidden_service.pp │ │ ├── init.pp │ │ └── relay.pp │ ├── site_webapp │ ├── files │ │ └── server-status.conf │ ├── manifests │ │ ├── apache.pp │ │ ├── common_vhost.pp │ │ ├── couchdb.pp │ │ ├── cron.pp │ │ ├── hidden_service.pp │ │ └── init.pp │ └── templates │ │ ├── config.yml.erb │ │ ├── couchdb.admin.yml.erb │ │ └── couchdb.yml.erb │ ├── soledad │ ├── manifests │ │ ├── client.pp │ │ ├── common.pp │ │ └── server.pp │ └── templates │ │ ├── default-soledad.erb │ │ └── soledad-server.conf.erb │ ├── squid_deb_proxy │ ├── .gitrepo │ ├── README.md │ ├── files │ │ ├── Debian │ │ │ └── squid-deb-proxy.conf │ │ ├── Ubuntu │ │ │ └── squid-deb-proxy.conf │ │ ├── allowed-networks-src.acl.d │ │ │ └── 20-custom │ │ ├── client │ │ │ └── apt-avahi-discover │ │ └── mirror-dstdomain.acl.d │ │ │ └── 20-custom │ └── manifests │ │ ├── client.pp │ │ └── server.pp │ ├── sshd │ ├── .fixtures.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .rspec │ ├── .travis.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Modulefile │ ├── Puppetfile │ ├── Puppetfile.lock │ ├── README.md │ ├── Rakefile │ ├── files │ │ └── autossh.init.d │ ├── lib │ │ ├── facter │ │ │ └── ssh_version.rb │ │ └── puppet │ │ │ └── parser │ │ │ └── functions │ │ │ └── ssh_keygen.rb │ ├── manifests │ │ ├── autossh.pp │ │ ├── base.pp │ │ ├── client.pp │ │ ├── client │ │ │ ├── base.pp │ │ │ ├── debian.pp │ │ │ └── linux.pp │ │ ├── debian.pp │ │ ├── gentoo.pp │ │ ├── init.pp │ │ ├── libssh2.pp │ │ ├── libssh2 │ │ │ └── devel.pp │ │ ├── linux.pp │ │ ├── nagios.pp │ │ ├── openbsd.pp │ │ ├── redhat.pp │ │ ├── ssh_authorized_key.pp │ │ └── sshkey.pp │ ├── spec │ │ ├── classes │ │ │ ├── client_spec.rb │ │ │ └── init_spec.rb │ │ ├── defines │ │ │ └── ssh_authorized_key_spec.rb │ │ ├── functions │ │ │ └── ssh_keygen_spec.rb │ │ ├── spec_helper.rb │ │ └── spec_helper_system.rb │ └── templates │ │ └── sshd_config │ │ ├── CentOS_5.erb │ │ ├── CentOS_6.erb │ │ ├── CentOS_7.erb │ │ ├── Debian_jessie.erb │ │ ├── Debian_sid.erb │ │ ├── Debian_squeeze.erb │ │ ├── Debian_wheezy.erb │ │ ├── FreeBSD.erb │ │ ├── Gentoo.erb │ │ ├── OpenBSD.erb │ │ ├── Ubuntu.erb │ │ ├── Ubuntu_lucid.erb │ │ ├── Ubuntu_oneiric.erb │ │ ├── Ubuntu_precise.erb │ │ └── XenServer_xenenterprise.erb │ ├── stdlib │ ├── .fixtures.yml │ ├── .gemspec │ ├── .gitignore │ ├── .gitrepo │ ├── .project │ ├── .rspec │ ├── .sync.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── README.markdown │ ├── README_DEVELOPER.markdown │ ├── README_SPECS.markdown │ ├── RELEASE_PROCESS.markdown │ ├── Rakefile │ ├── lib │ │ ├── facter │ │ │ ├── facter_dot_d.rb │ │ │ ├── netmask_cidr_interface.rb │ │ │ ├── pe_version.rb │ │ │ ├── puppet_vardir.rb │ │ │ ├── root_home.rb │ │ │ └── util │ │ │ │ └── puppet_settings.rb │ │ └── puppet │ │ │ ├── functions │ │ │ └── type_of.rb │ │ │ ├── parser │ │ │ └── functions │ │ │ │ ├── abs.rb │ │ │ │ ├── any2array.rb │ │ │ │ ├── base64.rb │ │ │ │ ├── basename.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 │ │ │ │ ├── obfuscate_email.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 │ │ │ │ ├── str2saltedsha1.rb │ │ │ │ ├── str2saltedsha512.rb │ │ │ │ ├── str2sha1_and_salt.rb │ │ │ │ ├── str_and_salt2sha1.rb │ │ │ │ ├── strftime.rb │ │ │ │ ├── strip.rb │ │ │ │ ├── suffix.rb │ │ │ │ ├── swapcase.rb │ │ │ │ ├── time.rb │ │ │ │ ├── to_bytes.rb │ │ │ │ ├── type.rb │ │ │ │ ├── type3x.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 │ │ ├── fixtures │ │ │ └── dscacheutil │ │ │ │ └── root │ │ ├── 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 │ │ │ ├── type3x_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 │ │ │ ├── functions │ │ │ └── type_of_spec.rb │ │ │ ├── parser │ │ │ └── functions │ │ │ │ ├── basename_spec.rb │ │ │ │ ├── bool2str_spec.rb │ │ │ │ ├── camelcase_spec.rb │ │ │ │ └── str2saltedsha1_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 │ ├── stunnel │ ├── .gitrepo │ ├── LICENSE │ ├── README │ ├── files │ │ └── CentOS │ │ │ └── stunnel.init │ ├── manifests │ │ ├── base.pp │ │ ├── centos.pp │ │ ├── debian.pp │ │ ├── init.pp │ │ ├── linux.pp │ │ ├── service.pp │ │ └── service │ │ │ └── nagios.pp │ └── templates │ │ ├── Debian │ │ └── default │ │ ├── refresh_stunnel.sh.erb │ │ └── service.conf.erb │ ├── sysctl │ ├── .gitrepo │ ├── README │ └── manifests │ │ ├── config.pp │ │ └── init.pp │ ├── systemd │ ├── .fixtures.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .puppet-lint.rc │ ├── .sync.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── lib │ │ └── facter │ │ │ └── systemd.rb │ ├── manifests │ │ ├── enable.pp │ │ ├── init.pp │ │ ├── service_limits.pp │ │ ├── tmpfile.pp │ │ └── unit_file.pp │ ├── metadata.json │ ├── spec │ │ ├── acceptance │ │ │ └── nodesets │ │ │ │ ├── centos-5-x86_64-docker.yml │ │ │ │ ├── centos-5.yml │ │ │ │ ├── centos-6-x86_64-docker.yml │ │ │ │ ├── centos-6-x86_64-openstack.yml │ │ │ │ ├── centos-6-x86_64-vagrant.yml │ │ │ │ ├── centos-6.yml │ │ │ │ ├── centos-7-x86_64-docker.yml │ │ │ │ ├── centos-7-x86_64-openstack.yml │ │ │ │ ├── centos-7-x86_64-vagrant.yml │ │ │ │ ├── centos-7.yml │ │ │ │ ├── debian-6-x86_64-docker.yml │ │ │ │ ├── debian-6-x86_64-openstack.yml │ │ │ │ ├── debian-6-x86_64-vagrant.yml │ │ │ │ ├── debian-6.yml │ │ │ │ ├── debian-7-x86_64-docker.yml │ │ │ │ ├── debian-7-x86_64-openstack.yml │ │ │ │ ├── debian-7-x86_64-vagrant.yml │ │ │ │ ├── debian-7.yml │ │ │ │ ├── debian-8-x86_64-docker.yml │ │ │ │ ├── debian-8-x86_64-openstack.yml │ │ │ │ ├── debian-8-x86_64-vagrant.yml │ │ │ │ ├── debian-8.yml │ │ │ │ ├── ubuntu-10.04-x86_64-docker.yml │ │ │ │ ├── ubuntu-12.04-x86_64-docker.yml │ │ │ │ ├── ubuntu-12.04-x86_64-openstack.yml │ │ │ │ ├── ubuntu-12.04.yml │ │ │ │ ├── ubuntu-14.04-x86_64-docker.yml │ │ │ │ ├── ubuntu-14.04-x86_64-openstack.yml │ │ │ │ ├── ubuntu-14.04-x86_64-vagrant.yml │ │ │ │ ├── ubuntu-14.04.yml │ │ │ │ ├── ubuntu-14.10-x86_64-docker.yml │ │ │ │ ├── ubuntu-14.10-x86_64-openstack.yml │ │ │ │ ├── ubuntu-14.10.yml │ │ │ │ ├── ubuntu-15.04-x86_64-docker.yml │ │ │ │ ├── ubuntu-15.04-x86_64-openstack.yml │ │ │ │ ├── ubuntu-15.04.yml │ │ │ │ ├── ubuntu-15.10.yml │ │ │ │ └── ubuntu-16.04.yml │ │ ├── defines │ │ │ ├── tmpfile_spec.rb │ │ │ └── unit_file_spec.rb │ │ ├── spec.opts │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── facter │ │ │ ├── systemd_spec.rb │ │ │ └── systemd_version_spec.rb │ └── templates │ │ └── limits.erb │ ├── templatewlv │ ├── Modulefile │ ├── README.md │ └── lib │ │ └── puppet │ │ └── parser │ │ ├── functions │ │ └── templatewlv.rb │ │ └── templatewrapperwlv.rb │ ├── tor │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README │ ├── files │ │ ├── munin │ │ │ ├── tor_connections │ │ │ ├── tor_routers │ │ │ └── tor_traffic │ │ ├── polipo │ │ │ └── polipo.conf │ │ ├── tor-exit-notice.html │ │ └── tor.html │ ├── manifests │ │ ├── arm.pp │ │ ├── base.pp │ │ ├── compact.pp │ │ ├── daemon.pp │ │ ├── daemon │ │ │ ├── base.pp │ │ │ ├── bridge.pp │ │ │ ├── control.pp │ │ │ ├── directory.pp │ │ │ ├── dns.pp │ │ │ ├── exit_policy.pp │ │ │ ├── hidden_service.pp │ │ │ ├── map_address.pp │ │ │ ├── relay.pp │ │ │ ├── snippet.pp │ │ │ ├── socks.pp │ │ │ └── transparent.pp │ │ ├── init.pp │ │ ├── munin.pp │ │ ├── polipo.pp │ │ ├── polipo │ │ │ ├── base.pp │ │ │ └── debian.pp │ │ ├── repo.pp │ │ ├── repo │ │ │ └── debian.pp │ │ └── torsocks.pp │ └── templates │ │ ├── torrc.bridge.erb │ │ ├── torrc.control.erb │ │ ├── torrc.directory.erb │ │ ├── torrc.dns.erb │ │ ├── torrc.exit_policy.erb │ │ ├── torrc.global.erb │ │ ├── torrc.header.erb │ │ ├── torrc.hidden_service.erb │ │ ├── torrc.map_address.erb │ │ ├── torrc.relay.erb │ │ ├── torrc.socks.erb │ │ └── torrc.transparent.erb │ ├── try │ ├── README.md │ └── manifests │ │ ├── file.pp │ │ └── init.pp │ ├── unbound │ ├── .gitrepo │ ├── LICENSE │ ├── Modulefile │ ├── README │ ├── manifests │ │ ├── anchor.pp │ │ ├── forward.pp │ │ ├── init.pp │ │ ├── package.pp │ │ ├── params.pp │ │ ├── root_hints.pp │ │ ├── service.pp │ │ ├── service │ │ │ └── openbsd.pp │ │ ├── ssl.pp │ │ └── stub.pp │ ├── metadata.json │ ├── spec │ │ └── spec_helper.rb │ ├── templates │ │ └── unbound.conf.erb │ └── tests │ │ ├── anchor.pp │ │ ├── forward.pp │ │ ├── init.pp │ │ ├── package.pp │ │ ├── params.pp │ │ ├── root_hints.pp │ │ ├── service.pp │ │ ├── service │ │ └── openbsd.pp │ │ ├── ssl.pp │ │ └── stub.pp │ ├── vcsrepo │ ├── .gitattributes │ ├── .gitignore │ ├── .gitrepo │ ├── .rspec │ ├── .sync.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── LICENSE │ ├── NOTICE │ ├── README.markdown │ ├── Rakefile │ ├── examples │ │ ├── bzr │ │ │ ├── branch.pp │ │ │ └── init_repo.pp │ │ ├── cvs │ │ │ ├── local.pp │ │ │ └── remote.pp │ │ ├── git │ │ │ ├── bare_init.pp │ │ │ ├── clone.pp │ │ │ ├── shallow-clone-with-just-one-commit.pp │ │ │ └── working_copy_init.pp │ │ ├── hg │ │ │ ├── clone.pp │ │ │ ├── clone_basic_auth.pp │ │ │ └── init_repo.pp │ │ ├── p4 │ │ │ ├── create_client.pp │ │ │ ├── delete_client.pp │ │ │ ├── latest_client.pp │ │ │ └── sync_client.pp │ │ └── svn │ │ │ ├── checkout.pp │ │ │ └── server.pp │ ├── lib │ │ └── puppet │ │ │ ├── provider │ │ │ ├── vcsrepo.rb │ │ │ └── vcsrepo │ │ │ │ ├── bzr.rb │ │ │ │ ├── cvs.rb │ │ │ │ ├── dummy.rb │ │ │ │ ├── git.rb │ │ │ │ ├── hg.rb │ │ │ │ ├── p4.rb │ │ │ │ └── svn.rb │ │ │ └── type │ │ │ └── vcsrepo.rb │ ├── metadata.json │ └── spec │ │ ├── acceptance │ │ ├── beaker │ │ │ └── git │ │ │ │ ├── basic_auth │ │ │ │ ├── basic_auth_checkout_http.rb │ │ │ │ ├── basic_auth_checkout_https.rb │ │ │ │ └── negative │ │ │ │ │ └── basic_auth_checkout_git.rb │ │ │ │ ├── branch_checkout │ │ │ │ ├── branch_checkout_file.rb │ │ │ │ ├── branch_checkout_file_path.rb │ │ │ │ ├── branch_checkout_git.rb │ │ │ │ ├── branch_checkout_http.rb │ │ │ │ ├── branch_checkout_https.rb │ │ │ │ ├── branch_checkout_scp.rb │ │ │ │ ├── branch_checkout_ssh.rb │ │ │ │ └── negative │ │ │ │ │ └── branch_checkout_not_exists.rb │ │ │ │ ├── clone │ │ │ │ ├── clone_file.rb │ │ │ │ ├── clone_file_path.rb │ │ │ │ ├── clone_git.rb │ │ │ │ ├── clone_http.rb │ │ │ │ ├── clone_https.rb │ │ │ │ ├── clone_over_different_exiting_repo_with_force.rb │ │ │ │ ├── clone_repo_with_excludes_in_repo.rb │ │ │ │ ├── clone_repo_with_excludes_not_in_repo.rb │ │ │ │ ├── clone_scp.rb │ │ │ │ ├── clone_ssh.rb │ │ │ │ └── negative │ │ │ │ │ ├── clone_over_different_exiting_repo.rb │ │ │ │ │ └── clone_repo_with_exec_excludes.rb │ │ │ │ ├── compression │ │ │ │ ├── compression_0_checkout.rb │ │ │ │ ├── compression_1_checkout.rb │ │ │ │ ├── compression_2_checkout.rb │ │ │ │ ├── compression_3_checkout.rb │ │ │ │ ├── compression_4_checkout.rb │ │ │ │ ├── compression_5_checkout.rb │ │ │ │ ├── compression_6_checkout.rb │ │ │ │ └── negative │ │ │ │ │ ├── compression_7_checkout.rb │ │ │ │ │ ├── compression_alpha_checkout.rb │ │ │ │ │ ├── compression_eval_checkout.rb │ │ │ │ │ ├── compression_exec_checkout.rb │ │ │ │ │ └── compression_negative_checkout.rb │ │ │ │ ├── create │ │ │ │ ├── create_bare_repo_that_already_exists.rb │ │ │ │ ├── create_repo_that_already_exists.rb │ │ │ │ └── negative │ │ │ │ │ └── create_bare_repo_specifying_revision.rb │ │ │ │ ├── group_checkout │ │ │ │ ├── group_checkout_file.rb │ │ │ │ ├── group_checkout_file_path.rb │ │ │ │ ├── group_checkout_git.rb │ │ │ │ ├── group_checkout_http.rb │ │ │ │ ├── group_checkout_https.rb │ │ │ │ ├── group_checkout_scp.rb │ │ │ │ ├── group_checkout_ssh.rb │ │ │ │ └── negative │ │ │ │ │ └── group_checkout_file_non_existent_group.rb │ │ │ │ ├── revision_checkout │ │ │ │ ├── negative │ │ │ │ │ └── revision_checkout_not_exists.rb │ │ │ │ ├── revision_checkout_file.rb │ │ │ │ ├── revision_checkout_file_path.rb │ │ │ │ ├── revision_checkout_git.rb │ │ │ │ ├── revision_checkout_http.rb │ │ │ │ ├── revision_checkout_https.rb │ │ │ │ ├── revision_checkout_scp.rb │ │ │ │ └── revision_checkout_ssh.rb │ │ │ │ ├── shallow_clone │ │ │ │ ├── negative │ │ │ │ │ ├── shallow_clone_exec_depth.rb │ │ │ │ │ ├── shallow_clone_file_path.rb │ │ │ │ │ ├── shallow_clone_http.rb │ │ │ │ │ ├── shallow_clone_negative_depth.rb │ │ │ │ │ └── shallow_clone_overflow_depth.rb │ │ │ │ ├── shallow_clone_file.rb │ │ │ │ ├── shallow_clone_git.rb │ │ │ │ ├── shallow_clone_https.rb │ │ │ │ ├── shallow_clone_scp.rb │ │ │ │ ├── shallow_clone_ssh.rb │ │ │ │ └── shallow_clone_zero_depth.rb │ │ │ │ ├── tag_checkout │ │ │ │ ├── negative │ │ │ │ │ └── tag_checkout_not_exists.rb │ │ │ │ ├── tag_checkout_file.rb │ │ │ │ ├── tag_checkout_file_path.rb │ │ │ │ ├── tag_checkout_git.rb │ │ │ │ ├── tag_checkout_http.rb │ │ │ │ ├── tag_checkout_https.rb │ │ │ │ ├── tag_checkout_scp.rb │ │ │ │ └── tag_checkout_ssh.rb │ │ │ │ └── user_checkout │ │ │ │ ├── negative │ │ │ │ └── user_checkout_file_non_existent_user.rb │ │ │ │ ├── user_checkout_file.rb │ │ │ │ ├── user_checkout_file_path.rb │ │ │ │ ├── user_checkout_git.rb │ │ │ │ ├── user_checkout_http.rb │ │ │ │ ├── user_checkout_https.rb │ │ │ │ ├── user_checkout_scp.rb │ │ │ │ └── user_checkout_ssh.rb │ │ ├── beaker_helper.rb │ │ ├── clone_repo_spec.rb │ │ ├── create_repo_spec.rb │ │ ├── files │ │ │ ├── create_git_repo.sh │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── modules_1596_spec.rb │ │ ├── modules_1800_spec.rb │ │ ├── modules_2326_spec.rb │ │ ├── modules_660_spec.rb │ │ ├── modules_753_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-73-x64.yml │ │ │ ├── default.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ ├── ubuntu-server-12042-x64.yml │ │ │ └── ubuntu-server-1404-x64.yml │ │ ├── remove_repo_spec.rb │ │ └── remove_repo_spec_noop.rb │ │ ├── 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 │ │ ├── spec_helper_acceptance.rb │ │ ├── spec_helper_local.rb │ │ ├── support │ │ ├── filesystem_helpers.rb │ │ └── fixture_helpers.rb │ │ └── unit │ │ └── puppet │ │ ├── provider │ │ └── vcsrepo │ │ │ ├── bzr_spec.rb │ │ │ ├── cvs_spec.rb │ │ │ ├── git_spec.rb │ │ │ ├── hg_spec.rb │ │ │ ├── p4_spec.rb │ │ │ └── svn_spec.rb │ │ └── type │ │ └── README.markdown │ └── x509 │ ├── .gitrepo │ └── manifests │ ├── base.pp │ ├── ca.pp │ ├── cert.pp │ ├── init.pp │ ├── key.pp │ └── variables.pp └── tests ├── README.md ├── example-provider ├── README.md ├── Vagrantfile ├── hiera.yaml └── vagrant │ ├── add-pixelated.sh │ ├── configure-leap.sh │ ├── initialize.sh │ ├── install-platform.pp │ └── vagrant.config ├── platform-ci ├── .ruby-version ├── Gemfile ├── README.md ├── Rakefile ├── ci-build.sh ├── hiera.yaml ├── provider │ ├── Leapfile │ ├── cloud.json.template │ ├── files │ │ ├── ca │ │ │ ├── ca.crt │ │ │ ├── ca.key │ │ │ ├── client_ca.crt │ │ │ ├── client_ca.key │ │ │ └── dh.pem │ │ ├── cert │ │ │ ├── commercial_ca.crt │ │ │ ├── example.org.crt │ │ │ ├── example.org.csr │ │ │ └── example.org.key │ │ ├── mx │ │ │ ├── dkim.key │ │ │ └── dkim.pub │ │ └── ssh │ │ │ ├── monitor_ssh │ │ │ └── monitor_ssh.pub │ ├── nodes │ │ └── catalogtest.json │ ├── provider.json │ ├── tags │ │ └── catalogtest.json │ └── users │ │ ├── gitlab-runner-bitmask │ │ └── gitlab-runner-bitmask_ssh.pub │ │ ├── gitlab-runner-ibex │ │ └── gitlab-runner-ibex_ssh.pub │ │ └── gitlab-runner-platform │ │ └── gitlab-runner-platform_ssh.pub └── setup.sh └── server-tests ├── README.md ├── helpers ├── bonafide_helper.rb ├── client_side_db.py ├── couchdb_helper.rb ├── files_helper.rb ├── http_helper.rb ├── network_helper.rb ├── os_helper.rb ├── smtp_helper.rb ├── soledad_sync.py └── srp_helper.rb ├── order.rb └── white-box ├── couchdb.rb ├── dummy.rb ├── mx.rb ├── network.rb ├── openvpn.rb ├── soledad.rb └── webapp.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/README.md -------------------------------------------------------------------------------- /bin/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/bin/debug.sh -------------------------------------------------------------------------------- /bin/node_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/bin/node_init -------------------------------------------------------------------------------- /bin/puppet_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/bin/puppet_command -------------------------------------------------------------------------------- /bin/run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/bin/run_tests -------------------------------------------------------------------------------- /contrib/leap-commit-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/contrib/leap-commit-template -------------------------------------------------------------------------------- /contrib/offlineimaprc.example.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/contrib/offlineimaprc.example.org -------------------------------------------------------------------------------- /docs/en/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details.html -------------------------------------------------------------------------------- /docs/en/details/development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/development.html -------------------------------------------------------------------------------- /docs/en/details/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/development/index.html -------------------------------------------------------------------------------- /docs/en/details/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/faq.html -------------------------------------------------------------------------------- /docs/en/details/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/faq/index.html -------------------------------------------------------------------------------- /docs/en/details/ports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/ports.html -------------------------------------------------------------------------------- /docs/en/details/ports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/ports/index.html -------------------------------------------------------------------------------- /docs/en/details/under-the-hood.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/under-the-hood.html -------------------------------------------------------------------------------- /docs/en/details/under-the-hood/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/details/under-the-hood/index.html -------------------------------------------------------------------------------- /docs/en/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide.html -------------------------------------------------------------------------------- /docs/en/guide/commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/commands.html -------------------------------------------------------------------------------- /docs/en/guide/commands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/commands/index.html -------------------------------------------------------------------------------- /docs/en/guide/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/config.html -------------------------------------------------------------------------------- /docs/en/guide/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/config/index.html -------------------------------------------------------------------------------- /docs/en/guide/domains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/domains.html -------------------------------------------------------------------------------- /docs/en/guide/domains/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/domains/index.html -------------------------------------------------------------------------------- /docs/en/guide/environments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/environments.html -------------------------------------------------------------------------------- /docs/en/guide/environments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/environments/index.html -------------------------------------------------------------------------------- /docs/en/guide/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/getting-started.html -------------------------------------------------------------------------------- /docs/en/guide/getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/getting-started/index.html -------------------------------------------------------------------------------- /docs/en/guide/keys-and-certificates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/keys-and-certificates.html -------------------------------------------------------------------------------- /docs/en/guide/miscellaneous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/miscellaneous.html -------------------------------------------------------------------------------- /docs/en/guide/miscellaneous/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/miscellaneous/index.html -------------------------------------------------------------------------------- /docs/en/guide/nodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/nodes.html -------------------------------------------------------------------------------- /docs/en/guide/nodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/nodes/index.html -------------------------------------------------------------------------------- /docs/en/guide/provider-configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/provider-configuration.html -------------------------------------------------------------------------------- /docs/en/guide/virtual-machines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/virtual-machines.html -------------------------------------------------------------------------------- /docs/en/guide/virtual-machines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/guide/virtual-machines/index.html -------------------------------------------------------------------------------- /docs/en/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services.html -------------------------------------------------------------------------------- /docs/en/services/couchdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/couchdb.html -------------------------------------------------------------------------------- /docs/en/services/couchdb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/couchdb/index.html -------------------------------------------------------------------------------- /docs/en/services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/index.html -------------------------------------------------------------------------------- /docs/en/services/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/monitor.html -------------------------------------------------------------------------------- /docs/en/services/monitor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/monitor/index.html -------------------------------------------------------------------------------- /docs/en/services/mx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/mx.html -------------------------------------------------------------------------------- /docs/en/services/mx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/mx/index.html -------------------------------------------------------------------------------- /docs/en/services/openvpn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/openvpn.html -------------------------------------------------------------------------------- /docs/en/services/openvpn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/openvpn/index.html -------------------------------------------------------------------------------- /docs/en/services/soledad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/soledad.html -------------------------------------------------------------------------------- /docs/en/services/soledad/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/soledad/index.html -------------------------------------------------------------------------------- /docs/en/services/tor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/tor.html -------------------------------------------------------------------------------- /docs/en/services/tor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/tor/index.html -------------------------------------------------------------------------------- /docs/en/services/webapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/webapp.html -------------------------------------------------------------------------------- /docs/en/services/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/services/webapp/index.html -------------------------------------------------------------------------------- /docs/en/troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/troubleshooting.html -------------------------------------------------------------------------------- /docs/en/troubleshooting/known-issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/troubleshooting/known-issues.html -------------------------------------------------------------------------------- /docs/en/troubleshooting/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/troubleshooting/tests.html -------------------------------------------------------------------------------- /docs/en/troubleshooting/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/troubleshooting/tests/index.html -------------------------------------------------------------------------------- /docs/en/troubleshooting/where-to-look.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/troubleshooting/where-to-look.html -------------------------------------------------------------------------------- /docs/en/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials.html -------------------------------------------------------------------------------- /docs/en/tutorials/quick-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/quick-start.html -------------------------------------------------------------------------------- /docs/en/tutorials/quick-start/guide/commands.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/tutorials/quick-start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/quick-start/index.html -------------------------------------------------------------------------------- /docs/en/tutorials/quick-start/platform.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/tutorials/single-node-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/single-node-email.html -------------------------------------------------------------------------------- /docs/en/tutorials/single-node-vpn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/single-node-vpn.html -------------------------------------------------------------------------------- /docs/en/tutorials/single-node-vpn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/single-node-vpn/index.html -------------------------------------------------------------------------------- /docs/en/tutorials/vagrant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/vagrant.html -------------------------------------------------------------------------------- /docs/en/tutorials/vagrant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/tutorials/vagrant/index.html -------------------------------------------------------------------------------- /docs/en/tutorials/vagrant/known-issues.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/tutorials/vagrant/quick-start.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/upgrading.html -------------------------------------------------------------------------------- /docs/en/upgrading/upgrade-0-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/upgrading/upgrade-0-10.html -------------------------------------------------------------------------------- /docs/en/upgrading/upgrade-0-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/upgrading/upgrade-0-8.html -------------------------------------------------------------------------------- /docs/en/upgrading/upgrade-0-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/en/upgrading/upgrade-0-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/robots.txt.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/leap/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap/platform.rb -------------------------------------------------------------------------------- /lib/leap_cli/acme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/acme.rb -------------------------------------------------------------------------------- /lib/leap_cli/cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/cloud.rb -------------------------------------------------------------------------------- /lib/leap_cli/cloud/cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/cloud/cloud.rb -------------------------------------------------------------------------------- /lib/leap_cli/cloud/dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/cloud/dependencies.rb -------------------------------------------------------------------------------- /lib/leap_cli/cloud/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/cloud/image.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/README -------------------------------------------------------------------------------- /lib/leap_cli/commands/cert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/cert.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/clean.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/compile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/compile.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/db.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/deploy.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/env.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/facts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/facts.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/info.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/inspect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/inspect.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/list.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/node.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/node_init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/node_init.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/open.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/open.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/ping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/ping.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/run.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/ssh.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/test.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/user.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/vagrant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/vagrant.rb -------------------------------------------------------------------------------- /lib/leap_cli/commands/vm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/commands/vm.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/cloud.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/environment.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/filter.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/manager.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/node.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/node_cert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/node_cert.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/object.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/object_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/object_list.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/provider.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/secrets.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/sources.rb -------------------------------------------------------------------------------- /lib/leap_cli/config/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/config/tag.rb -------------------------------------------------------------------------------- /lib/leap_cli/leapfile_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/leapfile_extensions.rb -------------------------------------------------------------------------------- /lib/leap_cli/load_libraries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/load_libraries.rb -------------------------------------------------------------------------------- /lib/leap_cli/log_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/log_filter.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/core.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/files.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/hosts.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/keys.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/nodes.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/provider.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/secrets.rb -------------------------------------------------------------------------------- /lib/leap_cli/macros/stunnel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/macros/stunnel.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/backend.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/formatter.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/key.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/options.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/remote_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/remote_command.rb -------------------------------------------------------------------------------- /lib/leap_cli/ssh/scripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/ssh/scripts.rb -------------------------------------------------------------------------------- /lib/leap_cli/util/console_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/util/console_table.rb -------------------------------------------------------------------------------- /lib/leap_cli/util/secret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/util/secret.rb -------------------------------------------------------------------------------- /lib/leap_cli/util/vagrant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/util/vagrant.rb -------------------------------------------------------------------------------- /lib/leap_cli/x509.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/x509.rb -------------------------------------------------------------------------------- /lib/leap_cli/x509/certs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/x509/certs.rb -------------------------------------------------------------------------------- /lib/leap_cli/x509/signing_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/x509/signing_profiles.rb -------------------------------------------------------------------------------- /lib/leap_cli/x509/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/lib/leap_cli/x509/utils.rb -------------------------------------------------------------------------------- /platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/platform.rb -------------------------------------------------------------------------------- /provider_base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/README -------------------------------------------------------------------------------- /provider_base/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/common.json -------------------------------------------------------------------------------- /provider_base/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/common.rb -------------------------------------------------------------------------------- /provider_base/files/branding/head.scss: -------------------------------------------------------------------------------- 1 | // no head.scss set 2 | -------------------------------------------------------------------------------- /provider_base/files/branding/tail.scss: -------------------------------------------------------------------------------- 1 | // no tail.scss set 2 | -------------------------------------------------------------------------------- /provider_base/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/provider.json -------------------------------------------------------------------------------- /provider_base/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/provider.rb -------------------------------------------------------------------------------- /provider_base/services/_api_tester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/_api_tester.json -------------------------------------------------------------------------------- /provider_base/services/_couchdb_mirror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/_couchdb_mirror.json -------------------------------------------------------------------------------- /provider_base/services/_tor_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/_tor_common.json -------------------------------------------------------------------------------- /provider_base/services/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/couchdb.json -------------------------------------------------------------------------------- /provider_base/services/couchdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/couchdb.rb -------------------------------------------------------------------------------- /provider_base/services/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/dns.json -------------------------------------------------------------------------------- /provider_base/services/monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/monitor.json -------------------------------------------------------------------------------- /provider_base/services/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/monitor.rb -------------------------------------------------------------------------------- /provider_base/services/mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/mx.json -------------------------------------------------------------------------------- /provider_base/services/mx.rb: -------------------------------------------------------------------------------- 1 | apply_partial('_api_tester') 2 | -------------------------------------------------------------------------------- /provider_base/services/obfsproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/obfsproxy.json -------------------------------------------------------------------------------- /provider_base/services/openvpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/openvpn.json -------------------------------------------------------------------------------- /provider_base/services/soledad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/soledad.json -------------------------------------------------------------------------------- /provider_base/services/soledad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/soledad.rb -------------------------------------------------------------------------------- /provider_base/services/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/static.json -------------------------------------------------------------------------------- /provider_base/services/static.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/static.rb -------------------------------------------------------------------------------- /provider_base/services/tor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor.json -------------------------------------------------------------------------------- /provider_base/services/tor_exit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor_exit.json -------------------------------------------------------------------------------- /provider_base/services/tor_exit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor_exit.rb -------------------------------------------------------------------------------- /provider_base/services/tor_hidden_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor_hidden_service.rb -------------------------------------------------------------------------------- /provider_base/services/tor_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor_relay.json -------------------------------------------------------------------------------- /provider_base/services/tor_relay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/tor_relay.rb -------------------------------------------------------------------------------- /provider_base/services/webapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/webapp.json -------------------------------------------------------------------------------- /provider_base/services/webapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/services/webapp.rb -------------------------------------------------------------------------------- /provider_base/tags/development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/tags/development.json -------------------------------------------------------------------------------- /provider_base/tags/local.json: -------------------------------------------------------------------------------- 1 | { 2 | "environment": "local" 3 | } -------------------------------------------------------------------------------- /provider_base/tags/production.json: -------------------------------------------------------------------------------- 1 | { 2 | "environment": "production" 3 | } -------------------------------------------------------------------------------- /provider_base/tags/vm.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /provider_base/templates/common.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip_address": "REQUIRED" 3 | } -------------------------------------------------------------------------------- /provider_base/templates/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/templates/couchdb.json -------------------------------------------------------------------------------- /provider_base/templates/openvpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/templates/openvpn.json -------------------------------------------------------------------------------- /provider_base/templates/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/templates/provider.json -------------------------------------------------------------------------------- /provider_base/test/openvpn/client.ovpn.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/provider_base/test/openvpn/client.ovpn.erb -------------------------------------------------------------------------------- /puppet/bin/apply_on_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/bin/apply_on_node.sh -------------------------------------------------------------------------------- /puppet/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/hiera.yaml -------------------------------------------------------------------------------- /puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/manifests/site.pp -------------------------------------------------------------------------------- /puppet/modules/apache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/.gitignore -------------------------------------------------------------------------------- /puppet/modules/apache/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/apache/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /puppet/modules/apache/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/Gemfile -------------------------------------------------------------------------------- /puppet/modules/apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/LICENSE -------------------------------------------------------------------------------- /puppet/modules/apache/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/Puppetfile -------------------------------------------------------------------------------- /puppet/modules/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/README.md -------------------------------------------------------------------------------- /puppet/modules/apache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/Rakefile -------------------------------------------------------------------------------- /puppet/modules/apache/files/conf.d/Debian/ssl.conf: -------------------------------------------------------------------------------- 1 | NameVirtualHost *:443 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/files/conf.d/git.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/files/conf.d/git.conf -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/base/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/base/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/centos/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/centos/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/debian/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/debian/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/file.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/file/rw.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/file/rw.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/gentoo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/gentoo.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/includes.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/includes.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/itk/lock.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/itk/lock.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/itk_plus.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/itk_plus.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/mod_macro.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/mod_macro.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/module.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/module/cgi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/module/cgi.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/module/dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/module/dir.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/module/env.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/module/env.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/munin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/munin.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/noiplog.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/noiplog.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/openbsd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/openbsd.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/package.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/sftponly.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/sftponly.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/ssl.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/ssl/base.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/ssl/centos.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/ssl/debian.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/ssl/itk.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/ssl/itk.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/status.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/status.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/status/base.pp: -------------------------------------------------------------------------------- 1 | class apache::status::base {} 2 | -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/vhost.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/vhost.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/vhost/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/vhost/file.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/webdav.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/webdav.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/worker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/manifests/worker.pp -------------------------------------------------------------------------------- /puppet/modules/apache/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apache/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/apache/templates/vhosts/redirect/partial.erb: -------------------------------------------------------------------------------- 1 | Redirect permanent / https://<%= @options %> 2 | -------------------------------------------------------------------------------- /puppet/modules/apt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/.gitignore -------------------------------------------------------------------------------- /puppet/modules/apt/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/.gitlab-ci.yml -------------------------------------------------------------------------------- /puppet/modules/apt/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/apt/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/Gemfile -------------------------------------------------------------------------------- /puppet/modules/apt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/LICENSE -------------------------------------------------------------------------------- /puppet/modules/apt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/README -------------------------------------------------------------------------------- /puppet/modules/apt/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/Rakefile -------------------------------------------------------------------------------- /puppet/modules/apt/files/02show_upgraded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/files/02show_upgraded -------------------------------------------------------------------------------- /puppet/modules/apt/files/03clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/files/03clean -------------------------------------------------------------------------------- /puppet/modules/apt/files/03clean_vserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/files/03clean_vserver -------------------------------------------------------------------------------- /puppet/modules/apt/files/upgrade_initiator: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /puppet/modules/apt/lib/facter/apt_running.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/lib/facter/apt_running.rb -------------------------------------------------------------------------------- /puppet/modules/apt/lib/facter/debian_lts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/lib/facter/debian_lts.rb -------------------------------------------------------------------------------- /puppet/modules/apt/lib/facter/util/debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/lib/facter/util/debian.rb -------------------------------------------------------------------------------- /puppet/modules/apt/lib/facter/util/ubuntu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/lib/facter/util/ubuntu.rb -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/apt_conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/apt_conf.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/apticron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/apticron.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/cron/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/cron/base.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/cron/download.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/cron/download.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/dist_upgrade.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/dist_upgrade.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/dselect.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/dselect.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/key.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/key/plain.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/key/plain.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/listchanges.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/listchanges.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/preferences.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/preferences.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/proxy_client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/proxy_client.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/sources_list.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/sources_list.pp -------------------------------------------------------------------------------- /puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/manifests/update.pp -------------------------------------------------------------------------------- /puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/20proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/apt/templates/20proxy.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/apticron_jessie.erb: -------------------------------------------------------------------------------- 1 | apticron_wheezy.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/apticron_sid.erb: -------------------------------------------------------------------------------- 1 | apticron_wheezy.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/listchanges_jessie.erb: -------------------------------------------------------------------------------- 1 | listchanges_lenny.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/listchanges_sid.erb: -------------------------------------------------------------------------------- 1 | listchanges_lenny.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/listchanges_squeeze.erb: -------------------------------------------------------------------------------- 1 | listchanges_lenny.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Debian/listchanges_wheezy.erb: -------------------------------------------------------------------------------- 1 | listchanges_lenny.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_lucid.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_oneiric.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_precise.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_utopic.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_vivid.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_wily.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/apt/templates/Ubuntu/preferences_xenial.erb: -------------------------------------------------------------------------------- 1 | preferences_maverick.erb -------------------------------------------------------------------------------- /puppet/modules/augeas/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/augeas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.gitignore -------------------------------------------------------------------------------- /puppet/modules/augeas/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/augeas/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.puppet-lint.rc -------------------------------------------------------------------------------- /puppet/modules/augeas/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.sync.yml -------------------------------------------------------------------------------- /puppet/modules/augeas/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/augeas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/CHANGELOG.md -------------------------------------------------------------------------------- /puppet/modules/augeas/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/Gemfile -------------------------------------------------------------------------------- /puppet/modules/augeas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/LICENSE -------------------------------------------------------------------------------- /puppet/modules/augeas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/README.md -------------------------------------------------------------------------------- /puppet/modules/augeas/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/Rakefile -------------------------------------------------------------------------------- /puppet/modules/augeas/manifests/files.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/manifests/files.pp -------------------------------------------------------------------------------- /puppet/modules/augeas/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/augeas/manifests/lens.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/manifests/lens.pp -------------------------------------------------------------------------------- /puppet/modules/augeas/manifests/packages.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/manifests/packages.pp -------------------------------------------------------------------------------- /puppet/modules/augeas/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/augeas/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/metadata.json -------------------------------------------------------------------------------- /puppet/modules/augeas/spec/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/spec/.rspec -------------------------------------------------------------------------------- /puppet/modules/augeas/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/augeas/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/augeas/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/backupninja/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/backupninja/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/LICENSE -------------------------------------------------------------------------------- /puppet/modules/backupninja/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/README -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/cron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/cron.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/key.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/mysql.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/pgsql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/pgsql.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/rdiff.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/rdiff.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/rsync.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/rsync.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/sh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/sh.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/svn.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/manifests/sys.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/backupninja/manifests/sys.pp -------------------------------------------------------------------------------- /puppet/modules/backupninja/templates/umount.conf.erb: -------------------------------------------------------------------------------- 1 | dir = <%= dest %> 2 | -------------------------------------------------------------------------------- /puppet/modules/bundler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /puppet/modules/bundler/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/bundler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/LICENSE -------------------------------------------------------------------------------- /puppet/modules/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/README.md -------------------------------------------------------------------------------- /puppet/modules/bundler/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/bundler/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/bundler/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/bundler/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | metadata.json 3 | *.swp 4 | -------------------------------------------------------------------------------- /puppet/modules/check_mk/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/check_mk/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/Changelog -------------------------------------------------------------------------------- /puppet/modules/check_mk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/LICENSE -------------------------------------------------------------------------------- /puppet/modules/check_mk/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/Modulefile -------------------------------------------------------------------------------- /puppet/modules/check_mk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/README.md -------------------------------------------------------------------------------- /puppet/modules/check_mk/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/Rakefile -------------------------------------------------------------------------------- /puppet/modules/check_mk/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/TODO -------------------------------------------------------------------------------- /puppet/modules/check_mk/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/debian.md -------------------------------------------------------------------------------- /puppet/modules/check_mk/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/example.yaml -------------------------------------------------------------------------------- /puppet/modules/check_mk/files/use_ssh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/files/use_ssh.mk -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/agent.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/agent.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/agent/ps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/agent/ps.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/host.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/host.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/htpasswd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/htpasswd.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/omd_repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/omd_repo.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/ps.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/ps.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/check_mk/templates/main.mk.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/check_mk/templates/main.mk.erb -------------------------------------------------------------------------------- /puppet/modules/clamav/files/01-leap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/clamav/files/01-leap.conf -------------------------------------------------------------------------------- /puppet/modules/clamav/manifests/daemon.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/clamav/manifests/daemon.pp -------------------------------------------------------------------------------- /puppet/modules/clamav/manifests/freshclam.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/clamav/manifests/freshclam.pp -------------------------------------------------------------------------------- /puppet/modules/clamav/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/clamav/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/clamav/manifests/milter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/clamav/manifests/milter.pp -------------------------------------------------------------------------------- /puppet/modules/clamav/templates/local.pdb.erb: -------------------------------------------------------------------------------- 1 | H:<%= @domain %> 2 | -------------------------------------------------------------------------------- /puppet/modules/common/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/LICENSE -------------------------------------------------------------------------------- /puppet/modules/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/README -------------------------------------------------------------------------------- /puppet/modules/common/manifests/module_dir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/manifests/module_dir.pp -------------------------------------------------------------------------------- /puppet/modules/common/manifests/moduledir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/manifests/moduledir.pp -------------------------------------------------------------------------------- /puppet/modules/common/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/common/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/common/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/concat/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/concat/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/LICENSE -------------------------------------------------------------------------------- /puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/Modulefile -------------------------------------------------------------------------------- /puppet/modules/concat/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/README.markdown -------------------------------------------------------------------------------- /puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/Rakefile -------------------------------------------------------------------------------- /puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/fragment.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/manifests/fragment.pp -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/concat/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/manifests/setup.pp -------------------------------------------------------------------------------- /puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/concat/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/couchdb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/couchdb/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/couchdb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/Gemfile -------------------------------------------------------------------------------- /puppet/modules/couchdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/README.md -------------------------------------------------------------------------------- /puppet/modules/couchdb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/Rakefile -------------------------------------------------------------------------------- /puppet/modules/couchdb/files/Debian/couchdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/files/Debian/couchdb -------------------------------------------------------------------------------- /puppet/modules/couchdb/files/couch-doc-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/files/couch-doc-diff -------------------------------------------------------------------------------- /puppet/modules/couchdb/files/couch-doc-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/files/couch-doc-update -------------------------------------------------------------------------------- /puppet/modules/couchdb/files/local.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/files/local.ini -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/add_user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/add_user.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/backup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/backup.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/bigcouch.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/bigcouch.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/create_db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/create_db.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/document.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/document.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/mirror_db.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/mirror_db.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/query.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/query.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/redhat.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/redhat.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/manifests/update.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/manifests/update.pp -------------------------------------------------------------------------------- /puppet/modules/couchdb/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/couchdb/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/git/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/git/files/web/gitweb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/files/web/gitweb.conf -------------------------------------------------------------------------------- /puppet/modules/git/files/xinetd.d/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/files/xinetd.d/git -------------------------------------------------------------------------------- /puppet/modules/git/files/xinetd.d/git.vhosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/files/xinetd.d/git.vhosts -------------------------------------------------------------------------------- /puppet/modules/git/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/changes.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/changes.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/clone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/clone.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/daemon.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/daemon.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/daemon/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/daemon/base.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/daemon/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/daemon/centos.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/daemon/vhosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/daemon/vhosts.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/svn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/svn.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/web.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/web.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/web/absent.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/web/absent.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/web/lighttpd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/web/lighttpd.pp -------------------------------------------------------------------------------- /puppet/modules/git/manifests/web/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/manifests/web/repo.pp -------------------------------------------------------------------------------- /puppet/modules/git/templates/web/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/templates/web/config -------------------------------------------------------------------------------- /puppet/modules/git/templates/web/lighttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/git/templates/web/lighttpd -------------------------------------------------------------------------------- /puppet/modules/haveged/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/haveged/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/journald/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/journald/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/leap/manifests/cli/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/leap/manifests/cli/install.pp -------------------------------------------------------------------------------- /puppet/modules/leap/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class leap { 2 | 3 | } -------------------------------------------------------------------------------- /puppet/modules/leap/manifests/logfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/leap/manifests/logfile.pp -------------------------------------------------------------------------------- /puppet/modules/leap/templates/rsyslog.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/leap/templates/rsyslog.erb -------------------------------------------------------------------------------- /puppet/modules/leap_mx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/leap_mx/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/leap_mx/templates/mx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/leap_mx/templates/mx.conf.erb -------------------------------------------------------------------------------- /puppet/modules/lsb/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/lsb/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/lsb/manifests/base.pp: -------------------------------------------------------------------------------- 1 | class lsb::base { 2 | package{'lsb': ensure => present } 3 | } 4 | -------------------------------------------------------------------------------- /puppet/modules/lsb/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/lsb/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/lsb/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/lsb/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/lsb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/lsb/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/nagios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/LICENSE -------------------------------------------------------------------------------- /puppet/modules/nagios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/README -------------------------------------------------------------------------------- /puppet/modules/nagios/README.pnp4nagios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/README.pnp4nagios -------------------------------------------------------------------------------- /puppet/modules/nagios/files/configs/cgi.cfg: -------------------------------------------------------------------------------- 1 | Debian/cgi.cfg -------------------------------------------------------------------------------- /puppet/modules/nagios/files/configs/nagios.cfg: -------------------------------------------------------------------------------- 1 | Debian/nagios.cfg -------------------------------------------------------------------------------- /puppet/modules/nagios/files/htpasswd.users: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/nagios/files/munin/nagios_perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/files/munin/nagios_perf -------------------------------------------------------------------------------- /puppet/modules/nagios/files/munin/nagios_svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/files/munin/nagios_svc -------------------------------------------------------------------------------- /puppet/modules/nagios/files/nsca/nsca.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/files/nsca/nsca.cfg -------------------------------------------------------------------------------- /puppet/modules/nagios/files/plugins/check_gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/files/plugins/check_gpg -------------------------------------------------------------------------------- /puppet/modules/nagios/files/pnp4nagios/npcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/files/pnp4nagios/npcd -------------------------------------------------------------------------------- /puppet/modules/nagios/images/nagiosgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/images/nagiosgraph.gif -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/apache.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/defaults.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/defaults.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/headless.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/headless.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/irc_bot.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/irc_bot.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/lighttpd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/lighttpd.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/munin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/munin.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/nrpe.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/nrpe.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/nrpe/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/nrpe/base.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/nrpe/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/nrpe/linux.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/nsca.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/nsca.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/plugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/plugin.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/pnp4nagios.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/pnp4nagios.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/manifests/target.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/manifests/target.pp -------------------------------------------------------------------------------- /puppet/modules/nagios/templates/nrpe/nrpe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/nagios/templates/nrpe/nrpe.cfg -------------------------------------------------------------------------------- /puppet/modules/ntp/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/ntp/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | metadata.json 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /puppet/modules/ntp/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/ntp/.nodeset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/.nodeset.yml -------------------------------------------------------------------------------- /puppet/modules/ntp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/ntp/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/CHANGELOG -------------------------------------------------------------------------------- /puppet/modules/ntp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/CONTRIBUTING.md -------------------------------------------------------------------------------- /puppet/modules/ntp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/Gemfile -------------------------------------------------------------------------------- /puppet/modules/ntp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/LICENSE -------------------------------------------------------------------------------- /puppet/modules/ntp/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/Modulefile -------------------------------------------------------------------------------- /puppet/modules/ntp/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/README.markdown -------------------------------------------------------------------------------- /puppet/modules/ntp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/Rakefile -------------------------------------------------------------------------------- /puppet/modules/ntp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/ntp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/ntp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/ntp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/ntp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/classes/ntp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/classes/ntp_spec.rb -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- 1 | #my uber ntp config 2 | # 3 | 4 | server foobar 5 | -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/spec_helper_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/spec_helper_system.rb -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/system/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/system/basic_spec.rb -------------------------------------------------------------------------------- /puppet/modules/ntp/spec/system/class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/spec/system/class_spec.rb -------------------------------------------------------------------------------- /puppet/modules/ntp/templates/ntp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/templates/ntp.conf.erb -------------------------------------------------------------------------------- /puppet/modules/ntp/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ntp/tests/init.pp -------------------------------------------------------------------------------- /puppet/modules/obfsproxy/files/obfsproxy_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/obfsproxy/files/obfsproxy_init -------------------------------------------------------------------------------- /puppet/modules/obfsproxy/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/obfsproxy/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/opendkim/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/opendkim/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/openvpn/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/openvpn/.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | spec/fixtures 3 | -------------------------------------------------------------------------------- /puppet/modules/openvpn/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/openvpn/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/Modulefile -------------------------------------------------------------------------------- /puppet/modules/openvpn/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/Rakefile -------------------------------------------------------------------------------- /puppet/modules/openvpn/Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/Readme.markdown -------------------------------------------------------------------------------- /puppet/modules/openvpn/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/manifests/client.pp -------------------------------------------------------------------------------- /puppet/modules/openvpn/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/openvpn/manifests/option.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/manifests/option.pp -------------------------------------------------------------------------------- /puppet/modules/openvpn/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/manifests/server.pp -------------------------------------------------------------------------------- /puppet/modules/openvpn/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/openvpn/templates/vars.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/openvpn/templates/vars.erb -------------------------------------------------------------------------------- /puppet/modules/passenger/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/passenger/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/passenger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/passenger/README -------------------------------------------------------------------------------- /puppet/modules/passenger/files/mod_passenger.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/passenger/manifests/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/passenger/manifests/apache.pp -------------------------------------------------------------------------------- /puppet/modules/passenger/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/passenger/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/passenger/manifests/munin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/passenger/manifests/munin.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/postfix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/LICENSE -------------------------------------------------------------------------------- /puppet/modules/postfix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/README.md -------------------------------------------------------------------------------- /puppet/modules/postfix/files/header_checks.d/.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/postfix/files/main.cf: -------------------------------------------------------------------------------- 1 | # file managed by puppet 2 | -------------------------------------------------------------------------------- /puppet/modules/postfix/files/tls_policy.d/.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/amavis.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/amavis.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/anonsasl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/anonsasl.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/disable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/disable.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/hash.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/hash.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/mailalias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/mailalias.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/mailman.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/mailman.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/mta.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/mta.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/satellite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/satellite.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/smtp_auth.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/smtp_auth.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/tlspolicy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/tlspolicy.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/transport.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/transport.pp -------------------------------------------------------------------------------- /puppet/modules/postfix/manifests/virtual.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfix/manifests/virtual.pp -------------------------------------------------------------------------------- /puppet/modules/postfwd/files/postfwd_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfwd/files/postfwd_default -------------------------------------------------------------------------------- /puppet/modules/postfwd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/postfwd/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/resolvconf/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/resolvconf/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/resolvconf/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/resolvconf/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/rsyslog/.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/.gemfile -------------------------------------------------------------------------------- /puppet/modules/rsyslog/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.swp 3 | .forge-releng 4 | /spec/fixtures 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /puppet/modules/rsyslog/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/rsyslog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/rsyslog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/LICENSE -------------------------------------------------------------------------------- /puppet/modules/rsyslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/README.md -------------------------------------------------------------------------------- /puppet/modules/rsyslog/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/Rakefile -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/client.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/database.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/imfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/imfile.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/modload.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/modload.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/server.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/manifests/snippet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/manifests/snippet.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/metadata.json -------------------------------------------------------------------------------- /puppet/modules/rsyslog/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/rsyslog/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/rsyslog/templates/imfile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/templates/imfile.erb -------------------------------------------------------------------------------- /puppet/modules/rsyslog/templates/modload.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/templates/modload.erb -------------------------------------------------------------------------------- /puppet/modules/rsyslog/templates/rsyslog_default_rhel7.erb: -------------------------------------------------------------------------------- 1 | # File is managed by puppet 2 | SYSLOGD_OPTIONS="" 3 | -------------------------------------------------------------------------------- /puppet/modules/rsyslog/tests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/tests/database.pp -------------------------------------------------------------------------------- /puppet/modules/rsyslog/tests/init.pp: -------------------------------------------------------------------------------- 1 | include rsyslog 2 | -------------------------------------------------------------------------------- /puppet/modules/rsyslog/tests/log_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rsyslog/tests/log_templates.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/devel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/devel.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/mysql.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/postgres.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/postgres.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/shadow.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/shadow.pp -------------------------------------------------------------------------------- /puppet/modules/ruby/manifests/shadow/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/ruby/manifests/shadow/base.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/rubygems/files/gemrc: -------------------------------------------------------------------------------- 1 | --- 2 | :sources: 3 | - https://rubygems.org/ 4 | -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/bcrypt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/bcrypt.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/camping.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/camping.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/devel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/devel.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/gem.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/gem.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/gpgme.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/gpgme.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/hiera.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/hiera.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/highline.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/highline.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/ip.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/ip.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/lockfile.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/lockfile.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/mail.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/mail.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/maildir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/maildir.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/markaby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/markaby.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/moneta.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/moneta.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/mysql.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/open4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/open4.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/pbkdf2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/pbkdf2.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/postgres.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/postgres.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/rack.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/rack.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/sinatra.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/sinatra.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/sqlite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/sqlite.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/systemu.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/systemu.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/thin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/thin.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/tlsmail.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/tlsmail.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/tmail.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/tmail.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/xmpp4r.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/xmpp4r.pp -------------------------------------------------------------------------------- /puppet/modules/rubygems/manifests/ya2yaml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/rubygems/manifests/ya2yaml.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/shorewall/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/LICENSE -------------------------------------------------------------------------------- /puppet/modules/shorewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/README.md -------------------------------------------------------------------------------- /puppet/modules/shorewall/files/boilerplate/policy.footer: -------------------------------------------------------------------------------- 1 | #LAST LINE -- DO NOT REMOVE 2 | -------------------------------------------------------------------------------- /puppet/modules/shorewall/files/empty/.ignore: -------------------------------------------------------------------------------- 1 | # file needed for git - don't remove it 2 | -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/entry.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/entry.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/gentoo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/gentoo.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/host.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/host.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/mangle.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/mangle.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/masq.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/masq.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/nat.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/nat.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/policy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/policy.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/rfc1918.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/rfc1918.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/rtrules.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/rtrules.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/rule.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/rule.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/tcrules.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/tcrules.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/tunnel.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/tunnel.pp -------------------------------------------------------------------------------- /puppet/modules/shorewall/manifests/zone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/shorewall/manifests/zone.pp -------------------------------------------------------------------------------- /puppet/modules/site_apache/files/autorestart.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | Restart=always 3 | -------------------------------------------------------------------------------- /puppet/modules/site_apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_apt/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_check_mk/files/agent/logwatch/syslog_header.cfg: -------------------------------------------------------------------------------- 1 | /var/log/syslog 2 | -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/files.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/files.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/hosts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/hosts.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/ruby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/ruby.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/setup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/setup.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/shell.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/shell.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/manifests/slow.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/manifests/slow.pp -------------------------------------------------------------------------------- /puppet/modules/site_config/templates/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_config/templates/hosts -------------------------------------------------------------------------------- /puppet/modules/site_couchdb/files/local.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_couchdb/files/local.ini -------------------------------------------------------------------------------- /puppet/modules/site_couchdb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_couchdb/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_mx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_mx/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_nagios/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_nagios/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_obfsproxy/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/modules/site_openvpn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_openvpn/README -------------------------------------------------------------------------------- /puppet/modules/site_openvpn/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_openvpn/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_postfix/manifests/mx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_postfix/manifests/mx.pp -------------------------------------------------------------------------------- /puppet/modules/site_shorewall/manifests/mx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_shorewall/manifests/mx.pp -------------------------------------------------------------------------------- /puppet/modules/site_sshd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_sshd/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_sshd/manifests/mosh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_sshd/manifests/mosh.pp -------------------------------------------------------------------------------- /puppet/modules/site_static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_static/README -------------------------------------------------------------------------------- /puppet/modules/site_static/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_static/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_static/templates/rack.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_static/templates/rack.erb -------------------------------------------------------------------------------- /puppet/modules/site_stunnel/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_stunnel/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_tor/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_tor/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/site_tor/manifests/relay.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_tor/manifests/relay.pp -------------------------------------------------------------------------------- /puppet/modules/site_webapp/manifests/cron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_webapp/manifests/cron.pp -------------------------------------------------------------------------------- /puppet/modules/site_webapp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/site_webapp/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/soledad/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/soledad/manifests/client.pp -------------------------------------------------------------------------------- /puppet/modules/soledad/manifests/common.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/soledad/manifests/common.pp -------------------------------------------------------------------------------- /puppet/modules/soledad/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/soledad/manifests/server.pp -------------------------------------------------------------------------------- /puppet/modules/squid_deb_proxy/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/squid_deb_proxy/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/squid_deb_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/squid_deb_proxy/README.md -------------------------------------------------------------------------------- /puppet/modules/squid_deb_proxy/files/allowed-networks-src.acl.d/20-custom: -------------------------------------------------------------------------------- 1 | # managed by puppet 2 | -------------------------------------------------------------------------------- /puppet/modules/squid_deb_proxy/files/mirror-dstdomain.acl.d/20-custom: -------------------------------------------------------------------------------- 1 | # managed by puppet 2 | -------------------------------------------------------------------------------- /puppet/modules/sshd/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/sshd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/.gitignore -------------------------------------------------------------------------------- /puppet/modules/sshd/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/sshd/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/.rspec -------------------------------------------------------------------------------- /puppet/modules/sshd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/sshd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Gemfile -------------------------------------------------------------------------------- /puppet/modules/sshd/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Gemfile.lock -------------------------------------------------------------------------------- /puppet/modules/sshd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/LICENSE -------------------------------------------------------------------------------- /puppet/modules/sshd/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Modulefile -------------------------------------------------------------------------------- /puppet/modules/sshd/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Puppetfile -------------------------------------------------------------------------------- /puppet/modules/sshd/Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Puppetfile.lock -------------------------------------------------------------------------------- /puppet/modules/sshd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/README.md -------------------------------------------------------------------------------- /puppet/modules/sshd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/Rakefile -------------------------------------------------------------------------------- /puppet/modules/sshd/files/autossh.init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/files/autossh.init.d -------------------------------------------------------------------------------- /puppet/modules/sshd/lib/facter/ssh_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/lib/facter/ssh_version.rb -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/autossh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/autossh.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/client.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/client/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/client/base.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/client/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/client/linux.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/gentoo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/gentoo.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/libssh2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/libssh2.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/linux.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/nagios.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/nagios.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/openbsd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/openbsd.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/redhat.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/redhat.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/manifests/sshkey.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/manifests/sshkey.pp -------------------------------------------------------------------------------- /puppet/modules/sshd/spec/classes/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/spec/classes/init_spec.rb -------------------------------------------------------------------------------- /puppet/modules/sshd/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sshd/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/sshd/templates/sshd_config/CentOS_5.erb: -------------------------------------------------------------------------------- 1 | CentOS_6.erb -------------------------------------------------------------------------------- /puppet/modules/sshd/templates/sshd_config/Ubuntu_oneiric.erb: -------------------------------------------------------------------------------- 1 | Ubuntu_lucid.erb -------------------------------------------------------------------------------- /puppet/modules/sshd/templates/sshd_config/Ubuntu_precise.erb: -------------------------------------------------------------------------------- 1 | Ubuntu.erb -------------------------------------------------------------------------------- /puppet/modules/sshd/templates/sshd_config/XenServer_xenenterprise.erb: -------------------------------------------------------------------------------- 1 | CentOS_6.erb -------------------------------------------------------------------------------- /puppet/modules/stdlib/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/stdlib/.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.gemspec -------------------------------------------------------------------------------- /puppet/modules/stdlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.gitignore -------------------------------------------------------------------------------- /puppet/modules/stdlib/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/stdlib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.project -------------------------------------------------------------------------------- /puppet/modules/stdlib/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format 3 | progress 4 | --backtrace 5 | -------------------------------------------------------------------------------- /puppet/modules/stdlib/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.sync.yml -------------------------------------------------------------------------------- /puppet/modules/stdlib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/stdlib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/CHANGELOG.md -------------------------------------------------------------------------------- /puppet/modules/stdlib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/CONTRIBUTING.md -------------------------------------------------------------------------------- /puppet/modules/stdlib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/Gemfile -------------------------------------------------------------------------------- /puppet/modules/stdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/LICENSE -------------------------------------------------------------------------------- /puppet/modules/stdlib/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/README.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/README_SPECS.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/README_SPECS.markdown -------------------------------------------------------------------------------- /puppet/modules/stdlib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/Rakefile -------------------------------------------------------------------------------- /puppet/modules/stdlib/lib/facter/root_home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/lib/facter/root_home.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/manifests/stages.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/manifests/stages.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/metadata.json -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/stdlib/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stdlib/tests/file_line.pp -------------------------------------------------------------------------------- /puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /puppet/modules/stunnel/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/stunnel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/LICENSE -------------------------------------------------------------------------------- /puppet/modules/stunnel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/README -------------------------------------------------------------------------------- /puppet/modules/stunnel/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/stunnel/manifests/centos.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/manifests/centos.pp -------------------------------------------------------------------------------- /puppet/modules/stunnel/manifests/debian.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/manifests/debian.pp -------------------------------------------------------------------------------- /puppet/modules/stunnel/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/stunnel/manifests/linux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/stunnel/manifests/linux.pp -------------------------------------------------------------------------------- /puppet/modules/sysctl/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sysctl/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/sysctl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sysctl/README -------------------------------------------------------------------------------- /puppet/modules/sysctl/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sysctl/manifests/config.pp -------------------------------------------------------------------------------- /puppet/modules/sysctl/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/sysctl/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/systemd/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.fixtures.yml -------------------------------------------------------------------------------- /puppet/modules/systemd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.gitignore -------------------------------------------------------------------------------- /puppet/modules/systemd/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/systemd/.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.puppet-lint.rc -------------------------------------------------------------------------------- /puppet/modules/systemd/.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.sync.yml -------------------------------------------------------------------------------- /puppet/modules/systemd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/systemd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/CHANGELOG.md -------------------------------------------------------------------------------- /puppet/modules/systemd/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/Gemfile -------------------------------------------------------------------------------- /puppet/modules/systemd/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/HISTORY.md -------------------------------------------------------------------------------- /puppet/modules/systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/LICENSE -------------------------------------------------------------------------------- /puppet/modules/systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/README.md -------------------------------------------------------------------------------- /puppet/modules/systemd/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/Rakefile -------------------------------------------------------------------------------- /puppet/modules/systemd/manifests/enable.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/manifests/enable.pp -------------------------------------------------------------------------------- /puppet/modules/systemd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/systemd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/metadata.json -------------------------------------------------------------------------------- /puppet/modules/systemd/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/systemd/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/systemd/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/templatewlv/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/templatewlv/Modulefile -------------------------------------------------------------------------------- /puppet/modules/templatewlv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/templatewlv/README.md -------------------------------------------------------------------------------- /puppet/modules/tor/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /puppet/modules/tor/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/tor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/LICENSE -------------------------------------------------------------------------------- /puppet/modules/tor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/README -------------------------------------------------------------------------------- /puppet/modules/tor/files/munin/tor_routers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/files/munin/tor_routers -------------------------------------------------------------------------------- /puppet/modules/tor/files/munin/tor_traffic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/files/munin/tor_traffic -------------------------------------------------------------------------------- /puppet/modules/tor/files/tor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/files/tor.html -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/arm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/arm.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/compact.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/compact.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/daemon.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/daemon.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/daemon/dns.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/daemon/dns.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/munin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/munin.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/polipo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/polipo.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/repo.pp -------------------------------------------------------------------------------- /puppet/modules/tor/manifests/torsocks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/manifests/torsocks.pp -------------------------------------------------------------------------------- /puppet/modules/tor/templates/torrc.dns.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/tor/templates/torrc.dns.erb -------------------------------------------------------------------------------- /puppet/modules/tor/templates/torrc.header.erb: -------------------------------------------------------------------------------- 1 | # This file is managed by puppet. 2 | 3 | -------------------------------------------------------------------------------- /puppet/modules/try/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/try/README.md -------------------------------------------------------------------------------- /puppet/modules/try/manifests/file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/try/manifests/file.pp -------------------------------------------------------------------------------- /puppet/modules/try/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class try { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /puppet/modules/unbound/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/unbound/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/LICENSE -------------------------------------------------------------------------------- /puppet/modules/unbound/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/Modulefile -------------------------------------------------------------------------------- /puppet/modules/unbound/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/README -------------------------------------------------------------------------------- /puppet/modules/unbound/manifests/anchor.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/manifests/anchor.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/manifests/params.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/manifests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/manifests/ssl.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/manifests/stub.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/manifests/stub.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/metadata.json -------------------------------------------------------------------------------- /puppet/modules/unbound/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/anchor.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/anchor.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/forward.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/forward.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/init.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/package.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/package.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/params.pp: -------------------------------------------------------------------------------- 1 | include unbound::params 2 | -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/root_hints.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/root_hints.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/service.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/service/openbsd.pp: -------------------------------------------------------------------------------- 1 | include unbound::service::openbsd 2 | -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/ssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/ssl.pp -------------------------------------------------------------------------------- /puppet/modules/unbound/tests/stub.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/unbound/tests/stub.pp -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/.gitattributes -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/.gitignore -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.sync.yml: -------------------------------------------------------------------------------- 1 | --- 2 | LICENSE: 3 | unmanaged: true 4 | -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/.travis.yml -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/CHANGELOG.md -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/CONTRIBUTING.md -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/Gemfile -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/LICENSE -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/NOTICE -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/README.markdown -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/Rakefile -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/metadata.json -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/spec/spec.opts -------------------------------------------------------------------------------- /puppet/modules/vcsrepo/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/vcsrepo/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet/modules/x509/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/.gitrepo -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/ca.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/manifests/ca.pp -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/cert.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/manifests/cert.pp -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class x509 { 2 | } 3 | -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/manifests/key.pp -------------------------------------------------------------------------------- /puppet/modules/x509/manifests/variables.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/puppet/modules/x509/manifests/variables.pp -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/example-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/example-provider/README.md -------------------------------------------------------------------------------- /tests/example-provider/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/example-provider/Vagrantfile -------------------------------------------------------------------------------- /tests/example-provider/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/example-provider/hiera.yaml -------------------------------------------------------------------------------- /tests/platform-ci/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.10 2 | -------------------------------------------------------------------------------- /tests/platform-ci/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/Gemfile -------------------------------------------------------------------------------- /tests/platform-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/README.md -------------------------------------------------------------------------------- /tests/platform-ci/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/Rakefile -------------------------------------------------------------------------------- /tests/platform-ci/ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/ci-build.sh -------------------------------------------------------------------------------- /tests/platform-ci/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/hiera.yaml -------------------------------------------------------------------------------- /tests/platform-ci/provider/Leapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/provider/Leapfile -------------------------------------------------------------------------------- /tests/platform-ci/provider/files/ca/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/provider/files/ca/ca.crt -------------------------------------------------------------------------------- /tests/platform-ci/provider/files/ca/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/provider/files/ca/ca.key -------------------------------------------------------------------------------- /tests/platform-ci/provider/files/ca/dh.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/provider/files/ca/dh.pem -------------------------------------------------------------------------------- /tests/platform-ci/provider/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/provider/provider.json -------------------------------------------------------------------------------- /tests/platform-ci/provider/tags/catalogtest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/platform-ci/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/platform-ci/setup.sh -------------------------------------------------------------------------------- /tests/server-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/README.md -------------------------------------------------------------------------------- /tests/server-tests/helpers/files_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/files_helper.rb -------------------------------------------------------------------------------- /tests/server-tests/helpers/http_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/http_helper.rb -------------------------------------------------------------------------------- /tests/server-tests/helpers/os_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/os_helper.rb -------------------------------------------------------------------------------- /tests/server-tests/helpers/smtp_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/smtp_helper.rb -------------------------------------------------------------------------------- /tests/server-tests/helpers/soledad_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/soledad_sync.py -------------------------------------------------------------------------------- /tests/server-tests/helpers/srp_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/helpers/srp_helper.rb -------------------------------------------------------------------------------- /tests/server-tests/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/order.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/couchdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/couchdb.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/dummy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/dummy.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/mx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/mx.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/network.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/openvpn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/openvpn.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/soledad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/soledad.rb -------------------------------------------------------------------------------- /tests/server-tests/white-box/webapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapcode/leap_platform/HEAD/tests/server-tests/white-box/webapp.rb --------------------------------------------------------------------------------