├── datastreammanager ├── .gitignore ├── input │ ├── .gitignore │ ├── newsreel-test │ │ └── 2014-07-01.data.idomaar_1k.txt.gz │ └── README ├── orchestrator │ ├── main │ │ ├── __init__.py │ │ ├── orchestrator_exceptions.py │ │ └── util.py │ ├── test │ │ └── __init__.py │ ├── monitoring │ │ └── kafka │ │ │ ├── offsetapp.db │ │ │ ├── README │ │ │ └── monitor.sh │ └── requirements.txt ├── newsreel-evaluator │ └── .gitignore ├── flume-plugins │ ├── flume-kafka-source │ │ └── .gitignore │ └── flume-plugin-idomaar │ │ ├── .gitignore │ │ ├── bin │ │ ├── consumer.sh │ │ └── producer.sh │ │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── crowdrec │ │ └── flume │ │ └── plugins │ │ └── source │ │ └── IdomaarStreamReader.java ├── Gemfile ├── default-config.json ├── vagrant │ ├── 09.newsreel-evaluator.sh │ ├── 08.orchestrator-dependencies.sh │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── 00.set-hosts.sh │ ├── ipython │ │ └── 00-pyspark-setup.py │ ├── 06.create-kafka-topic.sh │ └── 10.spark.sh └── evaluator │ └── configuration.json ├── ipython ├── puppet │ └── modules │ │ ├── apt │ │ ├── tests │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ ├── unattended_upgrades.pp │ │ │ ├── builddep.pp │ │ │ ├── debian │ │ │ │ ├── testing.pp │ │ │ │ └── unstable.pp │ │ │ ├── release.pp │ │ │ ├── ppa.pp │ │ │ ├── pin.pp │ │ │ └── key.pp │ │ ├── templates │ │ │ ├── conf.erb │ │ │ ├── progressbar.erb │ │ │ ├── unauth.erb │ │ │ ├── release.erb │ │ │ ├── _header.erb │ │ │ ├── proxy.erb │ │ │ └── 15update-stamp.erb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ ├── spec.opts │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-65-x64.yml │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ ├── debian-73-x64.yml │ │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ └── manifests │ │ │ └── release.pp │ │ ├── stdlib │ │ ├── tests │ │ │ ├── init.pp │ │ │ ├── has_ip_network.pp │ │ │ ├── has_ip_address.pp │ │ │ └── file_line.pp │ │ ├── spec │ │ │ ├── spec.opts │ │ │ ├── monkey_patches │ │ │ │ └── alias_should_to_must.rb │ │ │ ├── unit │ │ │ │ └── puppet │ │ │ │ │ └── type │ │ │ │ │ └── anchor_spec.rb │ │ │ ├── lib │ │ │ │ └── puppet_spec │ │ │ │ │ └── verbose.rb │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── default.yml │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-64-x64.yml │ │ │ │ ├── centos-65-x64.yml │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ ├── sles-11-x64.yml │ │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ │ ├── centos-64-x64-pe.yml │ │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ │ └── ubuntu-server-12042-x64.yml │ │ └── README_SPECS.markdown │ │ ├── zypprepo │ │ ├── tests │ │ │ └── init.pp │ │ ├── spec │ │ │ └── spec.opts │ │ ├── _gitignore │ │ └── manifests │ │ │ └── init.pp │ │ ├── augeasproviders_core │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ ├── library_stack.png │ │ │ │ ├── augeasproviders-spec-part1.png │ │ │ │ ├── augeasproviders-spec-augparse.png │ │ │ │ └── augeasproviders-spec-specshould.png │ │ │ └── examples_header.md │ │ ├── spec │ │ │ ├── fixtures │ │ │ │ └── unit │ │ │ │ │ └── puppet │ │ │ │ │ └── provider │ │ │ │ │ └── augeasprovider │ │ │ │ │ └── default │ │ │ │ │ ├── broken │ │ │ │ │ └── full │ │ │ └── spec.opts │ │ └── lib │ │ │ └── puppet │ │ │ └── type │ │ │ └── augeasprovider.rb │ │ ├── augeasproviders_sysctl │ │ ├── spec │ │ │ ├── fixtures │ │ │ │ └── unit │ │ │ │ │ └── puppet │ │ │ │ │ └── provider │ │ │ │ │ └── sysctl │ │ │ │ │ └── augeas │ │ │ │ │ ├── empty │ │ │ │ │ └── small │ │ │ └── spec.opts │ │ ├── doc │ │ │ └── css │ │ │ │ └── common.css │ │ └── CHANGELOG.md │ │ ├── cloudera │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── spec.opts │ │ ├── tests │ │ │ ├── impala.pp │ │ │ ├── gplextras.pp │ │ │ ├── gplextras5.pp │ │ │ ├── java.pp │ │ │ ├── java │ │ │ │ └── jce.pp │ │ │ ├── init_noparcels.pp │ │ │ ├── install_lzo.pp │ │ │ ├── cm5 │ │ │ │ ├── server+agent.pp │ │ │ │ ├── server.pp │ │ │ │ └── server-mysql.pp │ │ │ ├── search.pp │ │ │ ├── cm │ │ │ │ ├── server+agent.pp │ │ │ │ ├── server.pp │ │ │ │ └── server-mysql.pp │ │ │ ├── init_noparcels_4.pp │ │ │ ├── init_noparcels_gplextras.pp │ │ │ └── init_noparcels_gplextras_4.pp │ │ └── logo_Cloudera_Certified.jpg │ │ ├── java_ks │ │ └── spec │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── hosts │ │ │ └── default_spec.rb │ │ │ └── acceptance │ │ │ ├── nodesets │ │ │ ├── centos-59-x64.yml │ │ │ ├── default.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-510-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-73-x64.yml │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ └── ubuntu-server-12042-x64.yml │ │ │ └── basic_spec.rb │ │ └── postgresql │ │ ├── spec │ │ ├── spec.opts │ │ ├── unit │ │ │ ├── functions │ │ │ │ ├── postgresql_password_spec.rb │ │ │ │ └── postgresql_escape_spec.rb │ │ │ └── classes │ │ │ │ └── params_spec.rb │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── default.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── centos-65-x64.yml │ │ │ ├── centos-510-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── debian-73-x64.yml │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ ├── centos-64-x64-pe.yml │ │ │ ├── ubuntu-server-10044-x64.yml │ │ │ └── ubuntu-server-12042-x64.yml │ │ └── templates │ │ ├── systemd-override.erb │ │ ├── pg_ident_rule.conf │ │ └── pg_hba_rule.conf └── scripts │ ├── fix_cloudera_installation.sh │ ├── install_kafka_spark.sh │ └── 00-pyspark-setup.py ├── computingenvironments └── 01.linux │ ├── 01.centos │ ├── 01.mahout │ │ ├── algorithms │ │ │ └── 01.example │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ └── puppet │ │ │ └── modules │ │ │ ├── concat │ │ │ ├── files │ │ │ │ └── null │ │ │ │ │ └── .gitignore │ │ │ ├── spec │ │ │ │ ├── spec_helper.rb │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ └── debian-70rc1-x64.yml │ │ │ ├── Rakefile │ │ │ ├── Modulefile │ │ │ └── lib │ │ │ │ └── facter │ │ │ │ └── concat_basedir.rb │ │ │ ├── maven │ │ │ ├── spec │ │ │ │ ├── defines │ │ │ │ │ ├── default-mavenrc │ │ │ │ │ ├── populated-mavenrc │ │ │ │ │ ├── default-settings.xml │ │ │ │ │ └── local-repo-settings.xml │ │ │ │ ├── fixtures │ │ │ │ │ ├── acceptance │ │ │ │ │ │ └── maven │ │ │ │ │ │ │ ├── repo-1 │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ └── hello │ │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ │ │ └── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ │ └── repo-2 │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── hello │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ │ └── hello-0.0.1-20131008.025235-2.jar │ │ │ │ │ └── modules │ │ │ │ │ │ └── wget │ │ │ │ │ │ ├── spec │ │ │ │ │ │ └── spec_helper.rb │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ └── Gemfile │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── centos-65-x64.yml │ │ │ │ │ └── debian-73-x64.yml │ │ │ ├── Puppetfile │ │ │ ├── Puppetfile.lock │ │ │ └── lib │ │ │ │ └── facter │ │ │ │ └── maven_version.rb │ │ │ ├── apt │ │ │ ├── tests │ │ │ │ ├── init.pp │ │ │ │ ├── params.pp │ │ │ │ ├── unattended_upgrades.pp │ │ │ │ ├── builddep.pp │ │ │ │ ├── debian │ │ │ │ │ ├── testing.pp │ │ │ │ │ └── unstable.pp │ │ │ │ ├── release.pp │ │ │ │ ├── ppa.pp │ │ │ │ ├── pin.pp │ │ │ │ └── key.pp │ │ │ └── spec │ │ │ │ ├── spec_helper.rb │ │ │ │ ├── spec.opts │ │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-65-x64.yml │ │ │ │ ├── debian-70rc1-x64.yml │ │ │ │ └── debian-73-x64.yml │ │ │ ├── stdlib-3.2.1 │ │ │ ├── tests │ │ │ │ ├── init.pp │ │ │ │ ├── has_ip_network.pp │ │ │ │ ├── has_ip_address.pp │ │ │ │ └── file_line.pp │ │ │ ├── Rakefile │ │ │ └── spec │ │ │ │ ├── spec.opts │ │ │ │ ├── monkey_patches │ │ │ │ └── alias_should_to_must.rb │ │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ └── type │ │ │ │ └── anchor_spec.rb │ │ │ ├── jdk_oracle │ │ │ ├── files │ │ │ │ └── .gitignore │ │ │ ├── spec │ │ │ │ └── spec_helper.rb │ │ │ └── Rakefile │ │ │ ├── wget │ │ │ └── spec │ │ │ │ └── spec_helper.rb │ │ │ ├── selinux │ │ │ ├── spec │ │ │ │ └── spec_helper.rb │ │ │ ├── tests │ │ │ │ ├── module-nothing.pp │ │ │ │ ├── module-disabled.pp │ │ │ │ ├── module-enabled.pp │ │ │ │ ├── module-absent.pp │ │ │ │ ├── enforcing.pp │ │ │ │ ├── permissive.pp │ │ │ │ ├── module.pp │ │ │ │ └── disable.pp │ │ │ ├── Rakefile │ │ │ ├── Gemfile │ │ │ └── Modulefile │ │ │ ├── firewall │ │ │ ├── .fixtures.yml │ │ │ ├── .gitignore │ │ │ ├── spec │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ ├── centos-64-x64-fusion.yml │ │ │ │ │ └── debian-70rc1-x64.yml │ │ │ ├── Modulefile │ │ │ ├── lib │ │ │ │ └── facter │ │ │ │ │ ├── ip6tables_version.rb │ │ │ │ │ └── iptables_version.rb │ │ │ └── Rakefile │ │ │ └── archive │ │ │ └── manifests │ │ │ ├── tar-gz.pp │ │ │ └── zip.pp │ ├── 02.userItemStreams │ │ └── puppet │ │ │ └── modules │ │ │ ├── concat │ │ │ ├── files │ │ │ │ └── null │ │ │ │ │ └── .gitignore │ │ │ ├── spec │ │ │ │ ├── spec_helper.rb │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ └── debian-70rc1-x64.yml │ │ │ ├── Rakefile │ │ │ ├── Modulefile │ │ │ └── lib │ │ │ │ └── facter │ │ │ │ └── concat_basedir.rb │ │ │ ├── maven │ │ │ ├── spec │ │ │ │ ├── defines │ │ │ │ │ ├── default-mavenrc │ │ │ │ │ ├── populated-mavenrc │ │ │ │ │ └── default-settings.xml │ │ │ │ ├── fixtures │ │ │ │ │ ├── modules │ │ │ │ │ │ └── wget │ │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ └── spec_helper.rb │ │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ │ └── Gemfile │ │ │ │ │ └── acceptance │ │ │ │ │ │ └── maven │ │ │ │ │ │ ├── repo-1 │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── hello │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ │ └── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ └── repo-2 │ │ │ │ │ │ └── org │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── hello │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ └── hello-0.0.1-20131008.025235-2.jar │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ └── default.yml │ │ │ ├── Puppetfile │ │ │ ├── Puppetfile.lock │ │ │ └── lib │ │ │ │ └── facter │ │ │ │ └── maven_version.rb │ │ │ ├── stdlib-3.2.1 │ │ │ ├── tests │ │ │ │ ├── init.pp │ │ │ │ ├── has_ip_address.pp │ │ │ │ ├── has_ip_network.pp │ │ │ │ └── file_line.pp │ │ │ ├── Rakefile │ │ │ └── spec │ │ │ │ ├── spec.opts │ │ │ │ ├── monkey_patches │ │ │ │ └── alias_should_to_must.rb │ │ │ │ └── unit │ │ │ │ └── puppet │ │ │ │ └── type │ │ │ │ └── anchor_spec.rb │ │ │ ├── jdk_oracle │ │ │ ├── files │ │ │ │ └── .gitignore │ │ │ ├── spec │ │ │ │ └── spec_helper.rb │ │ │ └── Rakefile │ │ │ ├── selinux │ │ │ ├── spec │ │ │ │ └── spec_helper.rb │ │ │ ├── tests │ │ │ │ ├── module-nothing.pp │ │ │ │ ├── module-disabled.pp │ │ │ │ ├── module-enabled.pp │ │ │ │ ├── module-absent.pp │ │ │ │ ├── enforcing.pp │ │ │ │ ├── permissive.pp │ │ │ │ ├── module.pp │ │ │ │ └── disable.pp │ │ │ ├── Rakefile │ │ │ └── Gemfile │ │ │ ├── wget │ │ │ └── spec │ │ │ │ └── spec_helper.rb │ │ │ ├── firewall │ │ │ ├── .fixtures.yml │ │ │ ├── .gitignore │ │ │ ├── spec │ │ │ │ └── acceptance │ │ │ │ │ └── nodesets │ │ │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ │ │ ├── default.yml │ │ │ │ │ ├── centos-59-x64.yml │ │ │ │ │ ├── centos-64-x64.yml │ │ │ │ │ ├── debian-607-x64.yml │ │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ │ ├── centos-64-x64-fusion.yml │ │ │ │ │ └── debian-70rc1-x64.yml │ │ │ ├── Modulefile │ │ │ ├── lib │ │ │ │ └── facter │ │ │ │ │ ├── ip6tables_version.rb │ │ │ │ │ └── iptables_version.rb │ │ │ └── Rakefile │ │ │ └── archive │ │ │ └── manifests │ │ │ ├── tar-gz.pp │ │ │ └── zip.pp │ └── 03.clefStreams │ │ └── puppet │ │ └── modules │ │ ├── concat │ │ ├── files │ │ │ └── null │ │ │ │ └── .gitignore │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── default.yml │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-64-x64.yml │ │ │ │ ├── debian-607-x64.yml │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ └── debian-70rc1-x64.yml │ │ ├── Rakefile │ │ ├── Modulefile │ │ └── lib │ │ │ └── facter │ │ │ └── concat_basedir.rb │ │ ├── maven │ │ ├── spec │ │ │ ├── defines │ │ │ │ ├── default-mavenrc │ │ │ │ ├── populated-mavenrc │ │ │ │ └── default-settings.xml │ │ │ ├── fixtures │ │ │ │ ├── acceptance │ │ │ │ │ └── maven │ │ │ │ │ │ ├── repo-1 │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── hello │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ │ └── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ └── repo-2 │ │ │ │ │ │ └── org │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── hello │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ │ └── hello-0.0.1-20131008.025235-2.jar │ │ │ │ └── modules │ │ │ │ │ └── wget │ │ │ │ │ ├── spec │ │ │ │ │ └── spec_helper.rb │ │ │ │ │ ├── Rakefile │ │ │ │ │ └── Gemfile │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── centos-64-x64.yml │ │ │ │ └── default.yml │ │ ├── Puppetfile │ │ ├── Puppetfile.lock │ │ └── lib │ │ │ └── facter │ │ │ └── maven_version.rb │ │ ├── stdlib-3.2.1 │ │ ├── tests │ │ │ ├── init.pp │ │ │ ├── has_ip_network.pp │ │ │ ├── has_ip_address.pp │ │ │ └── file_line.pp │ │ ├── Rakefile │ │ └── spec │ │ │ ├── spec.opts │ │ │ ├── monkey_patches │ │ │ └── alias_should_to_must.rb │ │ │ └── unit │ │ │ └── puppet │ │ │ └── type │ │ │ └── anchor_spec.rb │ │ ├── jdk_oracle │ │ ├── files │ │ │ └── .gitignore │ │ ├── spec │ │ │ └── spec_helper.rb │ │ └── Rakefile │ │ ├── wget │ │ └── spec │ │ │ └── spec_helper.rb │ │ ├── selinux │ │ ├── spec │ │ │ └── spec_helper.rb │ │ ├── tests │ │ │ ├── module-nothing.pp │ │ │ ├── module-disabled.pp │ │ │ ├── module-enabled.pp │ │ │ ├── module-absent.pp │ │ │ ├── enforcing.pp │ │ │ ├── permissive.pp │ │ │ ├── module.pp │ │ │ └── disable.pp │ │ ├── Rakefile │ │ └── Gemfile │ │ ├── firewall │ │ ├── .fixtures.yml │ │ ├── .gitignore │ │ ├── spec │ │ │ └── acceptance │ │ │ │ └── nodesets │ │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ │ ├── default.yml │ │ │ │ ├── centos-59-x64.yml │ │ │ │ ├── centos-64-x64.yml │ │ │ │ ├── debian-607-x64.yml │ │ │ │ ├── fedora-18-x64.yml │ │ │ │ ├── sles-11sp1-x64.yml │ │ │ │ ├── centos-64-x64-fusion.yml │ │ │ │ └── debian-70rc1-x64.yml │ │ ├── Modulefile │ │ ├── lib │ │ │ └── facter │ │ │ │ ├── ip6tables_version.rb │ │ │ │ └── iptables_version.rb │ │ └── Rakefile │ │ └── archive │ │ └── manifests │ │ ├── tar-gz.pp │ │ └── zip.pp │ └── 02.ubuntu │ └── 01.mymedialite │ └── puppet │ └── modules │ ├── concat │ ├── files │ │ └── null │ │ │ └── .gitignore │ ├── spec │ │ ├── spec_helper.rb │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── default.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── sles-11sp1-x64.yml │ │ │ └── debian-70rc1-x64.yml │ ├── Rakefile │ ├── Modulefile │ └── lib │ │ └── facter │ │ └── concat_basedir.rb │ ├── maven │ ├── spec │ │ ├── defines │ │ │ ├── default-mavenrc │ │ │ ├── populated-mavenrc │ │ │ └── default-settings.xml │ │ ├── fixtures │ │ │ ├── acceptance │ │ │ │ └── maven │ │ │ │ │ ├── repo-1 │ │ │ │ │ └── org │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── hello │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ │ └── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ └── repo-2 │ │ │ │ │ └── org │ │ │ │ │ └── foo │ │ │ │ │ └── hello │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ └── 0.0.1-SNAPSHOT │ │ │ │ │ ├── maven-metadata.xml.md5 │ │ │ │ │ ├── maven-metadata.xml.sha1 │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.md5 │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.md5 │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.md5 │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.md5 │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar.sha1 │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.pom.sha1 │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.jar.sha1 │ │ │ │ │ ├── hello-0.0.1-20131008.025235-2.pom.sha1 │ │ │ │ │ ├── hello-0.0.1-20131008.014634-1.jar │ │ │ │ │ └── hello-0.0.1-20131008.025235-2.jar │ │ │ └── modules │ │ │ │ └── wget │ │ │ │ ├── spec │ │ │ │ └── spec_helper.rb │ │ │ │ ├── Rakefile │ │ │ │ └── Gemfile │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── centos-64-x64.yml │ │ │ └── default.yml │ ├── Puppetfile │ ├── Puppetfile.lock │ └── lib │ │ └── facter │ │ └── maven_version.rb │ ├── apt │ ├── tests │ │ ├── init.pp │ │ ├── params.pp │ │ ├── unattended_upgrades.pp │ │ ├── builddep.pp │ │ ├── debian │ │ │ ├── testing.pp │ │ │ └── unstable.pp │ │ ├── release.pp │ │ ├── ppa.pp │ │ ├── pin.pp │ │ └── key.pp │ ├── spec │ │ ├── spec_helper.rb │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── debian-70rc1-x64.yml │ │ │ └── debian-73-x64.yml │ ├── templates │ │ └── source.list.erb │ └── manifests │ │ └── update.pp │ ├── stdlib │ ├── spec │ │ ├── fixtures │ │ │ ├── manifests │ │ │ │ └── site.pp │ │ │ └── dscacheutil │ │ │ │ └── root │ │ ├── spec.opts │ │ ├── monkey_patches │ │ │ └── alias_should_to_must.rb │ │ ├── unit │ │ │ └── puppet │ │ │ │ └── type │ │ │ │ └── anchor_spec.rb │ │ ├── lib │ │ │ └── puppet_spec │ │ │ │ └── verbose.rb │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── default.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── fedora-18-x64.yml │ │ │ └── sles-11-x64.yml │ ├── tests │ │ ├── init.pp │ │ ├── has_ip_address.pp │ │ ├── has_ip_network.pp │ │ └── file_line.pp │ └── README_SPECS.markdown │ ├── stdlib-3.2.1 │ ├── tests │ │ ├── init.pp │ │ ├── has_ip_network.pp │ │ ├── has_ip_address.pp │ │ └── file_line.pp │ ├── Rakefile │ └── spec │ │ ├── spec.opts │ │ ├── monkey_patches │ │ └── alias_should_to_must.rb │ │ └── unit │ │ └── puppet │ │ └── type │ │ └── anchor_spec.rb │ ├── jdk_oracle │ ├── files │ │ └── .gitignore │ ├── spec │ │ └── spec_helper.rb │ └── Rakefile │ ├── wget │ └── spec │ │ └── spec_helper.rb │ ├── selinux │ ├── spec │ │ └── spec_helper.rb │ ├── tests │ │ ├── module-nothing.pp │ │ ├── module-disabled.pp │ │ ├── module-enabled.pp │ │ ├── module-absent.pp │ │ ├── enforcing.pp │ │ ├── permissive.pp │ │ ├── module.pp │ │ └── disable.pp │ ├── Rakefile │ └── Gemfile │ ├── firewall │ ├── .fixtures.yml │ ├── .gitignore │ ├── spec │ │ └── acceptance │ │ │ └── nodesets │ │ │ ├── ubuntu-server-1404-x64.yml │ │ │ ├── default.yml │ │ │ ├── centos-59-x64.yml │ │ │ ├── centos-64-x64.yml │ │ │ ├── debian-607-x64.yml │ │ │ ├── fedora-18-x64.yml │ │ │ ├── sles-11sp1-x64.yml │ │ │ ├── centos-64-x64-fusion.yml │ │ │ └── debian-70rc1-x64.yml │ ├── Modulefile │ ├── lib │ │ └── facter │ │ │ ├── ip6tables_version.rb │ │ │ └── iptables_version.rb │ └── Rakefile │ ├── git │ ├── spec │ │ └── spec.opts │ └── Modulefile │ └── archive │ └── manifests │ ├── tar-gz.pp │ └── zip.pp ├── documentation ├── idomaar-overview.png └── idomaar-sequence.png ├── .gitignore └── script ├── newsreel-test.bat └── newsreel.bat /datastreammanager/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /datastreammanager/input/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /datastreammanager/orchestrator/main/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datastreammanager/orchestrator/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datastreammanager/newsreel-evaluator/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /datastreammanager/flume-plugins/flume-kafka-source/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/conf.erb: -------------------------------------------------------------------------------- 1 | <%= @content -%> 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/zypprepo/tests/init.pp: -------------------------------------------------------------------------------- 1 | include zypprepo 2 | -------------------------------------------------------------------------------- /datastreammanager/flume-plugins/flume-plugin-idomaar/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/progressbar.erb: -------------------------------------------------------------------------------- 1 | Dpkg::Progress-Fancy "1"; 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/unauth.erb: -------------------------------------------------------------------------------- 1 | APT::Get::AllowUnauthenticated 1; 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | examples.md 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/unattended_upgrades.pp: -------------------------------------------------------------------------------- 1 | include apt::unattended_upgrades 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/algorithms/01.example/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/release.erb: -------------------------------------------------------------------------------- 1 | APT::Default-Release "<%= @release_id %>"; 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/defines/default-mavenrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/files/null/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/_header.erb: -------------------------------------------------------------------------------- 1 | # This file is managed by Puppet. DO NOT EDIT. 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_sysctl/spec/fixtures/unit/puppet/provider/sysctl/augeas/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/defines/default-mavenrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/defines/default-mavenrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | apt::builddep{ 'glusterfs-server': } 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_sysctl/doc/css/common.css: -------------------------------------------------------------------------------- 1 | /* Override this file with custom rules */ -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/defines/default-mavenrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/init.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /datastreammanager/orchestrator/main/orchestrator_exceptions.py: -------------------------------------------------------------------------------- 1 | 2 | class TimeoutException(Exception): pass 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::testing': } 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::unstable': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/params.pp: -------------------------------------------------------------------------------- 1 | include apt::params 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/zypprepo/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/tests/init.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | -------------------------------------------------------------------------------- /datastreammanager/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | group :plugins do 4 | gem "vagrant-aws" 5 | end 6 | 7 | -------------------------------------------------------------------------------- /datastreammanager/default-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendation_request_thread_count" : 1, 3 | "messages_per_sec": 10 4 | } -------------------------------------------------------------------------------- /documentation/idomaar-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/documentation/idomaar-overview.png -------------------------------------------------------------------------------- /documentation/idomaar-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/documentation/idomaar-sequence.png -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/proxy.erb: -------------------------------------------------------------------------------- 1 | Acquire::http::Proxy "http://<%= @proxy_host %>:<%= @proxy_port %>"; 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/spec/fixtures/unit/puppet/provider/augeasprovider/default/broken: -------------------------------------------------------------------------------- 1 | broken 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/impala.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::impala': } 2 | class { 'cloudera::impala::repo': } 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::release': 3 | release_id => 'karmic' 4 | } 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_sysctl/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/gplextras.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::gplextras': } 2 | class { 'cloudera::gplextras::repo': } 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/gplextras5.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::gplextras5': } 2 | class { 'cloudera::gplextras5::repo': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/unattended_upgrades.pp: -------------------------------------------------------------------------------- 1 | include apt::unattended_upgrades 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/jdk_oracle/files/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | jdk-7-linux-x64.tar.gz 3 | 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/jdk_oracle/files/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | jdk-7-linux-x64.tar.gz 3 | 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/unattended_upgrades.pp: -------------------------------------------------------------------------------- 1 | include apt::unattended_upgrades 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/jdk_oracle/files/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | jdk-7-linux-x64.tar.gz 3 | 4 | 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/java.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | install_java => false, 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | *.pyc 3 | generated 4 | .idea/** 5 | .classpath 6 | .settings 7 | .project 8 | .pydevproject 9 | 10 | *.iml 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/jdk_oracle/files/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | jdk-7-linux-x64.tar.gz 3 | 4 | 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/java/jce.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | install_jce => true, 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | apt::builddep{ 'glusterfs-server': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::testing': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/module-nothing.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'nothing': ensure => 'nothing' } 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/09.newsreel-evaluator.sh: -------------------------------------------------------------------------------- 1 | cd /vagrant/newsreel-evaluator 2 | /opt/apache/apache-maven-3.2.3/bin/mvn clean assembly:assembly 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/init_noparcels.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | use_parcels => false, 4 | } 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/install_lzo.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | install_lzo => true, 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::unstable': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- 1 | fixtures: 2 | symlinks: 3 | "firewall": "#{source_dir}" 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/module-nothing.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'nothing': ensure => 'nothing' } 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/builddep.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | apt::builddep{ 'glusterfs-server': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/debian/testing.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::testing': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/module-nothing.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'nothing': ensure => 'nothing' } 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | 3 | # Example declaration of an Apt PPA 4 | apt::ppa{ 'ppa:openstack-ppa/bleeding-edge': } 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm5/server+agent.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | install_cmserver => true, 4 | } 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/search.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::search': } 2 | class { 'cloudera::search::repo': } 3 | class { 'cloudera::cdh::repo': } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- 1 | fixtures: 2 | symlinks: 3 | "firewall": "#{source_dir}" 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/module-nothing.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'nothing': ensure => 'nothing' } 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- 1 | fixtures: 2 | symlinks: 3 | "firewall": "#{source_dir}" 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/debian/unstable.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::debian::unstable': } 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/.fixtures.yml: -------------------------------------------------------------------------------- 1 | fixtures: 2 | symlinks: 3 | "firewall": "#{source_dir}" 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/git/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/Puppetfile: -------------------------------------------------------------------------------- 1 | forge 'http://forge.puppetlabs.com' 2 | 3 | mod 'maestrodev/wget', '>=1.0.0' 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/module-disabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'disabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/module-enabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'enabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/templates/15update-stamp.erb: -------------------------------------------------------------------------------- 1 | APT::Update::Post-Invoke-Success {"touch /var/lib/apt/periodic/update-success-stamp 2>/dev/null || true";}; 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::release': 3 | release_id => 'karmic' 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/Puppetfile: -------------------------------------------------------------------------------- 1 | forge 'http://forge.puppetlabs.com' 2 | 3 | mod 'maestrodev/wget', '>=1.0.0' 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/module-disabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'disabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/module-enabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'enabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/Puppetfile: -------------------------------------------------------------------------------- 1 | forge 'http://forge.puppetlabs.com' 2 | 3 | mod 'maestrodev/wget', '>=1.0.0' 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/module-disabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'disabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/module-enabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'enabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format 2 | s 3 | --colour 4 | --loadby 5 | mtime 6 | --backtrace 7 | -------------------------------------------------------------------------------- /datastreammanager/orchestrator/monitoring/kafka/offsetapp.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/datastreammanager/orchestrator/monitoring/kafka/offsetapp.db -------------------------------------------------------------------------------- /datastreammanager/orchestrator/requirements.txt: -------------------------------------------------------------------------------- 1 | colorlog==2.6.0 2 | #Pyzmq is installed via the Debian package 3 | #pyzmq==14.5.0 4 | plumbum==1.4.2 5 | pyyaml==3.11 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- 1 | # pin a release in apt, useful for unstable repositories 2 | apt::pin { 'foo': 3 | packages => '*', 4 | priority => 0, 5 | } 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/logo_Cloudera_Certified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/ipython/puppet/modules/cloudera/logo_Cloudera_Certified.jpg -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/jdk_oracle/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/module_spec_helper' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/Puppetfile: -------------------------------------------------------------------------------- 1 | forge 'http://forge.puppetlabs.com' 2 | 3 | mod 'maestrodev/wget', '>=1.0.0' 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/module-disabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'disabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/module-enabled.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'enabled', 3 | } 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/release.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | class { 'apt::release': 3 | release_id => 'karmic' 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/jdk_oracle/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/module_spec_helper' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/jdk_oracle/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/module_spec_helper' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/modules/wget/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/08.orchestrator-dependencies.sh: -------------------------------------------------------------------------------- 1 | apt-get -y install python-zmq libyaml-dev python-dev python-pip 2 | pip install -r /vagrant/orchestrator/requirements.txt 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/jdk_oracle/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/module_spec_helper' 3 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 18f0fe5ecb5c26cc534e7087db9a10b8 -------------------------------------------------------------------------------- /datastreammanager/evaluator/configuration.json: -------------------------------------------------------------------------------- 1 | [{"mode": "recall@N", "Nlist": [1, 2, 5, 10, 20]}, {"mode": "avg_precision"}, {"mode": "avg_precision@N", "Nlist": [1, 2, 5, 10, 20]}] 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm/server+agent.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | cm_version => '4', 4 | install_cmserver => true, 5 | } 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/init_noparcels_4.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | use_parcels => false, 4 | cdh_version => '4', 5 | } 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/module_spec_helper' 2 | 3 | RSpec.configure do |config| 4 | config.mock_framework = :mocha 5 | end 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/algorithms/01.example/README.md: -------------------------------------------------------------------------------- 1 | * Requirements 2 | Java JDK > 1.6 3 | Maven 4 | 5 | * Compile 6 | mvn clean compile assembly:single 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | b879c7466ad00a5fadec890e1c4d84b2 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/init_noparcels_gplextras.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | use_parcels => false, 4 | install_lzo => true, 5 | } 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 8d802d21680c5b3ef27d7bbf2f46fea0 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | 48db5cef43f828bd207aecf13e071e59902aeece -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | b879c7466ad00a5fadec890e1c4d84b2 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | b879c7466ad00a5fadec890e1c4d84b2 -------------------------------------------------------------------------------- /datastreammanager/input/newsreel-test/2014-07-01.data.idomaar_1k.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/datastreammanager/input/newsreel-test/2014-07-01.data.idomaar_1k.txt.gz -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/images/library_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/ipython/puppet/modules/augeasproviders_core/docs/images/library_stack.png -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | 3 | # Example declaration of an Apt PPA 4 | apt::ppa{ 'ppa:openstack-ppa/bleeding-edge': } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | c5fcfc2d01ef7b35e2751c78f9b47952a73fda84 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | b879c7466ad00a5fadec890e1c4d84b2 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 8d802d21680c5b3ef27d7bbf2f46fea0 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 8d802d21680c5b3ef27d7bbf2f46fea0 2 | -------------------------------------------------------------------------------- /datastreammanager/flume-plugins/flume-plugin-idomaar/bin/consumer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /opt/apache/kafka/bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic relations --from-beginning 4 | -------------------------------------------------------------------------------- /datastreammanager/flume-plugins/flume-plugin-idomaar/bin/producer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /opt/apache/kafka/bin/kafka-console-producer.sh --broker-list localhost:9092,localhost:9093 --topic relations 4 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/examples_header.md: -------------------------------------------------------------------------------- 1 | # Manifest examples 2 | 3 | Examples are given below for each of the providers and custom types in 4 | `augeasproviders`. 5 | 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/defines/populated-mavenrc: -------------------------------------------------------------------------------- 1 | export MAVEN_OPTS="-Xmx256m $MAVEN_OPTS" 2 | export PATH="/usr/local/bin:$PATH" 3 | echo Hello World! 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | d2a689273ae74e15ebd6834805da39c1906dbf8d 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.md5: -------------------------------------------------------------------------------- 1 | 67fce35a2a7227a53cdcde06b86d33bf -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 8d802d21680c5b3ef27d7bbf2f46fea0 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | c5fcfc2d01ef7b35e2751c78f9b47952a73fda84 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/ppa.pp: -------------------------------------------------------------------------------- 1 | class { 'apt': } 2 | 3 | # Example declaration of an Apt PPA 4 | apt::ppa{ 'ppa:openstack-ppa/bleeding-edge': } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | c5fcfc2d01ef7b35e2751c78f9b47952a73fda84 -------------------------------------------------------------------------------- /datastreammanager/orchestrator/monitoring/kafka/README: -------------------------------------------------------------------------------- 1 | download Kafka monitoring assembly at https://github.com/quantifind/KafkaOffsetMonitor/releases/download/v0.2.0/KafkaOffsetMonitor-assembly-0.2.0.jar 2 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/lib/puppet/type/augeasprovider.rb: -------------------------------------------------------------------------------- 1 | # Dumb augeasprovider type 2 | 3 | Puppet::Type.newtype(:augeasprovider) do 4 | @doc = 'Dumb Augeas provider type' 5 | end 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/templates/systemd-override.erb: -------------------------------------------------------------------------------- 1 | .include /lib/systemd/system/postgresql.service 2 | [Service] 3 | Environment=PGPORT=<%= @port %> 4 | Environment=PGDATA=<%= @datadir %> 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/zypprepo/_gitignore: -------------------------------------------------------------------------------- 1 | ## MAC OS 2 | .DS_Store 3 | 4 | ## TEXTMATE 5 | *.tmproj 6 | tmtags 7 | 8 | ## EMACS 9 | *~ 10 | \#* 11 | .\#* 12 | 13 | ## VIM 14 | *.swp 15 | tags 16 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | c5fcfc2d01ef7b35e2751c78f9b47952a73fda84 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/defines/populated-mavenrc: -------------------------------------------------------------------------------- 1 | export MAVEN_OPTS="-Xmx256m $MAVEN_OPTS" 2 | export PATH="/usr/local/bin:$PATH" 3 | echo Hello World! 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | d2a689273ae74e15ebd6834805da39c1906dbf8d 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.md5: -------------------------------------------------------------------------------- 1 | 67fce35a2a7227a53cdcde06b86d33bf -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/defines/populated-mavenrc: -------------------------------------------------------------------------------- 1 | export MAVEN_OPTS="-Xmx256m $MAVEN_OPTS" 2 | export PATH="/usr/local/bin:$PATH" 3 | echo Hello World! 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | d2a689273ae74e15ebd6834805da39c1906dbf8d 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.md5: -------------------------------------------------------------------------------- 1 | 67fce35a2a7227a53cdcde06b86d33bf -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- 1 | # pin a release in apt, useful for unstable repositories 2 | apt::pin { 'foo': 3 | packages => '*', 4 | priority => 0, 5 | } 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.sha1: -------------------------------------------------------------------------------- 1 | 10ce6f327d30938bed82fec7d5ddfa4146e349e3 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/defines/populated-mavenrc: -------------------------------------------------------------------------------- 1 | export MAVEN_OPTS="-Xmx256m $MAVEN_OPTS" 2 | export PATH="/usr/local/bin:$PATH" 3 | echo Hello World! 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | d2a689273ae74e15ebd6834805da39c1906dbf8d 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.md5: -------------------------------------------------------------------------------- 1 | 807f2fca0e279dbe48f695983141fd5c -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.md5: -------------------------------------------------------------------------------- 1 | 67fce35a2a7227a53cdcde06b86d33bf -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/module-absent.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'absent', 3 | source => 'puppet:///modules/selinux/rsynclocal', 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.md5: -------------------------------------------------------------------------------- 1 | 6aad426b37bfcc332f431dea11986f56 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.sha1: -------------------------------------------------------------------------------- 1 | 10ce6f327d30938bed82fec7d5ddfa4146e349e3 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/pin.pp: -------------------------------------------------------------------------------- 1 | # pin a release in apt, useful for unstable repositories 2 | apt::pin { 'foo': 3 | packages => '*', 4 | priority => 0, 5 | } 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.sha1: -------------------------------------------------------------------------------- 1 | 10ce6f327d30938bed82fec7d5ddfa4146e349e3 -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/hosts/default_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe 'default' do 4 | it 'should work' do 5 | is_expected.to contain_java_ks('puppetca:truststore') 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/templates/pg_ident_rule.conf: -------------------------------------------------------------------------------- 1 | 2 | # Rule Name: <%=@name%> 3 | # Description: <%=@description%> 4 | # Order: <%=@order%> 5 | <%=@map_name%> <%=@system_username%> <%=@database_username%> 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info('has_ip_network(\'127.0.0.0\'):', has_ip_network('127.0.0.0')) 3 | info('has_ip_network(\'128.0.0.0\'):', has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar.sha1: -------------------------------------------------------------------------------- 1 | 9abe1fe1048c09c797a41e1c6e1220d266a67649 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar.sha1: -------------------------------------------------------------------------------- 1 | 10ce6f327d30938bed82fec7d5ddfa4146e349e3 -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/module-absent.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'absent', 3 | source => 'puppet:///modules/selinux/rsynclocal', 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/module-absent.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'absent', 3 | source => 'puppet:///modules/selinux/rsynclocal', 4 | } 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/fixtures/dscacheutil/root: -------------------------------------------------------------------------------- 1 | name: root 2 | password: * 3 | uid: 0 4 | gid: 0 5 | dir: /var/root 6 | shell: /bin/bash 7 | gecos: rawr Root 8 | 9 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-part1.png -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/init_noparcels_gplextras_4.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera': 2 | cm_server_host => 'localhost', 3 | use_parcels => false, 4 | install_lzo => true, 5 | cdh_version => '4', 6 | } 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info('has_ip_address(\'192.168.1.256\'):', has_ip_address('192.168.1.256')) 3 | info('has_ip_address(\'127.0.0.1\'):', has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /ipython/scripts/fix_cloudera_installation.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mkdir -p /usr/lib/zookeeper 3 | mkdir -p /usr/lib/zookeeper/lib 4 | ln -s -f /usr/lib/parquet/lib/slf4j-log4j12-1.7.5.jar /usr/lib/zookeeper/lib/slf4j-log4j12.jar 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.pom.sha1: -------------------------------------------------------------------------------- 1 | 11a65f3820b9c405d7b7c07b4628d768daffa58e 2 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/module-absent.pp: -------------------------------------------------------------------------------- 1 | selinux::module { 'rsynclocal': 2 | ensure => 'absent', 3 | source => 'puppet:///modules/selinux/rsynclocal', 4 | } 5 | -------------------------------------------------------------------------------- /datastreammanager/orchestrator/main/util.py: -------------------------------------------------------------------------------- 1 | import time 2 | 3 | def timed_exec(method): 4 | start_time = time.time() 5 | result = method() 6 | return result, (time.time() - start_time)/60 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-augparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-augparse.png -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_sysctl/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 2.0.1 4 | 5 | - Convert specs to rspec3 syntax 6 | - Fix metadata.json 7 | 8 | ## 2.0.0 9 | 10 | - First release of split module. 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/jdk_oracle/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | require 'puppet-lint' 4 | PuppetLint.configuration.send("disable_80chars") 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-specshould.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/ipython/puppet/modules/augeasproviders_core/docs/images/augeasproviders-spec-specshould.png -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/jdk_oracle/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | require 'puppet-lint' 4 | PuppetLint.configuration.send("disable_80chars") 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/jdk_oracle/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | require 'puppet-lint' 4 | PuppetLint.configuration.send("disable_80chars") 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/Puppetfile.lock: -------------------------------------------------------------------------------- 1 | FORGE 2 | remote: http://forge.puppetlabs.com 3 | specs: 4 | maestrodev/wget (1.1.0) 5 | 6 | DEPENDENCIES 7 | maestrodev/wget (>= 1.0.0) 8 | 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/jdk_oracle/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'puppetlabs_spec_helper/rake_tasks' 3 | require 'puppet-lint' 4 | PuppetLint.configuration.send("disable_80chars") 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/templates/pg_hba_rule.conf: -------------------------------------------------------------------------------- 1 | 2 | # Rule Name: <%=@name%> 3 | # Description: <%=@description%> 4 | # Order: <%=@order%> 5 | <%=@type%> <%=@database%> <%=@user%> <%=@address%> <%=@auth_method%> <%=@auth_option%> 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/Puppetfile.lock: -------------------------------------------------------------------------------- 1 | FORGE 2 | remote: http://forge.puppetlabs.com 3 | specs: 4 | maestrodev/wget (1.1.0) 5 | 6 | DEPENDENCIES 7 | maestrodev/wget (>= 1.0.0) 8 | 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/Puppetfile.lock: -------------------------------------------------------------------------------- 1 | FORGE 2 | remote: http://forge.puppetlabs.com 3 | specs: 4 | maestrodev/wget (1.1.0) 5 | 6 | DEPENDENCIES 7 | maestrodev/wget (>= 1.0.0) 8 | 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/Puppetfile.lock: -------------------------------------------------------------------------------- 1 | FORGE 2 | remote: http://forge.puppetlabs.com 3 | specs: 4 | maestrodev/wget (1.1.0) 5 | 6 | DEPENDENCIES 7 | maestrodev/wget (>= 1.0.0) 8 | 9 | -------------------------------------------------------------------------------- /ipython/scripts/install_kafka_spark.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | apt-get install ivy 3 | mkdir -p /usr/share/ivy/cache 4 | java -jar /usr/share/java/ivy.jar -cache /usr/share/ivy/cache -ivy /vagrant/scripts/kafka-spark-ivy.xml -cachepath /usr/share/ivy/path.txt 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/modules/wget/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler.require(:rake) 3 | 4 | require 'puppetlabs_spec_helper/rake_tasks' 5 | 6 | PuppetLint.configuration.send("disable_80chars") 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_network('127.0.0.0'):", has_ip_network('127.0.0.0')) 3 | info("has_ip_network('128.0.0.0'):", has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_address('192.168.1.256'):", has_ip_address('192.168.1.256')) 3 | info("has_ip_address('127.0.0.1'):", has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/modules/wget/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler.require(:rake) 3 | 4 | require 'puppetlabs_spec_helper/rake_tasks' 5 | 6 | PuppetLint.configuration.send("disable_80chars") 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_network('127.0.0.0'):", has_ip_network('127.0.0.0')) 3 | info("has_ip_network('128.0.0.0'):", has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/modules/wget/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler.require(:rake) 3 | 4 | require 'puppetlabs_spec_helper/rake_tasks' 5 | 6 | PuppetLint.configuration.send("disable_80chars") 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_network('127.0.0.0'):", has_ip_network('127.0.0.0')) 3 | info("has_ip_network('128.0.0.0'):", has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info('has_ip_address(\'192.168.1.256\'):', has_ip_address('192.168.1.256')) 3 | info('has_ip_address(\'127.0.0.1\'):', has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info('has_ip_network(\'127.0.0.0\'):', has_ip_network('127.0.0.0')) 3 | info('has_ip_network(\'128.0.0.0\'):', has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_core/spec/fixtures/unit/puppet/provider/augeasprovider/default/full: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost.localdomain localhost 2 | ::1 localhost6.localdomain6 localhost6 3 | 192.168.0.5 iridium iridium.example.com 4 | 192.168.0.10 argon # NAS 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm/server.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::cm::repo': } -> 2 | class { 'cloudera::java': } -> 3 | class { 'cloudera::cm::server': } 4 | 5 | #class { 'cloudera': 6 | # cm_server_host => 'localhost', 7 | # install_cmserver => true, 8 | #} 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/modules/wget/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler.require(:rake) 3 | 4 | require 'puppetlabs_spec_helper/rake_tasks' 5 | 6 | PuppetLint.configuration.send("disable_80chars") 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_address('192.168.1.256'):", has_ip_address('192.168.1.256')) 3 | info("has_ip_address('127.0.0.1'):", has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/tests/has_ip_network.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_network('127.0.0.0'):", has_ip_network('127.0.0.0')) 3 | info("has_ip_network('128.0.0.0'):", has_ip_network('128.0.0.0')) 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_address('192.168.1.256'):", has_ip_address('192.168.1.256')) 3 | info("has_ip_address('127.0.0.1'):", has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/tests/has_ip_address.pp: -------------------------------------------------------------------------------- 1 | include stdlib 2 | info("has_ip_address('192.168.1.256'):", has_ip_address('192.168.1.256')) 3 | info("has_ip_address('127.0.0.1'):", has_ip_address('127.0.0.1')) 4 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- 1 | # Declare Apt key for apt.puppetlabs.com source 2 | apt::key { 'puppetlabs': 3 | key => '4BD6EC30', 4 | key_server => 'pgp.mit.edu', 5 | key_options => 'http-proxy="http://proxyuser:proxypass@example.org:3128"', 6 | } 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm5/server.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::cm5::repo': } -> 2 | class { 'cloudera::java5': } -> 3 | class { 'cloudera::cm5::server': } 4 | 5 | #class { 'cloudera': 6 | # cm_server_host => 'localhost', 7 | # install_cmserver => true, 8 | #} 9 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 22 23:56:38 CET 2015 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | require 'puppet-lint/tasks/puppet-lint' 3 | 4 | PuppetLint.configuration.send('disable_80chars') 5 | PuppetLint.configuration.send('disable_quoted_booleans') 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | Gemfile.lock 3 | # TODO: Ignore this for now until we decide what to do with it 4 | spec/fixtures/manifests/ 5 | .ruby-version 6 | .rspec_system 7 | .bundle 8 | .vagrant 9 | vendor/ 10 | -------------------------------------------------------------------------------- /datastreammanager/orchestrator/monitoring/kafka/monitor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | java -cp KafkaOffsetMonitor-assembly-0.2.0.jar \ 3 | com.quantifind.kafka.offsetapp.OffsetGetterWeb \ 4 | --zk 192.168.22.5 \ 5 | --port 8080 \ 6 | --refresh 10.seconds \ 7 | --retain 1.days 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/lib/facter/maven_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add("maven_version") do 2 | setcode do 3 | version = Facter::Util::Resolution.exec('mvn --version') 4 | version.chomp.split("\n")[0].split(" ")[2] if version 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | require 'puppet-lint/tasks/puppet-lint' 3 | 4 | PuppetLint.configuration.send('disable_80chars') 5 | PuppetLint.configuration.send('disable_quoted_booleans') 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | Gemfile.lock 3 | # TODO: Ignore this for now until we decide what to do with it 4 | spec/fixtures/manifests/ 5 | .ruby-version 6 | .rspec_system 7 | .bundle 8 | .vagrant 9 | vendor/ 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | require 'puppet-lint/tasks/puppet-lint' 3 | 4 | PuppetLint.configuration.send('disable_80chars') 5 | PuppetLint.configuration.send('disable_quoted_booleans') 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | Gemfile.lock 3 | # TODO: Ignore this for now until we decide what to do with it 4 | spec/fixtures/manifests/ 5 | .ruby-version 6 | .rspec_system 7 | .bundle 8 | .vagrant 9 | vendor/ 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | require 'puppet-lint/tasks/puppet-lint' 3 | 4 | PuppetLint.configuration.send('disable_80chars') 5 | PuppetLint.configuration.send('disable_quoted_booleans') 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | Gemfile.lock 3 | # TODO: Ignore this for now until we decide what to do with it 4 | spec/fixtures/manifests/ 5 | .ruby-version 6 | .rspec_system 7 | .bundle 8 | .vagrant 9 | vendor/ 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/lib/facter/maven_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add("maven_version") do 2 | setcode do 3 | version = Facter::Util::Resolution.exec('mvn --version') 4 | version.chomp.split("\n")[0].split(" ")[2] if version 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/lib/facter/maven_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add("maven_version") do 2 | setcode do 3 | version = Facter::Util::Resolution.exec('mvn --version') 4 | version.chomp.split("\n")[0].split(" ")[2] if version 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe 'postgresql_password', :type => :puppet_function do 4 | it { is_expected.to run.with_params('foo', 'bar'). 5 | and_return('md596948aad3fcae80c08a35c9b5958cd89') } 6 | end 7 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby -S rspec 2 | require 'rspec' 3 | 4 | class Object 5 | # This is necessary because the RAL has a 'should' 6 | # method. 7 | alias :must :should 8 | alias :must_not :should_not 9 | end 10 | -------------------------------------------------------------------------------- /script/newsreel-test.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | if "%~1"=="" ( 3 | echo "Specify recommendation engine address: http://:port." 4 | exit /B 1 5 | ) 6 | set basedir=%~dp0 7 | %basedir%/../idomaar.bat --comp-env-address %1 --data-source newsreel-test/2014-07-01.data.idomaar_1k.txt --newsreel --new-topic -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/enforcing.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'enforcing', 16 | } 17 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | require 'rspec' 2 | 3 | class Object 4 | # This is necessary because the RAL has a 'should' 5 | # method. 6 | alias :must :should 7 | alias :must_not :should_not 8 | end 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/lib/facter/maven_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add("maven_version") do 2 | setcode do 3 | version = Facter::Util::Resolution.exec('mvn --version') 4 | version.chomp.split("\n")[0].split(" ")[2] if version 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/enforcing.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'enforcing', 16 | } 17 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | require 'rspec' 2 | 3 | class Object 4 | # This is necessary because the RAL has a 'should' 5 | # method. 6 | alias :must :should 7 | alias :must_not :should_not 8 | end 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/enforcing.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'enforcing', 16 | } 17 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | require 'rspec' 2 | 3 | class Object 4 | # This is necessary because the RAL has a 'should' 5 | # method. 6 | alias :must :should 7 | alias :must_not :should_not 8 | end 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/permissive.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'permissive', 16 | } 17 | 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/enforcing.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'enforcing', 16 | } 17 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | require 'rspec' 2 | 3 | class Object 4 | # This is necessary because the RAL has a 'should' 5 | # method. 6 | alias :must :should 7 | alias :must_not :should_not 8 | end 9 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/00.set-hosts.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ## THIS IS TO SET HOSTNAME FOR VIRTUALBOX MACHINES 3 | ## ASSUMPTION IS THAT A VB MACHINE HAS MORE THAN ONE ETH INTERFACES 4 | 5 | ifconfig eth1 6 | if [ $? -eq 0 ]; then 7 | echo "$1 vagrant-ubuntu-trusty-64" >> /etc/hosts 8 | fi 9 | 10 | exit 0 -------------------------------------------------------------------------------- /ipython/scripts/00-pyspark-setup.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | spark_home = '/usr/lib/spark/' 5 | sys.path.insert(0, os.path.join(spark_home, 'python')) 6 | sys.path.insert(0, os.path.join(spark_home, 'python/lib/py4j-0.8.2.1-src.zip')) 7 | execfile(os.path.join(spark_home, 'python/pyspark/shell.py')) 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- 1 | # Declare Apt key for apt.puppetlabs.com source 2 | apt::key { 'puppetlabs': 3 | key => '4BD6EC30', 4 | key_server => 'pgp.mit.edu', 5 | key_options => 'http-proxy="http://proxyuser:proxypass@example.org:3128"', 6 | } 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/archive/manifests/tar-gz.pp: -------------------------------------------------------------------------------- 1 | define archive::tar-gz($source, $target) { 2 | exec {"$name unpack": 3 | command => "curl ${source} | tar -xzf - -C ${target} && touch ${name}", 4 | creates => $name, 5 | require => Package[curl], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/permissive.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'permissive', 16 | } 17 | 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/permissive.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'permissive', 16 | } 17 | 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/permissive.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'permissive', 16 | } 17 | 18 | -------------------------------------------------------------------------------- /datastreammanager/input/README: -------------------------------------------------------------------------------- 1 | Place Idomaar input files in this directory. 2 | Files in this directory can be referred to using the relative path by the --data-source switch when starting Idomaar, e.g. for the sample file included here 3 | it would read 4 | --data source newsreel-test/2014-07-01.data.idomaar_1k.txt -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/archive/manifests/tar-gz.pp: -------------------------------------------------------------------------------- 1 | define archive::tar-gz($source, $target) { 2 | exec {"$name unpack": 3 | command => "curl ${source} | tar -xzf - -C ${target} && touch ${name}", 4 | creates => $name, 5 | require => Package[curl], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/tests/key.pp: -------------------------------------------------------------------------------- 1 | # Declare Apt key for apt.puppetlabs.com source 2 | apt::key { 'puppetlabs': 3 | key => '4BD6EC30', 4 | key_server => 'pgp.mit.edu', 5 | key_options => 'http-proxy="http://proxyuser:proxypass@example.org:3128"', 6 | } 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/archive/manifests/tar-gz.pp: -------------------------------------------------------------------------------- 1 | define archive::tar-gz($source, $target) { 2 | exec {"$name unpack": 3 | command => "curl ${source} | tar -xzf - -C ${target} && touch ${name}", 4 | creates => $name, 5 | require => Package[curl], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/archive/manifests/tar-gz.pp: -------------------------------------------------------------------------------- 1 | define archive::tar-gz($source, $target) { 2 | exec {"$name unpack": 3 | command => "curl ${source} | tar -xzf - -C ${target} && touch ${name}", 4 | creates => $name, 5 | require => Package[curl], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ipython/puppet/modules/augeasproviders_sysctl/spec/fixtures/unit/puppet/provider/sysctl/augeas/small: -------------------------------------------------------------------------------- 1 | # Kernel sysctl configuration file 2 | # 3 | # For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and 4 | # sysctl.conf(5) for more details. 5 | 6 | # Controls IP packet forwarding 7 | net.ipv4.ip_forward = 0 8 | 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /ipython/puppet/modules/zypprepo/manifests/init.pp: -------------------------------------------------------------------------------- 1 | # Class: zypprepo 2 | # 3 | # This module manages zypprepo 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | # [Remember: No empty lines between comments and class definition] 14 | class zypprepo { 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-64 6 | box: puppetlabs/ubuntu-14.04-64-nocm 7 | hypervisor : vagrant 8 | CONFIG: 9 | type: foss 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/tests/file_line.pp: -------------------------------------------------------------------------------- 1 | # This is a simple smoke test 2 | # of the file_line resource type. 3 | file { '/tmp/dansfile': 4 | ensure => present 5 | }-> 6 | file_line { 'dans_line': 7 | line => 'dan is awesome', 8 | path => '/tmp/dansfile', 9 | } 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby -S rspec 2 | require 'rspec' 3 | 4 | class Object 5 | # This is necessary because the RAL has a 'should' 6 | # method. 7 | alias :must :should 8 | alias :must_not :should_not 9 | end 10 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/ipython/00-pyspark-setup.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | spark_home = '/usr/lib/spark/' 5 | sys.path.insert(0, os.path.join(spark_home, 'python')) 6 | sys.path.insert(0, os.path.join(spark_home, 'python/lib/py4j-0.8.1-log4j-kafka-source.zip')) 7 | execfile(os.path.join(spark_home, 'python/pyspark/shell.py')) 8 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'spec_helper' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | expect(anchor.to_s).to eq("Anchor[ntp::begin]") 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/modules/wget/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | group :rake do 4 | gem 'puppet', '~>2.7.17' 5 | gem 'rspec-puppet', '>=0.1.3' 6 | gem 'rake', '>=0.9.2.2' 7 | gem 'puppet-lint', '~>0.1.12' 8 | gem 'puppetlabs_spec_helper' 9 | end 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-64 6 | box: puppetlabs/ubuntu-14.04-64-nocm 7 | hypervisor : vagrant 8 | CONFIG: 9 | type: foss 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-64 6 | box: puppetlabs/ubuntu-14.04-64-nocm 7 | hypervisor : vagrant 8 | CONFIG: 9 | type: foss 10 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby -S rspec 2 | # Support code for running stuff with warnings disabled. 3 | module Kernel 4 | def with_verbose_disabled 5 | verbose, $VERBOSE = $VERBOSE, nil 6 | result = yield 7 | $VERBOSE = verbose 8 | return result 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-64 6 | box: puppetlabs/ubuntu-14.04-64-nocm 7 | hypervisor : vagrant 8 | CONFIG: 9 | type: foss 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/modules/wget/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | group :rake do 4 | gem 'puppet', '~>2.7.17' 5 | gem 'rspec-puppet', '>=0.1.3' 6 | gem 'rake', '>=0.9.2.2' 7 | gem 'puppet-lint', '~>0.1.12' 8 | gem 'puppetlabs_spec_helper' 9 | end 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/modules/wget/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | group :rake do 4 | gem 'puppet', '~>2.7.17' 5 | gem 'rspec-puppet', '>=0.1.3' 6 | gem 'rake', '>=0.9.2.2' 7 | gem 'puppet-lint', '~>0.1.12' 8 | gem 'puppetlabs_spec_helper' 9 | end 10 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/defines/default-settings.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/modules/wget/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | group :rake do 4 | gem 'puppet', '~>2.7.17' 5 | gem 'rspec-puppet', '>=0.1.3' 6 | gem 'rake', '>=0.9.2.2' 7 | gem 'puppet-lint', '~>0.1.12' 8 | gem 'puppetlabs_spec_helper' 9 | end 10 | -------------------------------------------------------------------------------- /datastreammanager/flume-plugins/flume-plugin-idomaar/src/main/java/eu/crowdrec/flume/plugins/source/IdomaarStreamReader.java: -------------------------------------------------------------------------------- 1 | package eu.crowdrec.flume.plugins.source; 2 | 3 | import java.io.IOException; 4 | 5 | public interface IdomaarStreamReader { 6 | public String getData() throws IOException; 7 | public void close() throws IOException; 8 | } 9 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/README_SPECS.markdown: -------------------------------------------------------------------------------- 1 | NOTE 2 | ==== 3 | 4 | This project's specs depend on puppet core, and thus they require the 5 | `puppetlabs_spec_helper` project. For more information please see the README 6 | in that project, which can be found here: [puppetlabs spec 7 | helper](https://github.com/puppetlabs/puppetlabs_spec_helper) 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/defines/default-settings.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/defines/default-settings.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-concat' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-concat.git' 4 | author 'Puppetlabs' 5 | license 'Apache 2.0' 6 | summary 'Concat module' 7 | description 'Concat module' 8 | project_page 'http://github.com/puppetlabs/puppetlabs-concat' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/module.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | selinux::module { 'rsynclocal': 15 | ensure => 'present', 16 | source => 'puppet:///modules/selinux/rsynclocal', 17 | } 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/defines/default-settings.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64.local: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/lib/facter/concat_basedir.rb: -------------------------------------------------------------------------------- 1 | # == Fact: concat_basedir 2 | # 3 | # A custom fact that sets the default location for fragments 4 | # 5 | # "${::vardir}/concat/" 6 | # 7 | Facter.add("concat_basedir") do 8 | setcode do 9 | File.join(Puppet[:vardir],"concat") 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | task :default => [:lint, :spec] 4 | 5 | desc "build module" 6 | task :buildmodule do 7 | system('puppet module build') 8 | end 9 | 10 | desc "Run all tasks for a release" 11 | task :release => [:spec, :clean, :buildmodule] 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-concat' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-concat.git' 4 | author 'Puppetlabs' 5 | license 'Apache 2.0' 6 | summary 'Concat module' 7 | description 'Concat module' 8 | project_page 'http://github.com/puppetlabs/puppetlabs-concat' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/module.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | selinux::module { 'rsynclocal': 15 | ensure => 'present', 16 | source => 'puppet:///modules/selinux/rsynclocal', 17 | } 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-concat' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-concat.git' 4 | author 'Puppetlabs' 5 | license 'Apache 2.0' 6 | summary 'Concat module' 7 | description 'Concat module' 8 | project_page 'http://github.com/puppetlabs/puppetlabs-concat' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/module.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | selinux::module { 'rsynclocal': 15 | ensure => 'present', 16 | source => 'puppet:///modules/selinux/rsynclocal', 17 | } 18 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/06.create-kafka-topic.sh: -------------------------------------------------------------------------------- 1 | # WAITING FOR KAFKA SERVER TO START 2 | sleep 5 3 | 4 | /opt/apache/kafka/bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic recommendations --partitions 1 --replication-factor 1 5 | /opt/apache/kafka/bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic data --partitions 1 --replication-factor 1 6 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64.local: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11-x64.local: 3 | roles: 4 | - master 5 | platform: sles-11-x64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-concat' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-concat.git' 4 | author 'Puppetlabs' 5 | license 'Apache 2.0' 6 | summary 'Concat module' 7 | description 'Concat module' 8 | project_page 'http://github.com/puppetlabs/puppetlabs-concat' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/module.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | selinux::module { 'rsynclocal': 15 | ensure => 'present', 16 | source => 'puppet:///modules/selinux/rsynclocal', 17 | } 18 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/lib/facter/concat_basedir.rb: -------------------------------------------------------------------------------- 1 | # == Fact: concat_basedir 2 | # 3 | # A custom fact that sets the default location for fragments 4 | # 5 | # "${::vardir}/concat/" 6 | # 7 | Facter.add("concat_basedir") do 8 | setcode do 9 | File.join(Puppet[:vardir],"concat") 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | task :default => [:lint, :spec] 4 | 5 | desc "build module" 6 | task :buildmodule do 7 | system('puppet module build') 8 | end 9 | 10 | desc "Run all tasks for a release" 11 | task :release => [:spec, :clean, :buildmodule] 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/lib/facter/concat_basedir.rb: -------------------------------------------------------------------------------- 1 | # == Fact: concat_basedir 2 | # 3 | # A custom fact that sets the default location for fragments 4 | # 5 | # "${::vardir}/concat/" 6 | # 7 | Facter.add("concat_basedir") do 8 | setcode do 9 | File.join(Puppet[:vardir],"concat") 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | task :default => [:lint, :spec] 4 | 5 | desc "build module" 6 | task :buildmodule do 7 | system('puppet module build') 8 | end 9 | 10 | desc "Run all tasks for a release" 11 | task :release => [:spec, :clean, :buildmodule] 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-510-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-510-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-510-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/stdlib-3.2.1/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'puppet' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | anchor.to_s.should == "Anchor[ntp::begin]" 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/lib/facter/concat_basedir.rb: -------------------------------------------------------------------------------- 1 | # == Fact: concat_basedir 2 | # 3 | # A custom fact that sets the default location for fragments 4 | # 5 | # "${::vardir}/concat/" 6 | # 7 | Facter.add("concat_basedir") do 8 | setcode do 9 | File.join(Puppet[:vardir],"concat") 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | task :default => [:lint, :spec] 4 | 5 | desc "build module" 6 | task :buildmodule do 7 | system('puppet module build') 8 | end 9 | 10 | desc "Run all tasks for a release" 11 | task :release => [:spec, :clean, :buildmodule] 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-70rc1-x64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm/server-mysql.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::cm::repo': } -> 2 | class { 'cloudera::java': } -> 3 | class { 'cloudera::cm::server': 4 | db_type => 'mysql', 5 | } 6 | 7 | include '::mysql::server' 8 | #class { 'cloudera': 9 | # cm_server_host => 'localhost', 10 | # install_cmserver => true, 11 | # db_type => 'mysql', 12 | #} 13 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/centos-510-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-510-x64.local: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-510-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-510-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64.local: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64.local: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/stdlib-3.2.1/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'puppet' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | anchor.to_s.should == "Anchor[ntp::begin]" 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib-3.2.1/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'puppet' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | anchor.to_s.should == "Anchor[ntp::begin]" 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'spec_helper' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | anchor.to_s.should == "Anchor[ntp::begin]" 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git -------------------------------------------------------------------------------- /ipython/puppet/modules/cloudera/tests/cm5/server-mysql.pp: -------------------------------------------------------------------------------- 1 | class { 'cloudera::cm5::repo': } -> 2 | class { 'cloudera::java5': } -> 3 | class { 'cloudera::cm5::server': 4 | db_type => 'mysql', 5 | } 6 | 7 | include '::mysql::server' 8 | #class { 'cloudera': 9 | # cm_server_host => 'localhost', 10 | # install_cmserver => true, 11 | # db_type => 'mysql', 12 | #} 13 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-firewall' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-firewall.git' 4 | author 'puppetlabs' 5 | license 'ASL 2.0' 6 | summary 'Firewall Module' 7 | description 'Manages Firewalls such as iptables' 8 | project_page 'http://forge.puppetlabs.com/puppetlabs/firewall' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/lib/facter/ip6tables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:ip6tables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('ip6tables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/lib/facter/iptables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:iptables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('iptables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/stdlib-3.2.1/spec/unit/puppet/type/anchor_spec.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'puppet' 4 | 5 | anchor = Puppet::Type.type(:anchor).new(:name => "ntp::begin") 6 | 7 | describe anchor do 8 | it "should stringify normally" do 9 | anchor.to_s.should == "Anchor[ntp::begin]" 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby -S rspec 2 | # Support code for running stuff with warnings disabled. 3 | module Kernel 4 | def with_verbose_disabled 5 | verbose, $VERBOSE = $VERBOSE, nil 6 | result = yield 7 | $VERBOSE = verbose 8 | return result 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /script/newsreel.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | if "%~2"=="" ( 3 | echo "usage: newsreel.bat " 4 | echo "e.g. newsreel.bat http://host:port path/to/data/file" 5 | echo "Use forward slashes (/) as the directory separator." 6 | exit /B 1 7 | ) 8 | set basedir=%~dp0 9 | %basedir%/../idomaar.bat --comp-env-address %1 --data-source %2 --newsreel --new-topic -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | if ENV.key?('PUPPET_VERSION') 4 | puppetversion = "= #{ENV['PUPPET_VERSION']}" 5 | else 6 | puppetversion = ['>= 2.7'] 7 | end 8 | 9 | gem 'rake' 10 | gem 'puppet-lint' 11 | gem 'rspec-puppet' 12 | gem 'puppetlabs_spec_helper' 13 | gem 'puppet', puppetversion 14 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-firewall' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-firewall.git' 4 | author 'puppetlabs' 5 | license 'ASL 2.0' 6 | summary 'Firewall Module' 7 | description 'Manages Firewalls such as iptables' 8 | project_page 'http://forge.puppetlabs.com/puppetlabs/firewall' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/lib/facter/ip6tables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:ip6tables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('ip6tables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/lib/facter/iptables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:iptables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('iptables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-firewall' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-firewall.git' 4 | author 'puppetlabs' 5 | license 'ASL 2.0' 6 | summary 'Firewall Module' 7 | description 'Manages Firewalls such as iptables' 8 | project_page 'http://forge.puppetlabs.com/puppetlabs/firewall' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/lib/facter/ip6tables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:ip6tables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('ip6tables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/lib/facter/iptables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:iptables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('iptables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/unit/classes/params_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe 'postgresql::params', :type => :class do 4 | let :facts do 5 | { 6 | :osfamily => 'Debian', 7 | :operatingsystem => 'Debian', 8 | :operatingsystemrelease => '6.0', 9 | } 10 | end 11 | it { is_expected.to contain_class("postgresql::params") } 12 | end 13 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/archive/manifests/zip.pp: -------------------------------------------------------------------------------- 1 | define archive::zip($source, $target) { 2 | exec {"$name unpack": 3 | command => "TMPFILE=\$(mktemp); curl -o \${TMPFILE}.zip ${source} && unzip \${TMPFILE}.zip -d ${target} && rm \$TMPFILE && rm \${TMPFILE}.zip && touch ${name}", 4 | creates => $name, 5 | require => Package['unzip'], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/tests/disable.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'disabled', 16 | } 17 | 18 | # Also acceptable 19 | # class { 'selinux': 20 | # mode => 'permissive', 21 | # } 22 | 23 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppetlabs-firewall' 2 | version '1.0.2' 3 | source 'git://github.com/puppetlabs/puppetlabs-firewall.git' 4 | author 'puppetlabs' 5 | license 'ASL 2.0' 6 | summary 'Firewall Module' 7 | description 'Manages Firewalls such as iptables' 8 | project_page 'http://forge.puppetlabs.com/puppetlabs/firewall' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/lib/facter/ip6tables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:ip6tables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('ip6tables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/lib/facter/iptables_version.rb: -------------------------------------------------------------------------------- 1 | Facter.add(:iptables_version) do 2 | confine :kernel => :linux 3 | setcode do 4 | version = Facter::Util::Resolution.exec('iptables --version') 5 | if version 6 | version.match(/\d+\.\d+\.\d+/).to_s 7 | else 8 | nil 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | if ENV.key?('PUPPET_VERSION') 4 | puppetversion = "= #{ENV['PUPPET_VERSION']}" 5 | else 6 | puppetversion = ['>= 2.7'] 7 | end 8 | 9 | gem 'rake' 10 | gem 'puppet-lint' 11 | gem 'rspec-puppet' 12 | gem 'puppetlabs_spec_helper' 13 | gem 'puppet', puppetversion 14 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | if ENV.key?('PUPPET_VERSION') 4 | puppetversion = "= #{ENV['PUPPET_VERSION']}" 5 | else 6 | puppetversion = ['>= 2.7'] 7 | end 8 | 9 | gem 'rake' 10 | gem 'puppet-lint' 11 | gem 'rspec-puppet' 12 | gem 'puppetlabs_spec_helper' 13 | gem 'puppet', puppetversion 14 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | if ENV.key?('PUPPET_VERSION') 4 | puppetversion = "= #{ENV['PUPPET_VERSION']}" 5 | else 6 | puppetversion = ['>= 2.7'] 7 | end 8 | 9 | gem 'rake' 10 | gem 'puppet-lint' 11 | gem 'rspec-puppet' 12 | gem 'puppetlabs_spec_helper' 13 | gem 'puppet', puppetversion 14 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/README_SPECS.markdown: -------------------------------------------------------------------------------- 1 | NOTE 2 | ==== 3 | 4 | This project's specs depend on puppet core, and thus they require the 5 | `puppetlabs_spec_helper` project. For more information please see the README 6 | in that project, which can be found here: [puppetlabs spec 7 | helper](https://github.com/puppetlabs/puppetlabs_spec_helper) 8 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-amd64 6 | box : puppetlabs/ubuntu-14.04-64-nocm 7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level : debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | require 'puppet-lint/tasks/puppet-lint' 4 | PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp'] 5 | 6 | task :default do 7 | sh %{rake -T} 8 | end 9 | 10 | desc 'Run reasonably quick tests for CI' 11 | task :ci => [ 12 | :lint, 13 | :spec, 14 | ] 15 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/selinux/tests/disable.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'disabled', 16 | } 17 | 18 | # Also acceptable 19 | # class { 'selinux': 20 | # mode => 'permissive', 21 | # } 22 | 23 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/archive/manifests/zip.pp: -------------------------------------------------------------------------------- 1 | define archive::zip($source, $target) { 2 | exec {"$name unpack": 3 | command => "TMPFILE=\$(mktemp); curl -o \${TMPFILE}.zip ${source} && unzip \${TMPFILE}.zip -d ${target} && rm \$TMPFILE && rm \${TMPFILE}.zip && touch ${name}", 4 | creates => $name, 5 | require => Package['unzip'], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/selinux/tests/disable.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'disabled', 16 | } 17 | 18 | # Also acceptable 19 | # class { 'selinux': 20 | # mode => 'permissive', 21 | # } 22 | 23 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/templates/source.list.erb: -------------------------------------------------------------------------------- 1 | # <%= @name %> 2 | deb <% if @architecture %>[arch=<%= @architecture %>] <% end %><%= @location %> <%= @release_real %> <%= @repos %> 3 | <%- if @include_src then -%> 4 | deb-src <% if @architecture %>[arch=<%= @architecture %>] <% end %><%= @location %> <%= @release_real %> <%= @repos %> 5 | <%- end -%> 6 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/archive/manifests/zip.pp: -------------------------------------------------------------------------------- 1 | define archive::zip($source, $target) { 2 | exec {"$name unpack": 3 | command => "TMPFILE=\$(mktemp); curl -o \${TMPFILE}.zip ${source} && unzip \${TMPFILE}.zip -d ${target} && rm \$TMPFILE && rm \${TMPFILE}.zip && touch ${name}", 4 | creates => $name, 5 | require => Package['unzip'], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/selinux/tests/disable.pp: -------------------------------------------------------------------------------- 1 | # Class: 2 | # 3 | # Description 4 | # 5 | # Parameters: 6 | # 7 | # Actions: 8 | # 9 | # Requires: 10 | # 11 | # Sample Usage: 12 | # 13 | 14 | class { 'selinux': 15 | mode => 'disabled', 16 | } 17 | 18 | # Also acceptable 19 | # class { 'selinux': 20 | # mode => 'permissive', 21 | # } 22 | 23 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-amd64 6 | box : puppetlabs/ubuntu-14.04-64-nocm 7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level : debug 11 | type: git 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-amd64 6 | box : puppetlabs/ubuntu-14.04-64-nocm 7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level : debug 11 | type: git 12 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-1404-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-14.04-amd64 6 | box : puppetlabs/ubuntu-14.04-64-nocm 7 | box_url : https://vagrantcloud.com/puppetlabs/ubuntu-14.04-64-nocm 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level : debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/archive/manifests/zip.pp: -------------------------------------------------------------------------------- 1 | define archive::zip($source, $target) { 2 | exec {"$name unpack": 3 | command => "TMPFILE=\$(mktemp); curl -o \${TMPFILE}.zip ${source} && unzip \${TMPFILE}.zip -d ${target} && rm \$TMPFILE && rm \${TMPFILE}.zip && touch ${name}", 4 | creates => $name, 5 | require => Package['unzip'], 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-1/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.014634-1.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowdrec/idomaar/HEAD/computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/fixtures/acceptance/maven/repo-2/org/foo/hello/0.0.1-SNAPSHOT/hello-0.0.1-20131008.025235-2.jar -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | require 'puppet-lint/tasks/puppet-lint' 4 | PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp'] 5 | 6 | task :default do 7 | sh %{rake -T} 8 | end 9 | 10 | desc 'Run reasonably quick tests for CI' 11 | task :ci => [ 12 | :lint, 13 | :spec, 14 | ] 15 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | require 'puppet-lint/tasks/puppet-lint' 4 | PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp'] 5 | 6 | task :default do 7 | sh %{rake -T} 8 | end 9 | 10 | desc 'Run reasonably quick tests for CI' 11 | task :ci => [ 12 | :lint, 13 | :spec, 14 | ] 15 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-vbox436-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/manifests/release.pp: -------------------------------------------------------------------------------- 1 | # release.pp 2 | 3 | class apt::release ( 4 | $release_id 5 | ) { 6 | 7 | include apt::params 8 | 9 | $root = $apt::params::root 10 | 11 | file { "${root}/apt.conf.d/01release": 12 | owner => root, 13 | group => root, 14 | mode => '0644', 15 | content => template('apt/_header.erb', 'apt/release.erb'), 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/centos-64-x64-pe.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | - database 6 | - dashboard 7 | platform: el-6-x86_64 8 | box : centos-64-x64-vbox4210-nocm 9 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 10 | hypervisor : vagrant 11 | CONFIG: 12 | type: pe 13 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-10044-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-10.04-amd64 6 | box : ubuntu-server-10044-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-12042-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-12.04-amd64 6 | box : ubuntu-server-12042-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | - database 6 | - dashboard 7 | platform: el-6-x86_64 8 | box : centos-64-x64-vbox4210-nocm 9 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 10 | hypervisor : vagrant 11 | CONFIG: 12 | type: pe 13 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/Rakefile: -------------------------------------------------------------------------------- 1 | require 'puppetlabs_spec_helper/rake_tasks' 2 | 3 | require 'puppet-lint/tasks/puppet-lint' 4 | PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp'] 5 | 6 | task :default do 7 | sh %{rake -T} 8 | end 9 | 10 | desc 'Run reasonably quick tests for CI' 11 | task :ci => [ 12 | :lint, 13 | :spec, 14 | ] 15 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/centos-64-x64-pe.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | - database 6 | - dashboard 7 | platform: el-6-x86_64 8 | box : centos-64-x64-vbox4210-nocm 9 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 10 | hypervisor : vagrant 11 | CONFIG: 12 | type: pe 13 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-10044-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-10.04-amd64 6 | box : ubuntu-server-10044-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-12042-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-12.04-amd64 6 | box : ubuntu-server-12042-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64-pe.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | - database 6 | - dashboard 7 | platform: el-6-x86_64 8 | box : centos-64-x64-vbox4210-nocm 9 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 10 | hypervisor : vagrant 11 | CONFIG: 12 | type: pe 13 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-10044-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-10.04-amd64 6 | box : ubuntu-server-10044-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-12042-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-12.04-amd64 6 | box : ubuntu-server-12042-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-10044-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-10.04-amd64 6 | box : ubuntu-server-10044-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-10044-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | ubuntu-server-12042-x64: 3 | roles: 4 | - master 5 | platform: ubuntu-12.04-amd64 6 | box : ubuntu-server-12042-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-fusion503-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box 8 | hypervisor : fusion 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-59-x64: 3 | roles: 4 | - master 5 | platform: el-5-x86_64 6 | box : centos-59-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-59-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11-x64.local: 3 | roles: 4 | - master 5 | platform: sles-11-x64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /datastreammanager/vagrant/10.spark.sh: -------------------------------------------------------------------------------- 1 | ## INSTALL BASE SPARK ENV 2 | cd /tmp 3 | wget -nv -O spark.tgz http://d3kbcqa49mib13.cloudfront.net/spark-1.5.2-bin-hadoop2.6.tgz 4 | 5 | tar -xvf spark.tgz 6 | mkdir -p /opt/apache 7 | mv spark-1.5.2-bin-hadoop2.6 /opt/apache 8 | cd /opt/apache 9 | ln -s /opt/apache/spark-1.5.2-bin-hadoop2.6 spark 10 | 11 | cp /vagrant/vagrant/ipython/log4j.properties /opt/apache/spark/conf -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-70rc1-x64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-607-x64: 3 | roles: 4 | - master 5 | platform: debian-6-amd64 6 | box : debian-607-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-607-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | fedora-18-x64: 3 | roles: 4 | - master 5 | platform: fedora-18-x86_64 6 | box : fedora-18-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | sles-11sp1-x64: 3 | roles: 4 | - master 5 | platform: sles-11-x86_64 6 | box : sles-11sp1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/sles-11sp1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-fusion503-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box 8 | hypervisor : fusion 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-fusion503-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box 8 | hypervisor : fusion 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/java_ks/spec/acceptance/basic_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper_acceptance' 2 | 3 | describe 'prep nodes', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do 4 | it 'requires java', :unless => ["Solaris","AIX"].include?(fact('osfamily')) do 5 | pp = <<-EOS 6 | class { 'java': } 7 | EOS 8 | 9 | apply_manifest(pp, :catch_failures => true) 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/apt/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-fusion503-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-fusion503-nocm.box 8 | hypervisor : fusion 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-70rc1-x64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: foss 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /ipython/puppet/modules/postgresql/spec/unit/functions/postgresql_escape_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe 'postgresql_escape', :type => :puppet_function do 4 | it { is_expected.to run.with_params('foo'). 5 | and_return('$$foo$$') } 6 | end 7 | describe 'postgresql_escape', :type => :puppet_function do 8 | it { is_expected.to run.with_params('fo$$o'). 9 | and_return('$ed$fo$$o$ed$') } 10 | end 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/acceptance/nodesets/centos-65-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/defines/local-repo-settings.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | /var/cache/maven/repository 5 | 6 | 7 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/selinux/Modulefile: -------------------------------------------------------------------------------- 1 | name 'spiette-selinux' 2 | version '0.5.4' 3 | source 'http://github.com/spiette/puppet-selinux' 4 | author 'spiette' 5 | license 'Apache License, Version 2.0' 6 | summary 'This class manages SELinux on RHEL based systems.' 7 | description 'This class manages SELinux on RHEL based systems.' 8 | project_page 'http://github.com/spiette/puppet-selinux' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-70rc1-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-70rc1-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-70rc1-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | type: git 11 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/03.clefStreams/puppet/modules/maven/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/manifests/update.pp: -------------------------------------------------------------------------------- 1 | class apt::update { 2 | include apt::params 3 | 4 | exec { 'apt_update': 5 | command => "${apt::params::provider} update", 6 | logoutput => 'on_failure', 7 | refreshonly => true, 8 | timeout => $apt::update_timeout, 9 | tries => $apt::update_tries, 10 | try_sleep => 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/apt/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/git/Modulefile: -------------------------------------------------------------------------------- 1 | name 'jproyo-git' 2 | version '0.1.0' 3 | source 'https://github.com/mxhero/puppet-modules/tree/master/modules/git' 4 | author 'Juan Pablo Royo' 5 | license 'Apache 2.0' 6 | summary 'Git client module to clone repos' 7 | description "Install Git client and Clone repos" 8 | project_page 'https://github.com/mxhero/puppet-modules/tree/master/modules/git' 9 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/02.ubuntu/01.mymedialite/puppet/modules/maven/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/01.mahout/puppet/modules/maven/spec/acceptance/nodesets/debian-73-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | debian-73-x64: 3 | roles: 4 | - master 5 | platform: debian-7-amd64 6 | box : debian-73-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/debian-73-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/acceptance/nodesets/centos-64-x64.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-64-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-64-x64-vbox4210-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | -------------------------------------------------------------------------------- /computingenvironments/01.linux/01.centos/02.userItemStreams/puppet/modules/maven/spec/acceptance/nodesets/default.yml: -------------------------------------------------------------------------------- 1 | HOSTS: 2 | centos-65-x64: 3 | roles: 4 | - master 5 | platform: el-6-x86_64 6 | box : centos-65-x64-virtualbox-nocm 7 | box_url : http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-nocm.box 8 | hypervisor : vagrant 9 | CONFIG: 10 | log_level: debug 11 | type: git 12 | --------------------------------------------------------------------------------