├── .gitignore ├── .headache ├── CONFIG ├── HEADER └── apply.sh ├── AUTHORS ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── doc ├── Makefile ├── main.asc ├── metadata.yaml ├── scripts │ ├── build-gh-pages.sh │ └── gen-ref.rb └── src │ ├── arch.asc │ ├── arch │ ├── clusterdef.asc │ ├── deployment.asc │ ├── deps.asc │ ├── encrypt.asc │ ├── genericity.asc │ ├── hiera.asc │ ├── pattern.asc │ ├── repo.asc │ └── roles.asc │ ├── guidelines.asc │ ├── img │ ├── components_genericity.svg │ ├── config_push_apply.svg │ ├── encrypted_files_deployment.svg │ ├── eyaml_keys_propagation.svg │ ├── hiera_hash_multi-cluster.svg │ ├── hiera_layers_tree.svg │ ├── hieradata_params_autolookup_vs_profs.svg │ ├── hieradata_params_workflow.svg │ ├── internal_keys_mutual-encryption.svg │ ├── internal_repository_combination.svg │ ├── modules_files_class_hierarchy_complex.svg │ ├── modules_files_class_hierarchy_simple.svg │ ├── net_topology-master_network-corresponding.svg │ ├── node_role_profiles_assoc.svg │ └── pattern_roles_profiles_hiera.svg │ ├── overview.asc │ └── reference.asc ├── examples ├── modules │ ├── complex │ │ ├── README.md │ │ └── manifests │ │ │ ├── client.pp │ │ │ ├── client │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ └── simple │ │ ├── README.md │ │ └── manifests │ │ ├── config.pp │ │ ├── init.pp │ │ ├── install.pp │ │ ├── params.pp │ │ └── service.pp └── privatedata │ ├── hiera.yaml │ └── puppet.conf ├── hieradata ├── common.yaml └── default │ └── roles │ ├── batch.yaml │ ├── cn.yaml │ ├── critical.yaml │ └── misc.yaml ├── puppet-config ├── cluster │ ├── profiles │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── access │ │ │ └── base.pp │ │ │ ├── administration │ │ │ └── admintemp.pp │ │ │ ├── alternatives │ │ │ └── base.pp │ │ │ ├── apt │ │ │ └── proxy.pp │ │ │ ├── auth │ │ │ ├── client.pp │ │ │ └── replica.pp │ │ │ ├── backup │ │ │ ├── collect_dir.pp │ │ │ ├── configsafety.pp │ │ │ ├── destnode.pp │ │ │ └── switches.pp │ │ │ ├── bootsystem │ │ │ └── server.pp │ │ │ ├── ceph │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── clara │ │ │ └── base.pp │ │ │ ├── clearsel │ │ │ └── server.pp │ │ │ ├── clush │ │ │ └── client.pp │ │ │ ├── cluster │ │ │ └── common.pp │ │ │ ├── conman │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── consul │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── db │ │ │ └── server.pp │ │ │ ├── dhcp │ │ │ └── server.pp │ │ │ ├── dns │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── environment │ │ │ ├── aufs_remote.pp │ │ │ ├── base.pp │ │ │ ├── cce.pp │ │ │ ├── ldconfig.pp │ │ │ ├── limits.pp │ │ │ ├── lmod.pp │ │ │ ├── modules.pp │ │ │ ├── openmpi.pp │ │ │ ├── password.pp │ │ │ ├── reporting.pp │ │ │ ├── service.pp │ │ │ ├── singularity.pp │ │ │ ├── users_crontabs.pp │ │ │ ├── userspace.pp │ │ │ └── vtune.pp │ │ │ ├── filesystem │ │ │ ├── directories.pp │ │ │ ├── locate.pp │ │ │ ├── mounts.pp │ │ │ └── symlinks.pp │ │ │ ├── firewall │ │ │ └── base.pp │ │ │ ├── flexlm │ │ │ └── service.pp │ │ │ ├── ftp │ │ │ └── server.pp │ │ │ ├── gpfs │ │ │ └── node.pp │ │ │ ├── ha │ │ │ ├── base.pp │ │ │ └── role.pp │ │ │ ├── hardware │ │ │ ├── admin_tuning.pp │ │ │ ├── cpu_scaling.pp │ │ │ ├── ddnsrp.pp │ │ │ ├── ipmi.pp │ │ │ ├── megaraid.pp │ │ │ ├── multipath.pp │ │ │ ├── santricity.pp │ │ │ └── user_tuning.pp │ │ │ ├── hpcconfig │ │ │ ├── apply.pp │ │ │ └── push.pp │ │ │ ├── hpcstats │ │ │ └── agents.pp │ │ │ ├── http │ │ │ ├── diskless.pp │ │ │ ├── secret.pp │ │ │ ├── slurmweb.pp │ │ │ └── system.pp │ │ │ ├── infiniband │ │ │ └── sm.pp │ │ │ ├── inventory │ │ │ └── collect.pp │ │ │ ├── jobsched │ │ │ ├── client.pp │ │ │ ├── exec.pp │ │ │ └── server.pp │ │ │ ├── log │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── metrics │ │ │ ├── collect_base.pp │ │ │ ├── collect_jobsched_exec.pp │ │ │ ├── collect_jobsched_server.pp │ │ │ └── relay.pp │ │ │ ├── monitoring │ │ │ ├── admin.pp │ │ │ ├── agent.pp │ │ │ ├── ibsurv.pp │ │ │ ├── savewtmp.pp │ │ │ └── server.pp │ │ │ ├── neos │ │ │ ├── exec.pp │ │ │ ├── submit.pp │ │ │ └── web.pp │ │ │ ├── network │ │ │ ├── base.pp │ │ │ ├── nat.pp │ │ │ └── wan_nat.pp │ │ │ ├── nfs │ │ │ ├── exports.pp │ │ │ ├── ha_server.pp │ │ │ ├── mounts.pp │ │ │ └── xfsquota.pp │ │ │ ├── ntp │ │ │ ├── client.pp │ │ │ └── server.pp │ │ │ ├── opa │ │ │ ├── ff.pp │ │ │ ├── fm.pp │ │ │ └── fm_gui.pp │ │ │ ├── openssh │ │ │ ├── client.pp │ │ │ ├── client_identities.pp │ │ │ └── server.pp │ │ │ ├── p2p │ │ │ ├── seeder.pp │ │ │ └── tracker.pp │ │ │ ├── pam │ │ │ └── mkhomedir.pp │ │ │ ├── postfix │ │ │ ├── client.pp │ │ │ └── relay.pp │ │ │ ├── s3 │ │ │ └── s3cmd.pp │ │ │ ├── software │ │ │ ├── allinea_licensing.pp │ │ │ ├── intel.pp │ │ │ └── permissions.pp │ │ │ ├── ssmtp │ │ │ └── client.pp │ │ │ ├── sudo │ │ │ └── base.pp │ │ │ ├── systemd │ │ │ └── base.pp │ │ │ ├── virt │ │ │ └── host.pp │ │ │ └── xorg │ │ │ ├── auto.pp │ │ │ └── nvidia.pp │ └── roles │ │ └── manifests │ │ └── init.pp ├── manifests │ └── cluster.pp ├── modules │ ├── admintemp │ │ ├── README.md │ │ ├── files │ │ │ └── manage-admin-temporaire │ │ └── manifests │ │ │ └── init.pp │ ├── allinea │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── licensing.pp │ │ │ └── licensing │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── alternatives │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ └── params.pp │ ├── aptcacherng │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── aufs │ │ ├── README.md │ │ ├── files │ │ │ └── mount-aufs-remote │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── base │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── boothttp │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── printconfig.pp │ │ └── templates │ │ │ ├── install_config.rhel6.erb │ │ │ └── install_config.rhel7.erb │ ├── boottftp │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── calibreperms │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── carboncrelay │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── cluster.pp │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── match.pp │ │ │ ├── params.pp │ │ │ ├── rewrite.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── config.cluster.erb │ │ │ ├── config.header.erb │ │ │ ├── config.match.erb │ │ │ └── config.rewrite.erb │ ├── cce │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ └── templates │ │ │ └── cce_conf.erb │ ├── ceph │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── posix │ │ │ ├── client.pp │ │ │ ├── client │ │ │ │ ├── install.pp │ │ │ │ ├── keys.pp │ │ │ │ ├── mounts.pp │ │ │ │ └── params.pp │ │ │ ├── key.pp │ │ │ └── mount.pp │ │ │ └── service.pp │ ├── certificates │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ └── params.pp │ ├── clara │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ ├── README │ │ │ ├── cluster_keyring.gpg │ │ │ └── cluster_keyring.secret.gpg.enc │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── clearsel │ │ ├── README.md │ │ └── manifests │ │ │ └── server.pp │ ├── clustershell │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── configsafety │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── destnode.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── conman │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── console_ipmi.pp │ │ │ ├── console_telnet.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ └── conman.conf.header.erb │ ├── consul │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── agent_json.erb │ │ │ └── services_json.erb │ ├── cpufreq │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── cpupower │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── ctorrent │ │ ├── .fixtures.yml │ │ ├── .yardopts │ │ ├── Rakefile │ │ ├── files │ │ │ └── ctorrent.init │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── init_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ └── site.pp │ │ │ │ └── modules │ │ │ │ │ └── ctorrent │ │ │ │ │ ├── files │ │ │ │ │ ├── manifests │ │ │ │ │ └── templates │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ └── ctorrent_conf.erb │ ├── ddnsrp │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── dns │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── client │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ ├── service.pp │ │ │ │ └── zone.pp │ │ └── templates │ │ │ ├── db_cluster.erb │ │ │ ├── named_conf_local.erb │ │ │ ├── named_conf_options.erb │ │ │ ├── resolv_conf.erb │ │ │ └── zone_decl.erb │ ├── environment │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ ├── 000_TTY.sh │ │ │ ├── 001_PS1.sh │ │ │ ├── 001_prompt_command.sh │ │ │ ├── bash.bashrc │ │ │ └── profile │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── 000_config.sh.erb │ │ │ ├── 010_aliases.sh.erb │ │ │ ├── 010_env_variables.sh.erb │ │ │ ├── motd.erb │ │ │ └── ssh_keys_autogen.sh.erb │ ├── environment_modules │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── fca │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── filesystem │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── directories.pp │ │ │ ├── directories │ │ │ └── config.pp │ │ │ ├── mounts.pp │ │ │ ├── mounts │ │ │ ├── config.pp │ │ │ └── points.pp │ │ │ ├── symlinks.pp │ │ │ └── symlinks │ │ │ └── config.pp │ ├── flexlm │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ └── params.pp │ ├── fusioninventory │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── glpicollector │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── gpfs │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── service.pp │ │ │ └── ssl_key.pp │ ├── hidepid │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── hpc_apt │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ └── init.pp │ ├── hpc_backup │ │ ├── .yardopts │ │ ├── README.md │ │ ├── lib │ │ │ ├── hpc_backup.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── hpc_backup_rsync_crons.rb │ │ │ │ └── hpc_backup_switches_crons.rb │ │ └── manifests │ │ │ ├── collect_dir.pp │ │ │ ├── collect_dir │ │ │ ├── config.pp │ │ │ └── params.pp │ │ │ ├── switches.pp │ │ │ └── switches │ │ │ ├── config.pp │ │ │ ├── cron.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── hpc_collectd │ │ ├── .yardopts │ │ ├── manifests │ │ │ └── plugin │ │ │ │ ├── slurmctld.pp │ │ │ │ └── slurmd.pp │ │ └── templates │ │ │ └── plugin │ │ │ └── slurmd.conf.erb │ ├── hpc_conman │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ └── conman_ha_notify.sh │ │ └── manifests │ │ │ ├── client.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── host_console.pp │ │ │ ├── params.pp │ │ │ └── role_consoles.pp │ ├── hpc_crontabs │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── hpc_ha │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ └── hpc_ha_notify_script.sh │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── rserv.pp │ │ │ ├── service.pp │ │ │ ├── vip.pp │ │ │ ├── vip_notify_script.pp │ │ │ └── vserv.pp │ │ └── templates │ │ │ └── vserv_notify_script.erb │ ├── hpc_nfs │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── ha_server.pp │ │ │ └── ha_server │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ └── templates │ │ │ ├── nfs_check_script.erb │ │ │ └── nfs_notify_script.erb │ ├── hpc_rsyslog │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── config.pp │ │ │ └── params.pp │ ├── hpc_user │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ └── root.pp │ ├── hpc_yum │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ └── init.pp │ ├── hpcconfig │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── apply.pp │ │ │ ├── apply │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ │ ├── params.pp │ │ │ ├── push.pp │ │ │ └── push │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── hpclib │ │ ├── .fixtures.yml │ │ ├── .yardopts │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── context.rb │ │ │ │ ├── network.rb │ │ │ │ ├── profiles.rb │ │ │ │ └── role.rb │ │ │ ├── hpc │ │ │ │ ├── dns.rb │ │ │ │ ├── ha.rb │ │ │ │ ├── hmap.rb │ │ │ │ ├── net.rb │ │ │ │ ├── nodeset.rb │ │ │ │ ├── profiles.rb │ │ │ │ └── source.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ ├── decrypt.rb │ │ │ │ ├── hpc_atoh.rb │ │ │ │ ├── hpc_dns_zones.rb │ │ │ │ ├── hpc_get_hosts_by_profile.rb │ │ │ │ ├── hpc_ha_vip_notify_scripts.rb │ │ │ │ ├── hpc_ha_vip_partner.rb │ │ │ │ ├── hpc_ha_vips.rb │ │ │ │ ├── hpc_ha_vservs.rb │ │ │ │ ├── hpc_has_profile.rb │ │ │ │ ├── hpc_hmap.rb │ │ │ │ ├── hpc_net_cidr.rb │ │ │ │ ├── hpc_net_ip_addrs.rb │ │ │ │ ├── hpc_nodeset_expand.rb │ │ │ │ ├── hpc_nodeset_fold.rb │ │ │ │ ├── hpc_roles_nodeset.rb │ │ │ │ ├── hpc_roles_single_nodeset.rb │ │ │ │ ├── hpc_shorewall_interfaces.rb │ │ │ │ └── hpc_source_file.rb │ │ ├── manifests │ │ │ ├── hpc_file.pp │ │ │ ├── print_config.pp │ │ │ ├── rsync_cron.pp │ │ │ ├── systemd_service.pp │ │ │ └── systemd_tmpfile.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── defines │ │ │ │ ├── printconfig_spec.rb │ │ │ │ ├── systemdservice_spec.rb │ │ │ │ └── systemdtmpfile_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ └── site.pp │ │ │ │ └── modules │ │ │ │ │ └── hpclib │ │ │ │ │ ├── manifests │ │ │ │ │ └── templates │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ │ ├── templates │ │ │ ├── conf_template.erb │ │ │ ├── sysctl.erb │ │ │ ├── systemd_service.erb │ │ │ └── systemd_tmpfile.erb │ │ └── tests │ │ │ └── init.pp │ ├── hpcstats │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── fsusage.pp │ │ │ ├── fsusage │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── jobstats.pp │ │ │ └── jobstats │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── icinga2 │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── admin.pp │ │ │ ├── config.pp │ │ │ ├── feature.pp │ │ │ ├── ibsurv.pp │ │ │ ├── ident.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── notif.pp │ │ │ ├── params.pp │ │ │ ├── savewtmp.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── api.erb │ │ │ └── zones.erb │ ├── infiniband │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── ipmi │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ └── templates │ │ │ └── modulesrhel.erb │ ├── iscdhcp │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── include.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── dhcp.conf.failover.erb │ │ │ ├── dhcp.conf.global.erb │ │ │ ├── dhcp.conf.include.erb │ │ │ └── dhcp.conf.sharednet.erb │ ├── kerberos │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── kernel │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── modprobe.pp │ │ │ ├── params.pp │ │ │ ├── sysctl.pp │ │ │ └── udev.pp │ ├── ldconfig │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── libvirt │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── network.pp │ │ │ ├── params.pp │ │ │ ├── pool.pp │ │ │ ├── secret.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── network.erb │ │ │ ├── pool.erb │ │ │ └── secret.erb │ ├── lmod │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── mariadb │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── debian.cnf.erb │ │ │ └── mysql-server.preseed.erb │ ├── megaraid │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── mlocate │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── multipath │ │ ├── .yardopts │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ └── templates │ │ │ └── multipath_conf.erb │ ├── munge │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ └── munge.key.enc │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── neos │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── web.pp │ │ │ └── web │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ └── templates │ │ │ ├── web_apache.conf.erb │ │ │ └── web_paraview_server.pvsc.erb │ ├── network │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ ├── ibmode │ │ │ └── killdhclient │ │ ├── lib │ │ │ ├── hpc_network.rb │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ └── hpc_network_implicit_ifaces.rb │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── ifupdown_part.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── print_config.pp │ │ │ └── service.pp │ │ └── templates │ │ │ ├── ifcfg.erb │ │ │ └── interfaces.erb │ ├── nfs │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── client │ │ │ │ └── mount.pp │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── server.pp │ │ │ ├── server │ │ │ │ ├── config.pp │ │ │ │ ├── export.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ │ ├── service.pp │ │ │ └── xfsquota.pp │ │ └── templates │ │ │ └── export_fragment.erb │ ├── nscang │ │ ├── .yardopts │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── client │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ └── templates │ │ │ ├── client.erb │ │ │ └── server.erb │ ├── opa │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── ff.pp │ │ │ ├── ff │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── fm.pp │ │ │ ├── fm │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ │ ├── fm_gui.pp │ │ │ ├── fm_gui │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ └── opafm.xml.erb │ ├── openldap │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ └── make_ldap_replica.sh │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ ├── replica.pp │ │ │ └── service.pp │ ├── openmpi │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── mca_param_file.pp │ │ │ └── params.pp │ ├── opensm │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── openssh │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ ├── README.md │ │ │ ├── id_rsa_root.enc │ │ │ ├── id_rsa_root.pub │ │ │ ├── ssh_host_dsa_key │ │ │ ├── ssh_host_dsa_key.enc │ │ │ ├── ssh_host_dsa_key.pub │ │ │ ├── ssh_host_ecdsa_key │ │ │ ├── ssh_host_ecdsa_key.enc │ │ │ ├── ssh_host_ecdsa_key.pub │ │ │ ├── ssh_host_ed25519_key │ │ │ ├── ssh_host_ed25519_key.enc │ │ │ ├── ssh_host_ed25519_key.pub │ │ │ ├── ssh_host_rsa_key │ │ │ ├── ssh_host_rsa_key.enc │ │ │ └── ssh_host_rsa_key.pub │ │ └── manifests │ │ │ ├── client.pp │ │ │ ├── client │ │ │ ├── config.pp │ │ │ ├── identity.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ ├── keys.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── opentracker │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ └── opentracker_conf.erb │ ├── pam │ │ ├── .yardopts │ │ ├── README.md │ │ ├── files │ │ │ └── pwquality │ │ ├── manifests │ │ │ ├── access.pp │ │ │ ├── access │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── limits.pp │ │ │ ├── limits │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ │ ├── mkhomedir.pp │ │ │ ├── mkhomedir │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── params.pp │ │ │ ├── pwquality.pp │ │ │ ├── pwquality │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── slurm.pp │ │ │ ├── slurm │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── sss.pp │ │ │ ├── sss │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── umask.pp │ │ │ └── umask │ │ │ │ ├── config.pp │ │ │ │ └── params.pp │ │ └── templates │ │ │ └── libpam-slurm.preseed.erb │ ├── postfix │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── alias.pp │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── proftpd │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── templates │ │ │ └── proftpd.conf.erb │ ├── pstate │ │ ├── README.md │ │ ├── files │ │ │ └── pstate_set.sh │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── puppet │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── reporting │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ └── init.pp │ ├── s3cmd │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── santricity │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── shorewall │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── interface.pp │ │ │ ├── masq.pp │ │ │ ├── params.pp │ │ │ ├── policy.pp │ │ │ ├── rule.pp │ │ │ ├── service.pp │ │ │ └── zone.pp │ │ └── templates │ │ │ ├── interfaces.header.erb │ │ │ ├── masq.header.erb │ │ │ ├── policy.header.erb │ │ │ ├── rules.header.erb │ │ │ └── zones.header.erb │ ├── singularity │ │ ├── README.md │ │ ├── files │ │ │ └── init │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── slurm │ │ ├── .yardopts │ │ ├── README.md │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── config.pp │ │ │ ├── ctld.pp │ │ │ ├── ctld │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ │ ├── dbd.pp │ │ │ ├── dbd │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ │ ├── exec.pp │ │ │ ├── exec │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ ├── params.pp │ │ │ │ └── service.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── spank_conf.pp │ │ └── templates │ │ │ └── spank_conf.erb │ ├── slurmutils │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── backupdb.pp │ │ │ ├── backupdb │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── genscripts.pp │ │ │ ├── genscripts │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── jobsubmit.pp │ │ │ ├── jobsubmit │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── pwmgt │ │ │ ├── ctld.pp │ │ │ ├── ctld │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── exec.pp │ │ │ └── exec │ │ │ │ ├── config.pp │ │ │ │ ├── install.pp │ │ │ │ └── params.pp │ │ │ ├── setupdb.pp │ │ │ ├── setupdb │ │ │ ├── config.pp │ │ │ ├── exec.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── setupwckeys.pp │ │ │ ├── setupwckeys │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ │ ├── syncusers.pp │ │ │ └── syncusers │ │ │ ├── config.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── slurmweb │ │ ├── .fixtures.yml │ │ ├── .yardopts │ │ ├── README.md │ │ ├── Rakefile │ │ ├── files │ │ │ └── racks.xml │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ └── spec │ │ │ ├── classes │ │ │ └── init_spec.rb │ │ │ ├── fixtures │ │ │ ├── manifests │ │ │ │ └── site.pp │ │ │ └── modules │ │ │ │ ├── slurmweb │ │ │ │ ├── files │ │ │ │ └── manifests │ │ │ │ └── stdlib │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ ├── ssmtp │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── sssd │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── sudo │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── systemd │ │ ├── .yardopts │ │ ├── README.md │ │ └── manifests │ │ │ ├── component │ │ │ └── param.pp │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── journald.pp │ │ │ ├── journald │ │ │ ├── config.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ │ ├── modules_load.pp │ │ │ ├── params.pp │ │ │ ├── unit_override.pp │ │ │ └── unit_state.pp │ ├── tftp │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── tmpfs │ │ ├── .yardopts │ │ ├── mount.pp │ │ └── tmpfs.pp │ ├── vnc │ │ ├── README.md │ │ └── manifests │ │ │ ├── server.pp │ │ │ └── server │ │ │ ├── install.pp │ │ │ └── params.pp │ ├── vtune │ │ ├── .yardopts │ │ └── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ ├── warewulf_nhc │ │ ├── .yardopts │ │ ├── README.md │ │ ├── Rakefile │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ └── params.pp │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── init_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── manifests │ │ │ │ │ └── site.pp │ │ │ │ └── modules │ │ │ │ │ ├── stdlib │ │ │ │ │ └── warewulf_nhc │ │ │ │ │ ├── manifests │ │ │ │ │ └── templates │ │ │ ├── spec.opts │ │ │ └── spec_helper.rb │ │ └── templates │ │ │ └── nhc_conf.erb │ └── xorg │ │ ├── .yardopts │ │ ├── manifests │ │ ├── config.pp │ │ ├── init.pp │ │ ├── install.pp │ │ ├── instance.pp │ │ ├── params.pp │ │ └── service.pp │ │ └── templates │ │ └── xorg.nvidia.conf.erb └── validate.sh └── scripts ├── debug-facts.sh ├── debug-hiera.sh ├── debug-yamllint.sh ├── encode-file.sh ├── hostlist ├── locate-param ├── reencode-file.sh └── sync-ssh-hostkeys.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.headache/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/.headache/CONFIG -------------------------------------------------------------------------------- /.headache/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/.headache/HEADER -------------------------------------------------------------------------------- /.headache/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/.headache/apply.sh -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/main.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/main.asc -------------------------------------------------------------------------------- /doc/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/metadata.yaml -------------------------------------------------------------------------------- /doc/scripts/build-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/scripts/build-gh-pages.sh -------------------------------------------------------------------------------- /doc/scripts/gen-ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/scripts/gen-ref.rb -------------------------------------------------------------------------------- /doc/src/arch.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch.asc -------------------------------------------------------------------------------- /doc/src/arch/clusterdef.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/clusterdef.asc -------------------------------------------------------------------------------- /doc/src/arch/deployment.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/deployment.asc -------------------------------------------------------------------------------- /doc/src/arch/deps.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/deps.asc -------------------------------------------------------------------------------- /doc/src/arch/encrypt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/encrypt.asc -------------------------------------------------------------------------------- /doc/src/arch/genericity.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/genericity.asc -------------------------------------------------------------------------------- /doc/src/arch/hiera.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/hiera.asc -------------------------------------------------------------------------------- /doc/src/arch/pattern.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/pattern.asc -------------------------------------------------------------------------------- /doc/src/arch/repo.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/repo.asc -------------------------------------------------------------------------------- /doc/src/arch/roles.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/arch/roles.asc -------------------------------------------------------------------------------- /doc/src/guidelines.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/guidelines.asc -------------------------------------------------------------------------------- /doc/src/img/components_genericity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/components_genericity.svg -------------------------------------------------------------------------------- /doc/src/img/config_push_apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/config_push_apply.svg -------------------------------------------------------------------------------- /doc/src/img/encrypted_files_deployment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/encrypted_files_deployment.svg -------------------------------------------------------------------------------- /doc/src/img/eyaml_keys_propagation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/eyaml_keys_propagation.svg -------------------------------------------------------------------------------- /doc/src/img/hiera_hash_multi-cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/hiera_hash_multi-cluster.svg -------------------------------------------------------------------------------- /doc/src/img/hiera_layers_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/hiera_layers_tree.svg -------------------------------------------------------------------------------- /doc/src/img/hieradata_params_autolookup_vs_profs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/hieradata_params_autolookup_vs_profs.svg -------------------------------------------------------------------------------- /doc/src/img/hieradata_params_workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/hieradata_params_workflow.svg -------------------------------------------------------------------------------- /doc/src/img/internal_keys_mutual-encryption.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/internal_keys_mutual-encryption.svg -------------------------------------------------------------------------------- /doc/src/img/internal_repository_combination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/internal_repository_combination.svg -------------------------------------------------------------------------------- /doc/src/img/modules_files_class_hierarchy_complex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/modules_files_class_hierarchy_complex.svg -------------------------------------------------------------------------------- /doc/src/img/modules_files_class_hierarchy_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/modules_files_class_hierarchy_simple.svg -------------------------------------------------------------------------------- /doc/src/img/net_topology-master_network-corresponding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/net_topology-master_network-corresponding.svg -------------------------------------------------------------------------------- /doc/src/img/node_role_profiles_assoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/node_role_profiles_assoc.svg -------------------------------------------------------------------------------- /doc/src/img/pattern_roles_profiles_hiera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/img/pattern_roles_profiles_hiera.svg -------------------------------------------------------------------------------- /doc/src/overview.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/doc/src/overview.asc -------------------------------------------------------------------------------- /doc/src/reference.asc: -------------------------------------------------------------------------------- 1 | = Reference API -------------------------------------------------------------------------------- /examples/modules/complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/README.md -------------------------------------------------------------------------------- /examples/modules/complex/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/client.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/client/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/client/config.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/client/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/client/install.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/client/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/client/params.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/server.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/server/config.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/server/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/server/install.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/server/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/server/params.pp -------------------------------------------------------------------------------- /examples/modules/complex/manifests/server/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/complex/manifests/server/service.pp -------------------------------------------------------------------------------- /examples/modules/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/README.md -------------------------------------------------------------------------------- /examples/modules/simple/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/manifests/config.pp -------------------------------------------------------------------------------- /examples/modules/simple/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/manifests/init.pp -------------------------------------------------------------------------------- /examples/modules/simple/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/manifests/install.pp -------------------------------------------------------------------------------- /examples/modules/simple/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/manifests/params.pp -------------------------------------------------------------------------------- /examples/modules/simple/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/modules/simple/manifests/service.pp -------------------------------------------------------------------------------- /examples/privatedata/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/privatedata/hiera.yaml -------------------------------------------------------------------------------- /examples/privatedata/puppet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/examples/privatedata/puppet.conf -------------------------------------------------------------------------------- /hieradata/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/hieradata/common.yaml -------------------------------------------------------------------------------- /hieradata/default/roles/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/hieradata/default/roles/batch.yaml -------------------------------------------------------------------------------- /hieradata/default/roles/cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/hieradata/default/roles/cn.yaml -------------------------------------------------------------------------------- /hieradata/default/roles/critical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/hieradata/default/roles/critical.yaml -------------------------------------------------------------------------------- /hieradata/default/roles/misc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/hieradata/default/roles/misc.yaml -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/.yardopts -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/README.md -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/access/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/access/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/apt/proxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/apt/proxy.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/auth/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/auth/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/auth/replica.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/auth/replica.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ceph/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ceph/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ceph/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ceph/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/clara/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/clara/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/clush/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/clush/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/conman/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/conman/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/conman/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/conman/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/consul/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/consul/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/consul/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/consul/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/db/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/db/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/dhcp/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/dhcp/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/dns/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/dns/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/dns/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/dns/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/firewall/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/firewall/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ftp/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ftp/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/gpfs/node.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/gpfs/node.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ha/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ha/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ha/role.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ha/role.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/hardware/ipmi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/hardware/ipmi.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/http/diskless.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/http/diskless.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/http/secret.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/http/secret.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/http/slurmweb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/http/slurmweb.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/http/system.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/http/system.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/infiniband/sm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/infiniband/sm.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/jobsched/exec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/jobsched/exec.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/log/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/log/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/log/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/log/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/metrics/relay.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/metrics/relay.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/neos/exec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/neos/exec.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/neos/submit.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/neos/submit.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/neos/web.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/neos/web.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/network/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/network/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/network/nat.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/network/nat.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/nfs/exports.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/nfs/exports.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/nfs/ha_server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/nfs/ha_server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/nfs/mounts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/nfs/mounts.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/nfs/xfsquota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/nfs/xfsquota.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ntp/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ntp/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ntp/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ntp/server.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/opa/ff.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/opa/ff.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/opa/fm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/opa/fm.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/opa/fm_gui.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/opa/fm_gui.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/p2p/seeder.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/p2p/seeder.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/p2p/tracker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/p2p/tracker.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/pam/mkhomedir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/pam/mkhomedir.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/postfix/relay.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/postfix/relay.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/s3/s3cmd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/s3/s3cmd.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/ssmtp/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/ssmtp/client.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/sudo/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/sudo/base.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/virt/host.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/virt/host.pp -------------------------------------------------------------------------------- /puppet-config/cluster/profiles/manifests/xorg/auto.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/cluster/profiles/manifests/xorg/auto.pp -------------------------------------------------------------------------------- /puppet-config/cluster/roles/manifests/init.pp: -------------------------------------------------------------------------------- 1 | class roles { 2 | hiera_include('profiles') 3 | } 4 | -------------------------------------------------------------------------------- /puppet-config/manifests/cluster.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/manifests/cluster.pp -------------------------------------------------------------------------------- /puppet-config/modules/admintemp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/admintemp/README.md -------------------------------------------------------------------------------- /puppet-config/modules/admintemp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/admintemp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/allinea/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/allinea/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/allinea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/allinea/README.md -------------------------------------------------------------------------------- /puppet-config/modules/allinea/manifests/licensing.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/allinea/manifests/licensing.pp -------------------------------------------------------------------------------- /puppet-config/modules/alternatives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/alternatives/README.md -------------------------------------------------------------------------------- /puppet-config/modules/alternatives/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/alternatives/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/alternatives/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/alternatives/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/alternatives/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/alternatives/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/README.md -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/aptcacherng/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aptcacherng/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/aufs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/README.md -------------------------------------------------------------------------------- /puppet-config/modules/aufs/files/mount-aufs-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/files/mount-aufs-remote -------------------------------------------------------------------------------- /puppet-config/modules/aufs/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/aufs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/aufs/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/aufs/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/aufs/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/aufs/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/base/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/base/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/base/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/base/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/base/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/base/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/base/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/base/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/README.md -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/boothttp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boothttp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/boottftp/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boottftp/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/boottftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boottftp/README.md -------------------------------------------------------------------------------- /puppet-config/modules/boottftp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boottftp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/boottftp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boottftp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/boottftp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/boottftp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/calibreperms/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/calibreperms/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/calibreperms/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/calibreperms/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/calibreperms/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/calibreperms/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/calibreperms/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/calibreperms/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/README.md -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/manifests/match.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/manifests/match.pp -------------------------------------------------------------------------------- /puppet-config/modules/carboncrelay/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/carboncrelay/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/cce/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/cce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/README.md -------------------------------------------------------------------------------- /puppet-config/modules/cce/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/cce/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/cce/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/cce/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/cce/templates/cce_conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cce/templates/cce_conf.erb -------------------------------------------------------------------------------- /puppet-config/modules/ceph/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/posix/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/posix/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/posix/key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/posix/key.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/posix/mount.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/posix/mount.pp -------------------------------------------------------------------------------- /puppet-config/modules/ceph/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ceph/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/certificates/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/certificates/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/certificates/README.md -------------------------------------------------------------------------------- /puppet-config/modules/certificates/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/certificates/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/certificates/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/certificates/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/certificates/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/certificates/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/clara/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/clara/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/README.md -------------------------------------------------------------------------------- /puppet-config/modules/clara/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/files/README -------------------------------------------------------------------------------- /puppet-config/modules/clara/files/cluster_keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/files/cluster_keyring.gpg -------------------------------------------------------------------------------- /puppet-config/modules/clara/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/clara/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/clara/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/clara/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clara/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/clearsel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clearsel/README.md -------------------------------------------------------------------------------- /puppet-config/modules/clearsel/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clearsel/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/clustershell/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clustershell/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/clustershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clustershell/README.md -------------------------------------------------------------------------------- /puppet-config/modules/clustershell/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clustershell/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/clustershell/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clustershell/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/clustershell/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/clustershell/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/configsafety/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/configsafety/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/configsafety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/configsafety/README.md -------------------------------------------------------------------------------- /puppet-config/modules/configsafety/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/configsafety/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/configsafety/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/configsafety/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/configsafety/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/configsafety/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/conman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/README.md -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/console_ipmi.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/console_ipmi.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/conman/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/conman/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/README.md -------------------------------------------------------------------------------- /puppet-config/modules/consul/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/consul/templates/agent_json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/consul/templates/agent_json.erb -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/README.md -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpufreq/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpufreq/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/cpupower/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/cpupower/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/.fixtures.yml -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/Rakefile -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/files/ctorrent.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/files/ctorrent.init -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/fixtures/modules/ctorrent/files: -------------------------------------------------------------------------------- 1 | ../../../../files -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/fixtures/modules/ctorrent/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/fixtures/modules/ctorrent/templates: -------------------------------------------------------------------------------- 1 | ../../../../templates -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format s --colour --backtrace 2 | -------------------------------------------------------------------------------- /puppet-config/modules/ctorrent/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ctorrent/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/README.md -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/ddnsrp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ddnsrp/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/README.md -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/client/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/client/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/client/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/client/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/manifests/server/zone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/manifests/server/zone.pp -------------------------------------------------------------------------------- /puppet-config/modules/dns/templates/db_cluster.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/templates/db_cluster.erb -------------------------------------------------------------------------------- /puppet-config/modules/dns/templates/resolv_conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/templates/resolv_conf.erb -------------------------------------------------------------------------------- /puppet-config/modules/dns/templates/zone_decl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/dns/templates/zone_decl.erb -------------------------------------------------------------------------------- /puppet-config/modules/environment/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/README.md -------------------------------------------------------------------------------- /puppet-config/modules/environment/files/000_TTY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/files/000_TTY.sh -------------------------------------------------------------------------------- /puppet-config/modules/environment/files/001_PS1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/files/001_PS1.sh -------------------------------------------------------------------------------- /puppet-config/modules/environment/files/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/files/bash.bashrc -------------------------------------------------------------------------------- /puppet-config/modules/environment/files/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/files/profile -------------------------------------------------------------------------------- /puppet-config/modules/environment/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/environment/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/environment/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/environment/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/environment/templates/motd.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment/templates/motd.erb -------------------------------------------------------------------------------- /puppet-config/modules/environment_modules/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment_modules/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/environment_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/environment_modules/README.md -------------------------------------------------------------------------------- /puppet-config/modules/fca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fca/README.md -------------------------------------------------------------------------------- /puppet-config/modules/fca/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fca/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/fca/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fca/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/fca/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fca/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/fca/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fca/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/filesystem/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/filesystem/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/filesystem/README.md -------------------------------------------------------------------------------- /puppet-config/modules/filesystem/manifests/mounts.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/filesystem/manifests/mounts.pp -------------------------------------------------------------------------------- /puppet-config/modules/filesystem/manifests/symlinks.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/filesystem/manifests/symlinks.pp -------------------------------------------------------------------------------- /puppet-config/modules/flexlm/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/flexlm/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/flexlm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/flexlm/README.md -------------------------------------------------------------------------------- /puppet-config/modules/flexlm/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/flexlm/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/flexlm/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/flexlm/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/fusioninventory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/fusioninventory/README.md -------------------------------------------------------------------------------- /puppet-config/modules/glpicollector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/glpicollector/README.md -------------------------------------------------------------------------------- /puppet-config/modules/glpicollector/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/glpicollector/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/README.md -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/gpfs/manifests/ssl_key.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/gpfs/manifests/ssl_key.pp -------------------------------------------------------------------------------- /puppet-config/modules/hidepid/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hidepid/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hidepid/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hidepid/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hidepid/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hidepid/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/hidepid/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hidepid/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/hidepid/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hidepid/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_apt/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_apt/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_apt/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_apt/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_apt/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_apt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_apt/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_backup/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_backup/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_backup/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_backup/lib/hpc_backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_backup/lib/hpc_backup.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpc_backup/manifests/switches.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_backup/manifests/switches.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_collectd/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_collectd/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_conman/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_conman/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_conman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_conman/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_conman/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_conman/manifests/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_conman/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_conman/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_crontabs/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_crontabs/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_crontabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_crontabs/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_crontabs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_crontabs/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_crontabs/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_crontabs/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/rserv.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/rserv.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/vip.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/vip.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_ha/manifests/vserv.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_ha/manifests/vserv.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_nfs/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_nfs/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_nfs/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_nfs/manifests/ha_server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_nfs/manifests/ha_server.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_rsyslog/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_rsyslog/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_rsyslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_rsyslog/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_rsyslog/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_rsyslog/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_user/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_user/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_user/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_user/manifests/root.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_user/manifests/root.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_yum/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_yum/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpc_yum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_yum/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpc_yum/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_yum/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpc_yum/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpc_yum/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpcconfig/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcconfig/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpcconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcconfig/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpcconfig/manifests/apply.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcconfig/manifests/apply.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpcconfig/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcconfig/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpcconfig/manifests/push.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcconfig/manifests/push.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/.fixtures.yml -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/Gemfile -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/Rakefile -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/facter/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/facter/context.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/facter/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/facter/network.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/facter/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/facter/profiles.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/facter/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/facter/role.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/dns.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/ha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/ha.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/hmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/hmap.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/net.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/nodeset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/nodeset.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/profiles.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/lib/hpc/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/lib/hpc/source.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/manifests/hpc_file.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/manifests/hpc_file.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/manifests/print_config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/manifests/print_config.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/manifests/rsync_cron.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/manifests/rsync_cron.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/metadata.json -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/spec/fixtures/modules/hpclib/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/spec/fixtures/modules/hpclib/templates: -------------------------------------------------------------------------------- 1 | ../../../../templates -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format s --colour --backtrace 2 | -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/templates/sysctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/templates/sysctl.erb -------------------------------------------------------------------------------- /puppet-config/modules/hpclib/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpclib/tests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpcstats/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcstats/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/hpcstats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcstats/README.md -------------------------------------------------------------------------------- /puppet-config/modules/hpcstats/manifests/fsusage.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcstats/manifests/fsusage.pp -------------------------------------------------------------------------------- /puppet-config/modules/hpcstats/manifests/jobstats.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/hpcstats/manifests/jobstats.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/README.md -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/admin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/admin.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/feature.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/feature.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/ibsurv.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/ibsurv.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/ident.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/ident.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/notif.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/notif.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/savewtmp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/savewtmp.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/templates/api.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/templates/api.erb -------------------------------------------------------------------------------- /puppet-config/modules/icinga2/templates/zones.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/icinga2/templates/zones.erb -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/README.md -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/infiniband/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/infiniband/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/README.md -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/ipmi/templates/modulesrhel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ipmi/templates/modulesrhel.erb -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/README.md -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/include.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/include.pp -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/iscdhcp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/iscdhcp/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/README.md -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/kerberos/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kerberos/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/README.md -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/modprobe.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/modprobe.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/sysctl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/sysctl.pp -------------------------------------------------------------------------------- /puppet-config/modules/kernel/manifests/udev.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/kernel/manifests/udev.pp -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/README.md -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/ldconfig/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ldconfig/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/README.md -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/network.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/network.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/pool.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/pool.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/secret.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/secret.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/templates/network.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/templates/network.erb -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/templates/pool.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/templates/pool.erb -------------------------------------------------------------------------------- /puppet-config/modules/libvirt/templates/secret.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/libvirt/templates/secret.erb -------------------------------------------------------------------------------- /puppet-config/modules/lmod/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/lmod/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/lmod/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/lmod/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/lmod/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/lmod/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/lmod/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/lmod/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/lmod/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/lmod/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/README.md -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/mariadb/templates/debian.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mariadb/templates/debian.cnf.erb -------------------------------------------------------------------------------- /puppet-config/modules/megaraid/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/megaraid/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/megaraid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/megaraid/README.md -------------------------------------------------------------------------------- /puppet-config/modules/megaraid/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/megaraid/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/megaraid/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/megaraid/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/megaraid/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/megaraid/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/mlocate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mlocate/README.md -------------------------------------------------------------------------------- /puppet-config/modules/mlocate/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mlocate/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/mlocate/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mlocate/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/mlocate/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mlocate/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/mlocate/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/mlocate/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/multipath/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/multipath/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/multipath/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/multipath/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/multipath/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/multipath/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/multipath/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/multipath/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/multipath/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/multipath/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/munge/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/munge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/README.md -------------------------------------------------------------------------------- /puppet-config/modules/munge/files/munge.key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/files/munge.key.enc -------------------------------------------------------------------------------- /puppet-config/modules/munge/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/munge/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/munge/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/munge/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/munge/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/munge/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/neos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/README.md -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/web.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/web.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/web/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/web/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/neos/manifests/web/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/neos/manifests/web/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/README.md -------------------------------------------------------------------------------- /puppet-config/modules/network/files/ibmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/files/ibmode -------------------------------------------------------------------------------- /puppet-config/modules/network/files/killdhclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/files/killdhclient -------------------------------------------------------------------------------- /puppet-config/modules/network/lib/hpc_network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/lib/hpc_network.rb -------------------------------------------------------------------------------- /puppet-config/modules/network/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/network/templates/ifcfg.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/templates/ifcfg.erb -------------------------------------------------------------------------------- /puppet-config/modules/network/templates/interfaces.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/network/templates/interfaces.erb -------------------------------------------------------------------------------- /puppet-config/modules/nfs/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/README.md -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/client/mount.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/client/mount.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server/export.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server/export.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/server/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/server/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/nfs/manifests/xfsquota.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nfs/manifests/xfsquota.pp -------------------------------------------------------------------------------- /puppet-config/modules/nscang/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nscang/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/nscang/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nscang/manifests/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/nscang/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nscang/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/nscang/templates/client.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nscang/templates/client.erb -------------------------------------------------------------------------------- /puppet-config/modules/nscang/templates/server.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/nscang/templates/server.erb -------------------------------------------------------------------------------- /puppet-config/modules/opa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/README.md -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/ff.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/ff.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/ff/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/ff/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/ff/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/ff/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/ff/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/ff/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm_gui.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm_gui.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm_gui/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm_gui/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/fm_gui/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/fm_gui/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/opa/templates/opafm.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opa/templates/opafm.xml.erb -------------------------------------------------------------------------------- /puppet-config/modules/openldap/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/openldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/README.md -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/replica.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/replica.pp -------------------------------------------------------------------------------- /puppet-config/modules/openldap/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openldap/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/openmpi/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openmpi/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/openmpi/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openmpi/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/openmpi/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openmpi/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/openmpi/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openmpi/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opensm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opensm/README.md -------------------------------------------------------------------------------- /puppet-config/modules/opensm/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opensm/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/opensm/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opensm/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opensm/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opensm/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opensm/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opensm/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/openssh/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/openssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/README.md -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/README.md -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/id_rsa_root.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/id_rsa_root.enc -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/id_rsa_root.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/id_rsa_root.pub -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/ssh_host_dsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/ssh_host_dsa_key -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/ssh_host_ecdsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/ssh_host_ecdsa_key -------------------------------------------------------------------------------- /puppet-config/modules/openssh/files/ssh_host_rsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/files/ssh_host_rsa_key -------------------------------------------------------------------------------- /puppet-config/modules/openssh/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/manifests/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/openssh/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/openssh/manifests/server/keys.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/openssh/manifests/server/keys.pp -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/README.md -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/opentracker/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/opentracker/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/pam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/README.md -------------------------------------------------------------------------------- /puppet-config/modules/pam/files/pwquality: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/files/pwquality -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/access.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/access.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/access/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/access/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/access/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/access/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/limits.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/limits.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/limits/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/limits/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/limits/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/limits/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/mkhomedir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/mkhomedir.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/pwquality.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/pwquality.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/slurm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/slurm.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/slurm/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/slurm/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/slurm/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/slurm/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/sss.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/sss.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/sss/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/sss/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/sss/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/sss/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/umask.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/umask.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/umask/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/umask/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/pam/manifests/umask/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pam/manifests/umask/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/postfix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/README.md -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/alias.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/alias.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/postfix/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/postfix/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/README.md -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/proftpd/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/proftpd/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/pstate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/README.md -------------------------------------------------------------------------------- /puppet-config/modules/pstate/files/pstate_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/files/pstate_set.sh -------------------------------------------------------------------------------- /puppet-config/modules/pstate/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/pstate/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/pstate/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/pstate/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/pstate/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/puppet/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/puppet/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/puppet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/puppet/README.md -------------------------------------------------------------------------------- /puppet-config/modules/puppet/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/puppet/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/puppet/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/puppet/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/puppet/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/puppet/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/reporting/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/reporting/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/reporting/README.md -------------------------------------------------------------------------------- /puppet-config/modules/reporting/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/reporting/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/README.md -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/s3cmd/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/s3cmd/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/santricity/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/santricity/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/santricity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/santricity/README.md -------------------------------------------------------------------------------- /puppet-config/modules/santricity/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/santricity/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/santricity/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/santricity/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/santricity/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/santricity/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/README.md -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/interface.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/interface.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/masq.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/masq.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/policy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/policy.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/rule.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/rule.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/shorewall/manifests/zone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/shorewall/manifests/zone.pp -------------------------------------------------------------------------------- /puppet-config/modules/singularity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/README.md -------------------------------------------------------------------------------- /puppet-config/modules/singularity/files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/files/init -------------------------------------------------------------------------------- /puppet-config/modules/singularity/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/singularity/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/singularity/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/singularity/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/singularity/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/slurm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/README.md -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/client.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/client.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/ctld.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/ctld.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/ctld/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/ctld/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/ctld/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/ctld/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/ctld/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/ctld/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/dbd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/dbd.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/dbd/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/dbd/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/dbd/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/dbd/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/dbd/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/dbd/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/dbd/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/dbd/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/exec.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/exec.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/exec/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/exec/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/exec/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/exec/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/exec/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/exec/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/exec/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/exec/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/manifests/spank_conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/manifests/spank_conf.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurm/templates/spank_conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurm/templates/spank_conf.erb -------------------------------------------------------------------------------- /puppet-config/modules/slurmutils/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmutils/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/slurmutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmutils/README.md -------------------------------------------------------------------------------- /puppet-config/modules/slurmutils/manifests/backupdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmutils/manifests/backupdb.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmutils/manifests/setupdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmutils/manifests/setupdb.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/.fixtures.yml -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/README.md -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/Rakefile -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/files/racks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/files/racks.xml -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/fixtures/modules/slurmweb/files: -------------------------------------------------------------------------------- 1 | ../../../../files -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/fixtures/modules/slurmweb/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/fixtures/modules/stdlib: -------------------------------------------------------------------------------- 1 | /usr/share/puppet/modules/stdlib -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format s --colour --backtrace 2 | -------------------------------------------------------------------------------- /puppet-config/modules/slurmweb/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/slurmweb/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet-config/modules/ssmtp/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ssmtp/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/ssmtp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ssmtp/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/ssmtp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ssmtp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/ssmtp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ssmtp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/ssmtp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/ssmtp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/sssd/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/sssd/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/sssd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/sssd/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/sssd/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/sssd/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sssd/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/sudo/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/sudo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/README.md -------------------------------------------------------------------------------- /puppet-config/modules/sudo/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/sudo/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/sudo/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/sudo/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/sudo/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/systemd/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/README.md -------------------------------------------------------------------------------- /puppet-config/modules/systemd/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/systemd/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/systemd/manifests/journald.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/manifests/journald.pp -------------------------------------------------------------------------------- /puppet-config/modules/systemd/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/systemd/manifests/unit_state.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/systemd/manifests/unit_state.pp -------------------------------------------------------------------------------- /puppet-config/modules/tftp/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/tftp/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/tftp/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/tftp/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/tftp/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/tftp/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tftp/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/tmpfs/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tmpfs/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/tmpfs/mount.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/tmpfs/mount.pp -------------------------------------------------------------------------------- /puppet-config/modules/tmpfs/tmpfs.pp: -------------------------------------------------------------------------------- 1 | # 2 | class tmpfs () {} 3 | -------------------------------------------------------------------------------- /puppet-config/modules/vnc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vnc/README.md -------------------------------------------------------------------------------- /puppet-config/modules/vnc/manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vnc/manifests/server.pp -------------------------------------------------------------------------------- /puppet-config/modules/vnc/manifests/server/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vnc/manifests/server/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/vnc/manifests/server/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vnc/manifests/server/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/vtune/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/vtune/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/vtune/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/vtune/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/vtune/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/vtune/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/vtune/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/README.md -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/Rakefile -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/fixtures/manifests/site.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/fixtures/modules/stdlib: -------------------------------------------------------------------------------- 1 | /usr/share/puppet/modules/stdlib -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/fixtures/modules/warewulf_nhc/manifests: -------------------------------------------------------------------------------- 1 | ../../../../manifests -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/fixtures/modules/warewulf_nhc/templates: -------------------------------------------------------------------------------- 1 | ../../../../templates -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --format s --colour --backtrace 2 | -------------------------------------------------------------------------------- /puppet-config/modules/warewulf_nhc/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/warewulf_nhc/spec/spec_helper.rb -------------------------------------------------------------------------------- /puppet-config/modules/xorg/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/.yardopts -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/config.pp -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/init.pp -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/install.pp -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/instance.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/instance.pp -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/params.pp -------------------------------------------------------------------------------- /puppet-config/modules/xorg/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/modules/xorg/manifests/service.pp -------------------------------------------------------------------------------- /puppet-config/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/puppet-config/validate.sh -------------------------------------------------------------------------------- /scripts/debug-facts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/debug-facts.sh -------------------------------------------------------------------------------- /scripts/debug-hiera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/debug-hiera.sh -------------------------------------------------------------------------------- /scripts/debug-yamllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/debug-yamllint.sh -------------------------------------------------------------------------------- /scripts/encode-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/encode-file.sh -------------------------------------------------------------------------------- /scripts/hostlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/hostlist -------------------------------------------------------------------------------- /scripts/locate-param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/locate-param -------------------------------------------------------------------------------- /scripts/reencode-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/reencode-file.sh -------------------------------------------------------------------------------- /scripts/sync-ssh-hostkeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/puppet-hpc/HEAD/scripts/sync-ssh-hostkeys.sh --------------------------------------------------------------------------------