├── BDD ├── annealer.erl ├── attrib.erl ├── authenticate.erl ├── barclamp.erl ├── bdd.erl ├── bdd.hrl ├── bdd_catchall.erl ├── bdd_clirat.erl ├── bdd_crud.erl ├── bdd_print.erl ├── bdd_restrat.erl ├── bdd_utils.erl ├── bdd_webrat.erl ├── consul.erl ├── crowbar.config ├── crowbar.erl ├── crowbar_rest.erl ├── dashboard.erl ├── dashboard_getready.erl ├── default.erl ├── deployment.erl ├── deployment_role.erl ├── dev.erl ├── dev.sample ├── devtool.config ├── digest_auth.erl ├── eurl.erl ├── example.config ├── features │ ├── annealer.feature │ ├── async.feature │ ├── attrib.feature │ ├── authenticate.feature │ ├── barclamp.feature │ ├── dashboard.feature │ ├── dashboard_getready.feature │ ├── deployment.feature │ ├── deployment_role.feature │ ├── documentation.feature │ ├── group.feature │ ├── hammer.feature │ ├── jig.feature │ ├── navigation.feature │ ├── network.feature │ ├── network_map.feature │ ├── network_range.feature │ ├── network_role.feature │ ├── network_router.feature │ ├── network_scaffolds.feature │ ├── node.feature │ ├── node_list.feature │ ├── node_role.feature │ ├── role.feature │ ├── scaffolds.feature │ ├── support.feature │ └── user.feature ├── group_cb.erl ├── hammer.erl ├── jig.erl ├── json.erl ├── linux_compile.sh ├── linux_sim.sh ├── linux_test.sh ├── local.config ├── network.erl ├── node.erl ├── node_role.erl ├── range.erl ├── role.erl ├── router.erl ├── run.erl ├── simple_auth.erl ├── support.erl ├── swift.erl ├── travis.config └── user_cb.erl ├── README.md ├── barclamps ├── chef.yml ├── consul.yml ├── crowbar.yml ├── deployer.yml ├── dhcp.yml ├── dns.yml ├── docker.yml ├── logging.yml ├── network.yml ├── ntp.yml ├── provisioner.yml ├── proxy.yml ├── puppet.yml ├── rabbitmq.yml ├── saltstack.yml ├── sysdig.yml └── test.yml ├── bin ├── barclamp_import ├── chef-cookbook-upload ├── ocb_console └── ocb_regen_docs ├── bootstrap ├── centos.lib.sh ├── chef-solo.rb ├── debian.lib.sh ├── fedora.lib.sh ├── opensuse.lib.sh ├── redhat.lib.sh └── ubuntu-12.04.lib.sh ├── chef ├── cookbooks │ ├── Berksfile │ ├── barclamp │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── libraries │ │ │ ├── barclamp_library.rb │ │ │ ├── disk.rb │ │ │ ├── ip.rb │ │ │ ├── nethelper.rb │ │ │ ├── nic.rb │ │ │ ├── reservations.rb │ │ │ └── test.rb │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── bind9 │ │ ├── Berksfile │ │ ├── README.rdoc │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── providers │ │ │ ├── host.rb │ │ │ └── net.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ └── install.rb │ │ ├── resources │ │ │ ├── host.rb │ │ │ └── net.rb │ │ └── templates │ │ │ └── default │ │ │ ├── consul-dns-server.json.erb │ │ │ ├── db.0.erb │ │ │ ├── db.127.erb │ │ │ ├── db.255.erb │ │ │ ├── db.erb │ │ │ ├── db.local.erb │ │ │ ├── named.conf.crowbar.erb │ │ │ ├── named.conf.default-zones.erb │ │ │ ├── named.conf.erb │ │ │ ├── redhat-sysconfig-named.erb │ │ │ ├── suse-sysconfig-named.erb │ │ │ └── zone.erb │ ├── bmc-nat │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── metadata.rb │ │ └── recipes │ │ │ ├── client.rb │ │ │ └── router.rb │ ├── consul │ │ ├── .coveralls.yml │ │ ├── .kitchen.yml │ │ ├── .rspec │ │ ├── .rubocop.yml │ │ ├── .rubocop_todo.yml │ │ ├── .tailor │ │ ├── .travis.yml │ │ ├── Berksfile │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile │ │ ├── Thorfile │ │ ├── Vagrantfile │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── providers │ │ │ └── service_def.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── install.rb │ │ │ ├── start-service.rb │ │ │ └── ui.rb │ │ ├── resources │ │ │ └── service_def.rb │ │ ├── spec │ │ │ ├── spec_helper.rb │ │ │ ├── support │ │ │ │ └── matchers.rb │ │ │ └── unit │ │ │ │ ├── attributes │ │ │ │ └── default_spec.rb │ │ │ │ └── recipes │ │ │ │ ├── default_spec.rb │ │ │ │ ├── install_binary_spec.rb │ │ │ │ └── install_source_spec.rb │ │ ├── templates │ │ │ └── default │ │ │ │ ├── acl-master-token.erb │ │ │ │ ├── consul-init.erb │ │ │ │ ├── sv-consul-log-run.erb │ │ │ │ └── sv-consul-run.erb │ │ └── test │ │ │ └── integration │ │ │ ├── default │ │ │ └── serverspec │ │ │ │ ├── localhost │ │ │ │ └── consul_spec.rb │ │ │ │ └── spec_helper.rb │ │ │ └── ui │ │ │ └── serverspec │ │ │ ├── localhost │ │ │ └── consul_spec.rb │ │ │ └── spec_helper.rb │ ├── crowbar-bootstrap │ │ ├── Berksfile │ │ ├── Gemfile │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── files │ │ │ └── default │ │ │ │ └── gopath.sh │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── boot.rb │ │ │ ├── cleanup.rb │ │ │ ├── consul-post.rb │ │ │ ├── consul.rb │ │ │ ├── crowbar-user.rb │ │ │ ├── dns-mgmt-build.rb │ │ │ ├── gemstuff.rb │ │ │ ├── go.rb │ │ │ ├── goiardi-build.rb │ │ │ ├── goiardi.rb │ │ │ ├── postgresql.rb │ │ │ ├── sledgehammer.rb │ │ │ ├── ssh.rb │ │ │ ├── sws-build.rb │ │ │ └── wsman.rb │ │ └── templates │ │ │ └── default │ │ │ ├── crowbar-database.json.erb │ │ │ ├── crowbar.list.erb │ │ │ ├── crowbar.repo.erb │ │ │ ├── crowbar_sudoer.erb │ │ │ ├── environment.erb │ │ │ ├── gemrc.erb │ │ │ ├── goiardi.conf.erb │ │ │ ├── goiardi.init.erb │ │ │ ├── goiardi.service.erb │ │ │ ├── knife.rb.erb │ │ │ ├── pg_hba.conf.erb │ │ │ ├── postgresql.conf.erb │ │ │ ├── proxy.sh.erb │ │ │ ├── required_pkgs.erb │ │ │ ├── ssh_config.erb │ │ │ ├── sshd_config.erb │ │ │ └── yum.conf.erb │ ├── crowbar-hacks │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ └── solo-saver.rb │ │ └── templates │ │ │ └── default │ │ │ └── logrotate.erb │ ├── crowbar-squid │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── client.rb │ │ │ └── server.rb │ │ └── templates │ │ │ └── default │ │ │ ├── consul-squid-server.json.erb │ │ │ ├── environment.erb │ │ │ ├── proxy.sh.erb │ │ │ ├── squid.conf.erb │ │ │ └── yum.conf.erb │ ├── crowbar │ │ ├── Berksfile │ │ ├── Gemfile │ │ ├── README.md │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── api_server.rb │ │ │ ├── dns_mgmt_server.rb │ │ │ └── job_runner.rb │ │ └── templates │ │ │ └── default │ │ │ ├── consul-api-server.json.erb │ │ │ ├── consul-dns-mgmt-server.json.erb │ │ │ ├── consul-job-runner.json.erb │ │ │ ├── dns-mgmt-cert.conf.erb │ │ │ ├── dns-mgmt-init.erb │ │ │ └── dns-mgmt.conf.erb │ ├── dhcp │ │ ├── Berksfile │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── files │ │ │ └── default │ │ │ │ ├── dhcpd.h │ │ │ │ └── discover.c │ │ ├── metadata.rb │ │ ├── providers │ │ │ ├── host.rb │ │ │ └── subnet.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── install.rb │ │ │ └── update_nodes.rb │ │ ├── resources │ │ │ ├── group.rb │ │ │ ├── host.rb │ │ │ └── subnet.rb │ │ └── templates │ │ │ └── default │ │ │ ├── dhcp3-server.erb │ │ │ ├── dhcpd.conf.erb │ │ │ ├── host.conf.erb │ │ │ ├── redhat-sysconfig-dhcpd.erb │ │ │ ├── subnet.conf.erb │ │ │ └── suse-sysconfig-dhcpd.erb │ ├── erlang │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── metadata.json │ │ └── recipes │ │ │ ├── default.rb │ │ │ ├── esl.rb │ │ │ ├── package.rb │ │ │ └── source.rb │ ├── kernel-panic │ │ ├── Berksfile │ │ ├── README.rdoc │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── logging │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── client.rb │ │ │ ├── default.rb │ │ │ └── server.rb │ │ └── templates │ │ │ └── default │ │ │ ├── rsyslog.client.erb │ │ │ └── rsyslog.server.erb │ ├── network │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── recipes │ │ │ ├── default.rb │ │ │ ├── lldpd.rb │ │ │ └── switch_config.rb │ │ └── templates │ │ │ └── default │ │ │ ├── interfaces.erb │ │ │ ├── redhat-cfg.erb │ │ │ ├── redhat-route-cfg.erb │ │ │ ├── redhat-rule-cfg.erb │ │ │ ├── rt_tables.erb │ │ │ ├── suse-cfg.erb │ │ │ ├── suse-route.erb │ │ │ └── switch_config.erb │ ├── ntp │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── libraries │ │ │ └── eval.rb │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ └── templates │ │ │ └── default │ │ │ ├── consul-ntp-server.json.erb │ │ │ ├── ntp.conf.erb │ │ │ └── openntpd.conf.erb │ ├── ohai │ │ ├── Berksfile │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── files │ │ │ └── default │ │ │ │ └── plugins │ │ │ │ ├── README │ │ │ │ └── crowbar.rb │ │ ├── metadata.rb │ │ └── recipes │ │ │ └── default.rb │ ├── provisioner │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── files │ │ │ └── default │ │ │ │ ├── chef-client │ │ │ │ ├── localboot.default │ │ │ │ └── start-up.sh │ │ ├── metadata.rb │ │ ├── providers │ │ │ ├── bootfile.rb │ │ │ ├── coreos.rb │ │ │ ├── debian.rb │ │ │ ├── esxi.rb │ │ │ ├── fedora.rb │ │ │ ├── fuel.rb │ │ │ ├── redhat.rb │ │ │ └── xenserver.rb │ │ ├── recipes │ │ │ ├── docker_setup.rb │ │ │ ├── make_ssh_keys.rb │ │ │ ├── servers.rb │ │ │ ├── setup_base_images.rb │ │ │ └── update_nodes.rb │ │ ├── resources │ │ │ ├── bootfile.rb │ │ │ ├── coreos.rb │ │ │ ├── debian.rb │ │ │ ├── esxi.rb │ │ │ ├── fedora.rb │ │ │ ├── fuel.rb │ │ │ ├── redhat.rb │ │ │ └── xenserver.rb │ │ └── templates │ │ │ └── default │ │ │ ├── authorized_keys.erb │ │ │ ├── autoyast.xml.erb │ │ │ ├── cloud-config.yaml.erb │ │ │ ├── compute.ks.erb │ │ │ ├── compute.ks.fedora-20.erb │ │ │ ├── compute.ks.xen.erb │ │ │ ├── consul-provisioner-server.json.erb │ │ │ ├── control.sh.erb │ │ │ ├── coreos-bootstrap-install.sh.erb │ │ │ ├── crowbar_join.sh.erb │ │ │ ├── default.elilo.erb │ │ │ ├── default.erb │ │ │ ├── default.local.erb │ │ │ ├── docker-node.sh.erb │ │ │ ├── ks.cfg.esxi.erb │ │ │ ├── ks.cfg.fuel.erb │ │ │ ├── net-post-install.sh.erb │ │ │ ├── net_seed.erb │ │ │ ├── sws-init.erb │ │ │ ├── tftp.service.erb │ │ │ ├── tftpd-ubuntu.erb │ │ │ ├── xen-post-install.sh.erb │ │ │ └── xinetd.tftp.erb │ ├── rabbitmq │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── libraries │ │ │ ├── default.rb │ │ │ └── matchers.rb │ │ ├── metadata.json │ │ ├── providers │ │ │ ├── cluster.rb │ │ │ ├── parameter.rb │ │ │ ├── plugin.rb │ │ │ ├── policy.rb │ │ │ ├── user.rb │ │ │ └── vhost.rb │ │ ├── recipes │ │ │ ├── cluster.rb │ │ │ ├── community_plugins.rb │ │ │ ├── consul.rb │ │ │ ├── default.rb │ │ │ ├── mgmt_console.rb │ │ │ ├── plugin_management.rb │ │ │ ├── policy_management.rb │ │ │ ├── user_management.rb │ │ │ └── virtualhost_management.rb │ │ ├── resources │ │ │ ├── cluster.rb │ │ │ ├── parameter.rb │ │ │ ├── plugin.rb │ │ │ ├── policy.rb │ │ │ ├── user.rb │ │ │ └── vhost.rb │ │ └── templates │ │ │ └── default │ │ │ ├── consul-rabbitmq-server.json.erb │ │ │ ├── default.rabbitmq-server.erb │ │ │ ├── doterlang.cookie.erb │ │ │ ├── rabbitmq-env.conf.erb │ │ │ ├── rabbitmq.config.erb │ │ │ └── rabbitmq.upstart.conf.erb │ ├── repos │ │ ├── Berksfile │ │ ├── chefignore │ │ ├── files │ │ │ └── default │ │ │ │ └── apt.conf │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ └── templates │ │ │ ├── default │ │ │ ├── 10-crowbar-extra.list.erb │ │ │ ├── apt-proxy.erb │ │ │ ├── crowbar-xtras.repo.erb │ │ │ ├── environment.erb │ │ │ ├── gemrc.erb │ │ │ ├── proxy.sh.erb │ │ │ └── yum-base.repo.erb │ │ │ ├── ubuntu-10.10 │ │ │ └── 00-base.list.erb │ │ │ ├── ubuntu-11.04 │ │ │ └── 00-base.list.erb │ │ │ ├── ubuntu-11.10 │ │ │ └── 00-base.list.erb │ │ │ ├── ubuntu-12.04 │ │ │ └── 00-base.list.erb │ │ │ ├── ubuntu-14.04 │ │ │ └── 00-base.list.erb │ │ │ └── ubuntu-15.04 │ │ │ └── 00-base.list.erb │ ├── resolver │ │ ├── Berksfile │ │ ├── README.md │ │ ├── attributes │ │ │ └── default.rb │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── recipes │ │ │ └── default.rb │ │ └── templates │ │ │ └── default │ │ │ └── resolv.conf.erb │ └── utils │ │ ├── Berksfile │ │ ├── README.rdoc │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── providers │ │ └── line.rb │ │ ├── recipes │ │ └── default.rb │ │ └── resources │ │ └── line.rb └── roles │ ├── bmc-nat-client.rb │ ├── bmc-nat-router.rb │ ├── consul.rb │ ├── crowbar-api_server.rb │ ├── crowbar-build-root-key.rb │ ├── crowbar-job_runner.rb │ ├── deployer-client.rb │ ├── dhcp-database.rb │ ├── dhcp-server.rb │ ├── dns-bind_server.rb │ ├── dns-client.rb │ ├── dns-mgmt_server.rb │ ├── logging-client.rb │ ├── logging-server.rb │ ├── network-lldpd.rb │ ├── ntp-client.rb │ ├── ntp-server.rb │ ├── provisioner-base-images.rb │ ├── provisioner-databse.rb │ ├── provisioner-docker-setup.rb │ ├── provisioner-repos.rb │ ├── provisioner-server.rb │ ├── proxy-client.rb │ ├── proxy-server.rb │ ├── rabbitmq-server.rb │ ├── test-multi-head.rb │ ├── test-multi-rest.rb │ └── test-single.rb ├── clients ├── ansible │ └── inventory.py └── python │ ├── api_bindings │ ├── cb2_api │ │ ├── __init__.py │ │ ├── api.py │ │ ├── doc │ │ │ └── readme.txt │ │ ├── endpoint.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ └── new_node_capability.py │ │ ├── objects │ │ │ ├── DHCPDatabase.py │ │ │ ├── __init__.py │ │ │ ├── apiobject.py │ │ │ ├── attribute.py │ │ │ ├── barclamp.py │ │ │ ├── deployment.py │ │ │ ├── deployment_role.py │ │ │ ├── group.py │ │ │ ├── interfaces.py │ │ │ ├── jig.py │ │ │ ├── node.py │ │ │ ├── node_role.py │ │ │ └── user.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── lists_and_gets.py │ └── setup.py │ └── login.py ├── config ├── deployments │ └── system-ipmi-config.json.example ├── filters │ └── admin-default.json.example ├── networks │ ├── network.json.example │ ├── the_admin.json │ └── the_bmc.json ├── networks_to_join.json ├── services │ ├── amqp-internal.json │ ├── crowbar-api.json │ ├── crowbar-job_runner.json │ ├── dhcp-internal.json │ ├── dns-bind-internal.json │ ├── dns-mgmt-internal.json │ ├── examples │ │ ├── README.txt │ │ ├── amqp-external.json.example │ │ ├── amqp-internal.json.example │ │ ├── dhcp-external.json.example │ │ ├── dhcp-internal.json.example │ │ ├── dns-bind-external.json.example │ │ ├── dns-bind-internal.json.example │ │ ├── dns-mgmt-external.json.example │ │ ├── dns-mgmt-internal.json.example │ │ ├── dns-powerdns-external.json.example │ │ ├── ntp-external.json.example │ │ ├── ntp-internal-with-parent.json.example │ │ ├── ntp-internal.json.example │ │ ├── provisioner-external.json.example │ │ ├── provisioner-internal.json.example │ │ ├── proxy-external.json.example │ │ └── proxy-internal.json.example │ ├── ntp-internal.json │ ├── provisioner-internal.json │ └── proxy-internal.json ├── ssh_keys │ └── my.key.example └── users │ ├── crowbar.json │ └── user.json.example ├── doc ├── README.md ├── deployment-guide │ ├── Install-CentOS-RHEL-6.6-AdminNode.md │ ├── README.md │ ├── accessing_bmcs.md │ ├── adding-operating-systems.md │ ├── admin_port_maps.md │ ├── advanced-deployment.md │ ├── attaching-to-bmc.md │ ├── directory-layout.md │ ├── dns-subsystem.md │ ├── external-services.md │ ├── faq.md │ ├── node_registration.md │ └── troubleshooting │ │ └── README.md ├── development-guides │ ├── README.md │ ├── api │ │ ├── README.md │ │ ├── attrib.md │ │ ├── barclamp.md │ │ ├── deployment.md │ │ ├── deployment_role.md │ │ ├── dns_name_filter.md │ │ ├── group.md │ │ ├── ignore_me.md │ │ ├── interfaces.md │ │ ├── jig.md │ │ ├── network.md │ │ ├── node.md │ │ ├── node_role.md │ │ ├── range.md │ │ ├── role.md │ │ ├── router.md │ │ ├── run.md │ │ ├── status.md │ │ ├── test.md │ │ └── user.md │ ├── barclamps │ │ ├── README.md │ │ └── new_barclamp.md │ ├── contributing-code.md │ ├── contributing.md │ ├── database.md │ ├── dev-systems │ │ ├── README.md │ │ ├── build_sledgehammer.md │ │ ├── dev-openSUSE-images.md │ │ ├── dev-ubuntu-12.04.03.md │ │ ├── dev-vm-SUSE.md │ │ ├── dev-vm-Ubuntu.md │ │ ├── dev-vm.md │ │ ├── docker-TLDR.md │ │ ├── docker-admin.md │ │ ├── docker-slaves.md │ │ ├── kvm-admin.md │ │ ├── kvm-fedora.md │ │ ├── kvm-slaves.md │ │ ├── kvm-ubuntu.md │ │ ├── proxy-cache.md │ │ ├── samba_cntlm.md │ │ └── virtualbox.md │ ├── doc-format-guides │ │ ├── README.md │ │ ├── formatting.md │ │ └── topic.md │ ├── jigs │ │ ├── README.md │ │ ├── chef.md │ │ ├── crowbar_jig_classes.dia │ │ ├── crowbar_jig_classes.png │ │ ├── noop.md │ │ └── script.md │ ├── model │ │ ├── 00100_CB2_Design_Topics.md │ │ ├── README.md │ │ ├── attrib.md │ │ ├── barclamp.md │ │ ├── crowbar_model.dia │ │ ├── crowbar_model.md │ │ ├── crowbar_model.png │ │ ├── crowbar_model_discussion.dia │ │ ├── crowbar_model_discussion.png │ │ ├── deployment.md │ │ ├── deployment_role.md │ │ ├── dns_name_filter.md │ │ ├── group.md │ │ ├── model.md │ │ ├── network.md │ │ ├── node.md │ │ ├── node_role.md │ │ ├── node_role_states.dia │ │ ├── node_role_states.png │ │ ├── role.md │ │ ├── run.md │ │ └── user.md │ ├── provisioning.md │ ├── testing │ │ ├── README.md │ │ ├── bdd │ │ │ ├── README.md │ │ │ ├── dsl.md │ │ │ ├── internals │ │ │ │ ├── README.md │ │ │ │ ├── config.md │ │ │ │ ├── json.md │ │ │ │ └── rest.md │ │ │ ├── rats │ │ │ │ ├── README.md │ │ │ │ └── clirat.md │ │ │ ├── steps.md │ │ │ ├── steps_rest.md │ │ │ └── tips.md │ │ └── simulator.md │ ├── ui │ │ ├── README.md │ │ ├── localization.md │ │ ├── navigation.md │ │ ├── role.md │ │ └── tips_and_tricks.md │ └── workflow │ │ ├── README.md │ │ ├── dev-build-sledgehammer.md │ │ ├── knife-config.md │ │ ├── online-install.md │ │ ├── package-updates.md │ │ ├── sledgehammer-hooks.md │ │ └── smoketesting.md ├── faq │ ├── README.md │ ├── UEFI.md │ ├── do_you_have_a_question.md │ └── install-faq.md ├── internals │ ├── ActiveRecord.html │ ├── ActiveRecord │ │ └── RecordNotFound.html │ ├── ApiHelper.html │ ├── ApiHelper │ │ ├── ClassMethods.html │ │ └── InstanceMethods.html │ ├── ApplicationController.html │ ├── ApplicationHelper.html │ ├── Attrib.html │ ├── Attrib │ │ ├── AttribReadOnly.html │ │ └── AttribValidationFailed.html │ ├── AttribsController.html │ ├── AvailableHammer.html │ ├── AvailableHammersController.html │ ├── Barclamp.html │ ├── BarclampChef │ │ ├── Client.html │ │ ├── Jig.html │ │ ├── Server.html │ │ ├── Solo.html │ │ └── SoloJig.html │ ├── BarclampConsul │ │ └── Consul.html │ ├── BarclampCrowbar │ │ ├── Attrib │ │ │ └── NumberOfDrives.html │ │ ├── HardwareConfigured.html │ │ ├── InstalledNode.html │ │ ├── Jig.html │ │ ├── ManagedNode.html │ │ └── RoleProvidedJig.html │ ├── BarclampDhcp │ │ ├── Database.html │ │ └── Service.html │ ├── BarclampDns │ │ ├── Client.html │ │ ├── Database.html │ │ ├── MgmtService.html │ │ ├── MgmtShimCrowbarDns.html │ │ ├── Server.html │ │ └── Service.html │ ├── BarclampNetwork │ │ ├── Attrib │ │ │ └── Switches.html │ │ ├── Lldpd.html │ │ ├── Role.html │ │ └── Server.html │ ├── BarclampNtp │ │ ├── Server.html │ │ └── Service.html │ ├── BarclampProvisioner │ │ ├── BaseImages.html │ │ ├── Database.html │ │ ├── DhcpDatabase.html │ │ ├── DhcpsController.html │ │ ├── DockerSetup.html │ │ ├── OsInstall.html │ │ └── Server.html │ ├── BarclampPuppet │ │ ├── AgentSa.html │ │ └── SaJig.html │ ├── BarclampSaltstack │ │ ├── Master.html │ │ └── Minion.html │ ├── BarclampTest │ │ ├── Admin.html │ │ ├── Async.html │ │ ├── Client.html │ │ ├── Discovery.html │ │ ├── Event.html │ │ ├── Jig.html │ │ ├── Role.html │ │ └── Server.html │ ├── BarclampsController.html │ ├── CrowbarController.html │ ├── CrowbarException.html │ ├── CrowbarValidator.html │ ├── DashboardController.html │ ├── Deployment.html │ ├── DeploymentRole.html │ ├── DeploymentRolesController.html │ ├── DeploymentsController.html │ ├── Doc.html │ ├── DocsController.html │ ├── Group.html │ ├── GroupsController.html │ ├── Hammer.html │ ├── HammersController.html │ ├── IP.html │ ├── IP │ │ ├── IP4.html │ │ └── IP6.html │ ├── InterfacesController.html │ ├── Jig.html │ ├── JigsController.html │ ├── Nav.html │ ├── Network.html │ ├── NetworkAllocation.html │ ├── NetworkRange.html │ ├── NetworkRangesController.html │ ├── NetworkRouter.html │ ├── NetworkRoutersController.html │ ├── NetworksController.html │ ├── Node.html │ ├── NodeRole.html │ ├── NodeRole │ │ ├── InvalidState.html │ │ ├── InvalidTransition.html │ │ └── MissingJig.html │ ├── NodeRoleAttribLink.html │ ├── NodeRolesController.html │ ├── NodesController.html │ ├── NoopJig.html │ ├── Role.html │ ├── Role │ │ ├── CONFLICTS.html │ │ ├── MISSING_DEP.html │ │ └── MISSING_JIG.html │ ├── RoleRequire.html │ ├── RoleRequireAttrib.html │ ├── RolesController.html │ ├── Run.html │ ├── RunsController.html │ ├── Scaffolds │ │ ├── AttribsController.html │ │ ├── AvailableHammersController.html │ │ ├── BarclampsController.html │ │ ├── DeploymentRolesController.html │ │ ├── DeploymentsController.html │ │ ├── DocsController.html │ │ ├── GroupsController.html │ │ ├── HammersController.html │ │ ├── JigsController.html │ │ ├── NavsController.html │ │ ├── NetworkAllocationsController.html │ │ ├── NetworkRangesController.html │ │ ├── NetworkRoutersController.html │ │ ├── NetworksController.html │ │ ├── NodeRoleAttribLinksController.html │ │ ├── NodeRolesController.html │ │ ├── NodesController.html │ │ ├── RoleRequiresController.html │ │ ├── RolesController.html │ │ └── RunsController.html │ ├── SecureShellHammer.html │ ├── Service.html │ ├── SupportController.html │ ├── User.html │ ├── UsersController.html │ ├── _index.html │ ├── class_list.html │ ├── css │ │ ├── common.css │ │ ├── full_list.css │ │ └── style.css │ ├── file.README.html │ ├── file_list.html │ ├── frames.html │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── full_list.js │ │ └── jquery.js │ ├── method_list.html │ └── top-level-namespace.html ├── licenses │ ├── README.md │ └── crowbar │ │ ├── README.md │ │ ├── berkshelf-2.md │ │ ├── deployer.md │ │ ├── dns.md │ │ ├── licenses.md │ │ ├── logging.md │ │ ├── network.md │ │ ├── ntp.md │ │ ├── provisioner.md │ │ └── test.md ├── principles │ ├── README.md │ ├── attribute_injection.md │ ├── attribute_injection.png │ ├── concepts-engine.png │ ├── concepts.md │ ├── concepts.png │ ├── crowbar_engine.png │ ├── emergent_services.md │ ├── emergent_services.png │ ├── heterogenous-os-support.md │ ├── late_binding.md │ ├── ready_state.md │ ├── simulated_annealing.md │ └── simulated_annealing.png └── user-guide │ └── README.md ├── etc └── init.d │ └── crowbar ├── puppet ├── .gitignore ├── modules │ └── stdlib │ │ └── manifests │ │ └── init.pp └── roles │ ├── puppet-test │ └── site.pp │ └── runner ├── rails ├── .gitignore ├── .rspec ├── .simplecov ├── Gemfile ├── NOTES.rspec ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ ├── .gitkeep │ │ │ ├── barclamp.png │ │ │ ├── brightlayout │ │ │ │ ├── crowbar.png │ │ │ │ └── crowbar_old.png │ │ │ ├── bunny.png │ │ │ ├── controls.png │ │ │ ├── crowbar-logo.png │ │ │ ├── dell_blue_logo.jpg │ │ │ ├── dell_tagline_logo.jpg │ │ │ ├── failbunny.png │ │ │ ├── icons │ │ │ │ ├── add.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── bunny.ico │ │ │ │ ├── delete.png │ │ │ │ ├── help.png │ │ │ │ ├── led │ │ │ │ │ ├── active.png │ │ │ │ │ ├── blocked.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── idle.png │ │ │ │ │ ├── off.png │ │ │ │ │ ├── proposed.png │ │ │ │ │ ├── reserved.png │ │ │ │ │ ├── todo.png │ │ │ │ │ ├── transition-spin.png │ │ │ │ │ ├── transition-spin.psd │ │ │ │ │ ├── transition.png │ │ │ │ │ └── wait.png │ │ │ │ ├── link.png │ │ │ │ ├── magnifier.png │ │ │ │ ├── monitor.png │ │ │ │ ├── server_add.png │ │ │ │ ├── server_delete.png │ │ │ │ ├── toggle-off.png │ │ │ │ └── toggle-on.png │ │ │ ├── internet_explorer │ │ │ │ ├── borderBottomCenter.png │ │ │ │ ├── borderBottomLeft.png │ │ │ │ ├── borderBottomRight.png │ │ │ │ ├── borderMiddleLeft.png │ │ │ │ ├── borderMiddleRight.png │ │ │ │ ├── borderTopCenter.png │ │ │ │ ├── borderTopLeft.png │ │ │ │ └── borderTopRight.png │ │ │ ├── layout │ │ │ │ ├── bunny.png │ │ │ │ ├── crowbar.png │ │ │ │ └── dell.png │ │ │ ├── loading.gif │ │ │ ├── loading_background.png │ │ │ ├── mesa.png │ │ │ ├── ocb_logo.png │ │ │ ├── openCrowbarLogo.psd │ │ │ └── overlay.png │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── codemirror │ │ │ │ ├── codemirror.js │ │ │ │ └── javascript.js │ │ │ ├── controls.js │ │ │ ├── crowbar.js │ │ │ ├── doc.js │ │ │ ├── drag_drop_helpers.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── event_helpers.js │ │ │ ├── html5.js │ │ │ ├── infovis │ │ │ │ └── jit.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.colorbox.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.js │ │ │ ├── jquery.sparkline.js │ │ │ ├── jquery.spritely-0.6.1.js │ │ │ ├── prototype.js │ │ │ └── rails.js │ │ └── stylesheets │ │ │ ├── _bright.sass │ │ │ ├── _codemirror.sass │ │ │ ├── _common.sass │ │ │ ├── _default.sass │ │ │ ├── _doc.sass │ │ │ ├── _errors.sass │ │ │ ├── _formtastic.sass │ │ │ ├── _jquery_ui.sass │ │ │ ├── _layercake.sass │ │ │ ├── _layout.sass │ │ │ ├── _mixins.sass │ │ │ ├── _nav.sass │ │ │ ├── _network.sass │ │ │ ├── _tables.sass │ │ │ ├── _toc.sass │ │ │ ├── _variables.sass │ │ │ ├── application.sass │ │ │ └── ie.sass │ ├── controllers │ │ ├── application_controller.rb │ │ ├── attribs_controller.rb │ │ ├── available_hammers_controller.rb │ │ ├── barclamps_controller.rb │ │ ├── crowbar_controller.rb │ │ ├── dashboard_controller.rb │ │ ├── deployment_roles_controller.rb │ │ ├── deployments_controller.rb │ │ ├── dns_name_entries_controller.rb │ │ ├── dns_name_filters_controller.rb │ │ ├── docs_controller.rb │ │ ├── groups_controller.rb │ │ ├── hammers_controller.rb │ │ ├── interfaces_controller.rb │ │ ├── inventory_controller.rb │ │ ├── jigs_controller.rb │ │ ├── network_allocations_controller.rb │ │ ├── network_ranges_controller.rb │ │ ├── network_routers_controller.rb │ │ ├── networks_controller.rb │ │ ├── node_roles_controller.rb │ │ ├── nodes_controller.rb │ │ ├── roles_controller.rb │ │ ├── runs_controller.rb │ │ ├── scaffolds │ │ │ ├── attribs_controller.rb │ │ │ ├── available_hammers_controller.rb │ │ │ ├── barclamps_controller.rb │ │ │ ├── deployment_roles_controller.rb │ │ │ ├── deployments_controller.rb │ │ │ ├── dns_name_entries_controller.rb │ │ │ ├── dns_name_filters_controller.rb │ │ │ ├── docs_controller.rb │ │ │ ├── groups_controller.rb │ │ │ ├── hammers_controller.rb │ │ │ ├── jigs_controller.rb │ │ │ ├── navs_controller.rb │ │ │ ├── network_allocations_controller.rb │ │ │ ├── network_ranges_controller.rb │ │ │ ├── network_routers_controller.rb │ │ │ ├── networks_controller.rb │ │ │ ├── node_role_attrib_links_controller.rb │ │ │ ├── node_roles_controller.rb │ │ │ ├── nodes_controller.rb │ │ │ ├── role_requires_controller.rb │ │ │ └── roles_controller.rb │ │ ├── support_controller.rb │ │ └── users_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── models │ │ ├── attrib.rb │ │ ├── audit_tracker.rb │ │ ├── available_hammer.rb │ │ ├── barclamp.rb │ │ ├── barclamp_chef │ │ │ ├── client.rb │ │ │ ├── jig.rb │ │ │ ├── server.rb │ │ │ ├── solo.rb │ │ │ └── solo_jig.rb │ │ ├── barclamp_consul │ │ │ └── consul.rb │ │ ├── barclamp_crowbar │ │ │ ├── api_server.rb │ │ │ ├── api_service.rb │ │ │ ├── attrib │ │ │ │ └── number_of_drives.rb │ │ │ ├── jig.rb │ │ │ ├── job_runner.rb │ │ │ ├── job_runner_service.rb │ │ │ └── role_provided_jig.rb │ │ ├── barclamp_dhcp │ │ │ ├── database.rb │ │ │ ├── server.rb │ │ │ └── service.rb │ │ ├── barclamp_dns │ │ │ ├── bind_server.rb │ │ │ ├── client.rb │ │ │ ├── mgmt_server.rb │ │ │ ├── mgmt_service.rb │ │ │ └── service.rb │ │ ├── barclamp_network │ │ │ ├── attrib │ │ │ │ ├── all_config.rb │ │ │ │ ├── current_config.rb │ │ │ │ └── switches.rb │ │ │ ├── lldpd.rb │ │ │ ├── role.rb │ │ │ └── server.rb │ │ ├── barclamp_ntp │ │ │ ├── server.rb │ │ │ └── service.rb │ │ ├── barclamp_provisioner │ │ │ ├── base_images.rb │ │ │ ├── database.rb │ │ │ ├── docker_setup.rb │ │ │ ├── os_install.rb │ │ │ ├── server.rb │ │ │ └── service.rb │ │ ├── barclamp_proxy │ │ │ ├── client.rb │ │ │ ├── server.rb │ │ │ └── service.rb │ │ ├── barclamp_puppet │ │ │ ├── agent_sa.rb │ │ │ └── sa_jig.rb │ │ ├── barclamp_rabbitmq │ │ │ ├── amqp_service.rb │ │ │ └── server.rb │ │ ├── barclamp_saltstack │ │ │ ├── master.rb │ │ │ └── minion.rb │ │ ├── barclamp_test │ │ │ ├── admin.rb │ │ │ ├── async.rb │ │ │ ├── client.rb │ │ │ ├── discovery.rb │ │ │ ├── event.rb │ │ │ ├── jig.rb │ │ │ ├── role.rb │ │ │ └── server.rb │ │ ├── crowbar_exception.rb │ │ ├── crowbar_validator.rb │ │ ├── deployment.rb │ │ ├── deployment_role.rb │ │ ├── dns_name_entry.rb │ │ ├── dns_name_filter.rb │ │ ├── doc.rb │ │ ├── group.rb │ │ ├── hammer.rb │ │ ├── jig.rb │ │ ├── nav.rb │ │ ├── network.rb │ │ ├── network_allocation.rb │ │ ├── network_range.rb │ │ ├── network_router.rb │ │ ├── node.rb │ │ ├── node_role.rb │ │ ├── node_role_attrib_link.rb │ │ ├── password_change_token.rb │ │ ├── role.rb │ │ ├── role_require.rb │ │ ├── role_require_attrib.rb │ │ ├── run.rb │ │ ├── secure_shell_hammer.rb │ │ ├── service.rb │ │ └── user.rb │ └── views │ │ ├── attribs │ │ ├── _default.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── available_hammers │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── barclamp_chef │ │ └── node_roles │ │ │ ├── _chef-client.html.haml │ │ │ └── _chef-server.html.haml │ │ ├── barclamp_dns │ │ └── _dns-server.html.haml │ │ ├── barclamp_network │ │ ├── attribs │ │ │ └── _interface_map.html.haml │ │ ├── node_roles │ │ │ └── _network-server.html.haml │ │ └── roles │ │ │ └── _role.html.haml │ │ ├── barclamp_ntp │ │ └── node_roles │ │ │ └── _ntp-server.html.haml │ │ ├── barclamp_provisioner │ │ ├── _edit_deployment.html.haml │ │ └── attribs │ │ │ ├── _available_oses.html.haml │ │ │ ├── _package_repos.html.haml │ │ │ └── _target_os.html.haml │ │ ├── barclamps │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── dashboard │ │ ├── _layercake.html.haml │ │ ├── families.html.haml │ │ ├── getready.html.haml │ │ ├── index.html.haml │ │ ├── layercake.html.haml │ │ └── list.html.haml │ │ ├── deployment_roles │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── deployments │ │ ├── _buttons.html.haml │ │ ├── _header.html.haml │ │ ├── _index.html.haml │ │ ├── anneal.html.haml │ │ ├── cohorts.html.haml │ │ ├── graph.html.haml │ │ ├── index.html.haml │ │ ├── monitor.html.haml │ │ └── show.html.haml │ │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.haml │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.haml │ │ │ ├── reset_password_instructions.html.haml │ │ │ └── unlock_instructions.html.haml │ │ ├── passwords │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── sessions │ │ │ └── new.html.haml │ │ ├── shared │ │ │ └── _links.haml │ │ └── unlocks │ │ │ └── new.html.haml │ │ ├── dns_name_entries │ │ ├── _show.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── dns_name_filters │ │ ├── _show.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── docs │ │ ├── _tree.html.haml │ │ ├── export.html.haml │ │ ├── index.html.haml │ │ ├── show.html.haml │ │ └── topic.html.haml │ │ ├── errors │ │ └── 500.html.haml │ │ ├── groups │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── hammers │ │ ├── _index.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── interfaces │ │ └── index.html.haml │ │ ├── jigs │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── layouts │ │ ├── application.html.haml │ │ └── doc_export.html.haml │ │ ├── machines │ │ ├── _node.html.erb │ │ ├── index.html.erb │ │ ├── transition.erb │ │ └── transition.yaml.erb │ │ ├── network_ranges │ │ ├── _index.html.haml │ │ └── index.html.haml │ │ ├── network_routers │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── networks │ │ ├── _show.html.haml │ │ ├── index.html.haml │ │ ├── map.html.haml │ │ └── show.html.haml │ │ ├── node_roles │ │ ├── _index.html.haml │ │ ├── _raw.html.haml │ │ ├── anneal.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── nodes │ │ ├── _index.html.haml │ │ ├── _show.html.haml │ │ ├── actions.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ │ ├── roles │ │ ├── _index.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ │ ├── support │ │ ├── _settings.html.haml │ │ ├── _settingsCb.html.haml │ │ ├── bootstrap.html.haml │ │ ├── import.html.haml │ │ ├── index.html.haml │ │ ├── restart.html.haml │ │ └── settings.html.haml │ │ └── users │ │ ├── _form.html.haml │ │ ├── _form_reset_password.html.haml │ │ └── index.html.haml ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── database.yml.travis │ ├── environment.rb │ ├── environments │ │ ├── dev_threaded.rb │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── api_helpers.rb │ │ ├── backtrace_silencers.rb │ │ ├── devise.rb │ │ ├── inflections.rb │ │ ├── logger.rb │ │ ├── mime_types.rb │ │ ├── rails_config.rb │ │ ├── secret_token.rb │ │ └── wrap_parameters.rb │ ├── layercake.json │ ├── locales │ │ ├── chef │ │ │ └── en.yml │ │ ├── consul │ │ │ └── en.yml │ │ ├── crowbar │ │ │ └── en.yml │ │ ├── deployer │ │ │ └── en.yml │ │ ├── dhcp │ │ │ └── en.yml │ │ ├── dns │ │ │ └── en.yml │ │ ├── docker │ │ │ └── en.yml │ │ ├── en.yml │ │ ├── logging │ │ │ └── en.yml │ │ ├── network │ │ │ └── en.yml │ │ ├── ntp │ │ │ └── en.yml │ │ ├── provisioner │ │ │ └── en.yml │ │ ├── proxy │ │ │ └── en.yml │ │ ├── puppet │ │ │ └── en.yml │ │ ├── rabbitmq │ │ │ └── en.yml │ │ ├── saltstack │ │ │ └── en.yml │ │ └── test │ │ │ └── en.yml │ ├── navigation.rb │ ├── preinitializer.rb │ ├── routes.rb │ └── settings │ │ ├── development.yml │ │ ├── production.yml │ │ └── test.yml ├── db │ ├── KEEP_THIS │ ├── migrate │ │ ├── 20140122123641_rails_settings_migration.rb │ │ ├── 20140430000000_crowbar_anvil.rb │ │ ├── 20140619173000_network_range_conduit.rb │ │ ├── 20140624000001_role_add_milestone.rb │ │ ├── 20140627064000_save_barclamp_metadata.rb │ │ ├── 20140709153000_create_hammers.rb │ │ ├── 20140827131500_add_node_quirks.rb │ │ ├── 20141015190000_add_attrib_nr_interlinking.rb │ │ ├── 20141018113000_give_deployment_roles_proposed_data.rb │ │ ├── 20141113135600_barclamp_build_version_add.rb │ │ ├── 20150104222800_add_system_flag_to_node.rb │ │ ├── 20150109193000_add_powersave_flag.rb │ │ ├── 20150120110800_create_delayed_workers.rb │ │ ├── 20150203155600_add_service_flag.rb │ │ ├── 20150206230900_create_provisioner_database.rb │ │ ├── 20150325101300_add_network_fields.rb │ │ ├── 20150327154100_add_network_type_field.rb │ │ ├── 20150407103400_update_network_views.rb │ │ ├── 20150418154100_add_network_group_field.rb │ │ ├── 20150501151440_make_runs_ref_delayed_jobs.rb │ │ ├── 20150504102000_save_queue_in_runs.rb │ │ ├── 20150509000057_install_audited.rb │ │ ├── 20150513161005_zap_delayed_jobs.rb │ │ ├── 20150513214112_add_que.rb │ │ ├── 20150516140700_add_attirb_default.rb │ │ ├── 20150527100900_remove_cname.rb │ │ ├── 20150527112400_remove_alias_from_node.rb │ │ ├── 20150613153000_dns_name_filter.rb │ │ ├── 20150619171000_add_audit_track.rb │ │ ├── 20150701101600_add_pbr_network.rb │ │ ├── 20150713092600_add_notes_attribs.rb │ │ ├── 20150808171100_fix_null_descriptions.rb │ │ └── 20150812142500_add_password_change_token.rb │ └── seeds.rb ├── lib │ ├── api_helper.rb │ ├── audit_actions.rb │ ├── consul_access.rb │ ├── ip.rb │ ├── ocb_switch.rb │ ├── offline │ │ └── role-.template │ ├── publisher.rb │ └── tasks │ │ ├── cucumber.rake │ │ └── fixtures.rake ├── log │ └── KEEP_ME ├── public │ ├── 404.html │ ├── 405.html │ ├── 422.html │ ├── 500.html │ ├── export │ │ └── KEEP_THIS │ ├── favicon.ico │ ├── import │ │ └── KEEP_THIS │ └── robots.txt ├── puma-dev.cfg ├── puma-test.cfg ├── puma.cfg ├── script │ ├── event_client.rb │ └── rails ├── spec │ ├── factories │ │ ├── attribs.rb │ │ ├── barclamps.rb │ │ ├── deployments.rb │ │ ├── dns_name_filters.rb │ │ ├── hammers.rb │ │ ├── jigs.rb │ │ ├── network_allocations.rb │ │ ├── network_ranges.rb │ │ ├── networks.rb │ │ ├── node_roles.rb │ │ ├── nodes.rb │ │ ├── roles.rb │ │ └── users.rb │ ├── models │ │ ├── dns_name_filter_spec.rb │ │ ├── jig_spec.rb │ │ ├── network_range_spec.rb │ │ ├── network_spec.rb │ │ ├── node_role_spec │ │ ├── node_spec.rb │ │ └── user_spec.rb │ └── spec_helper.rb └── test │ ├── data │ └── node_discovery.json │ ├── fixtures │ └── .empty.yml │ ├── performance │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ ├── barclamp_model_test.rb │ ├── deployment_model_test.rb │ ├── group_model_test.rb │ ├── i18n_test.rb │ ├── jig_model_test.rb │ ├── node_model_test.rb │ ├── role_model_test.rb │ └── user_model_test.rb ├── script ├── roles │ ├── chef-client │ │ └── 01-install-client.sh │ ├── chef-server │ │ └── 01-install-chef-server.sh │ ├── chef-solo │ │ └── 01-solo.sh │ ├── crowbar-access │ │ └── 01-crowbar-access.sh │ ├── crowbar │ │ └── 001_ping.sh │ ├── docker-prep │ │ └── 01-prereq-docker-rep.sh │ ├── provisioner-os-install │ │ └── 01-install-os.sh │ ├── puppet-agent_sa │ │ └── 01-install-agent.sh │ ├── saltstack-master │ │ └── 01-install-master.sh │ ├── saltstack-minion │ │ └── 01-install-minion.sh │ └── sysdig │ │ └── 01-install-sysdig.sh └── runner ├── setup ├── 00-crowbar-rake-tasks.install ├── 01-crowbar-start.install └── 02-make-machine-key.install ├── sledgehammer ├── build.expect ├── dhclient.conf ├── sledgehammer.ks ├── sshd_config └── start-up.sh ├── smoketest ├── 00-check-dns.test ├── 00-check-ntp.test ├── 00-default.test └── 00-scratch.test ├── tests ├── prequel.sh └── test-docker-admin.sh ├── tools ├── build_sledgehammer.sh ├── crowbar-install.sh ├── docker-admin ├── docker-init.sh ├── docker-slave ├── docker-slaves ├── kvm-admin ├── kvm-slave ├── kvm_lib.sh ├── proxy_lib.sh ├── rails-console.sh ├── test.sh ├── test_cleanup.sh ├── tmux_lib.sh └── travis_consul.sh └── updates ├── control_lib.sh ├── parse_node_data └── wsman ├── lib └── wsman.rb └── wsman.gemspec /BDD/annealer.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/annealer.erl -------------------------------------------------------------------------------- /BDD/attrib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/attrib.erl -------------------------------------------------------------------------------- /BDD/authenticate.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/authenticate.erl -------------------------------------------------------------------------------- /BDD/barclamp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/barclamp.erl -------------------------------------------------------------------------------- /BDD/bdd.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd.erl -------------------------------------------------------------------------------- /BDD/bdd.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd.hrl -------------------------------------------------------------------------------- /BDD/bdd_catchall.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_catchall.erl -------------------------------------------------------------------------------- /BDD/bdd_clirat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_clirat.erl -------------------------------------------------------------------------------- /BDD/bdd_crud.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_crud.erl -------------------------------------------------------------------------------- /BDD/bdd_print.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_print.erl -------------------------------------------------------------------------------- /BDD/bdd_restrat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_restrat.erl -------------------------------------------------------------------------------- /BDD/bdd_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_utils.erl -------------------------------------------------------------------------------- /BDD/bdd_webrat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/bdd_webrat.erl -------------------------------------------------------------------------------- /BDD/consul.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/consul.erl -------------------------------------------------------------------------------- /BDD/crowbar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/crowbar.config -------------------------------------------------------------------------------- /BDD/crowbar.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/crowbar.erl -------------------------------------------------------------------------------- /BDD/crowbar_rest.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/crowbar_rest.erl -------------------------------------------------------------------------------- /BDD/dashboard.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/dashboard.erl -------------------------------------------------------------------------------- /BDD/dashboard_getready.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/dashboard_getready.erl -------------------------------------------------------------------------------- /BDD/default.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/default.erl -------------------------------------------------------------------------------- /BDD/deployment.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/deployment.erl -------------------------------------------------------------------------------- /BDD/deployment_role.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/deployment_role.erl -------------------------------------------------------------------------------- /BDD/dev.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/dev.erl -------------------------------------------------------------------------------- /BDD/dev.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/dev.sample -------------------------------------------------------------------------------- /BDD/devtool.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/devtool.config -------------------------------------------------------------------------------- /BDD/digest_auth.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/digest_auth.erl -------------------------------------------------------------------------------- /BDD/eurl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/eurl.erl -------------------------------------------------------------------------------- /BDD/example.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/example.config -------------------------------------------------------------------------------- /BDD/features/annealer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/annealer.feature -------------------------------------------------------------------------------- /BDD/features/async.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/async.feature -------------------------------------------------------------------------------- /BDD/features/attrib.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/attrib.feature -------------------------------------------------------------------------------- /BDD/features/authenticate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/authenticate.feature -------------------------------------------------------------------------------- /BDD/features/barclamp.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/barclamp.feature -------------------------------------------------------------------------------- /BDD/features/dashboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/dashboard.feature -------------------------------------------------------------------------------- /BDD/features/dashboard_getready.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/dashboard_getready.feature -------------------------------------------------------------------------------- /BDD/features/deployment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/deployment.feature -------------------------------------------------------------------------------- /BDD/features/deployment_role.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/deployment_role.feature -------------------------------------------------------------------------------- /BDD/features/documentation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/documentation.feature -------------------------------------------------------------------------------- /BDD/features/group.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/group.feature -------------------------------------------------------------------------------- /BDD/features/hammer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/hammer.feature -------------------------------------------------------------------------------- /BDD/features/jig.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/jig.feature -------------------------------------------------------------------------------- /BDD/features/navigation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/navigation.feature -------------------------------------------------------------------------------- /BDD/features/network.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network.feature -------------------------------------------------------------------------------- /BDD/features/network_map.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network_map.feature -------------------------------------------------------------------------------- /BDD/features/network_range.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network_range.feature -------------------------------------------------------------------------------- /BDD/features/network_role.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network_role.feature -------------------------------------------------------------------------------- /BDD/features/network_router.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network_router.feature -------------------------------------------------------------------------------- /BDD/features/network_scaffolds.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/network_scaffolds.feature -------------------------------------------------------------------------------- /BDD/features/node.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/node.feature -------------------------------------------------------------------------------- /BDD/features/node_list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/node_list.feature -------------------------------------------------------------------------------- /BDD/features/node_role.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/node_role.feature -------------------------------------------------------------------------------- /BDD/features/role.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/role.feature -------------------------------------------------------------------------------- /BDD/features/scaffolds.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/scaffolds.feature -------------------------------------------------------------------------------- /BDD/features/support.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/support.feature -------------------------------------------------------------------------------- /BDD/features/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/features/user.feature -------------------------------------------------------------------------------- /BDD/group_cb.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/group_cb.erl -------------------------------------------------------------------------------- /BDD/hammer.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/hammer.erl -------------------------------------------------------------------------------- /BDD/jig.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/jig.erl -------------------------------------------------------------------------------- /BDD/json.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/json.erl -------------------------------------------------------------------------------- /BDD/linux_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/linux_compile.sh -------------------------------------------------------------------------------- /BDD/linux_sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/linux_sim.sh -------------------------------------------------------------------------------- /BDD/linux_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/linux_test.sh -------------------------------------------------------------------------------- /BDD/local.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/local.config -------------------------------------------------------------------------------- /BDD/network.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/network.erl -------------------------------------------------------------------------------- /BDD/node.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/node.erl -------------------------------------------------------------------------------- /BDD/node_role.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/node_role.erl -------------------------------------------------------------------------------- /BDD/range.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/range.erl -------------------------------------------------------------------------------- /BDD/role.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/role.erl -------------------------------------------------------------------------------- /BDD/router.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/router.erl -------------------------------------------------------------------------------- /BDD/run.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/run.erl -------------------------------------------------------------------------------- /BDD/simple_auth.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/simple_auth.erl -------------------------------------------------------------------------------- /BDD/support.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/support.erl -------------------------------------------------------------------------------- /BDD/swift.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/swift.erl -------------------------------------------------------------------------------- /BDD/travis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/travis.config -------------------------------------------------------------------------------- /BDD/user_cb.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/BDD/user_cb.erl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/README.md -------------------------------------------------------------------------------- /barclamps/chef.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/chef.yml -------------------------------------------------------------------------------- /barclamps/consul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/consul.yml -------------------------------------------------------------------------------- /barclamps/crowbar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/crowbar.yml -------------------------------------------------------------------------------- /barclamps/deployer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/deployer.yml -------------------------------------------------------------------------------- /barclamps/dhcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/dhcp.yml -------------------------------------------------------------------------------- /barclamps/dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/dns.yml -------------------------------------------------------------------------------- /barclamps/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/docker.yml -------------------------------------------------------------------------------- /barclamps/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/logging.yml -------------------------------------------------------------------------------- /barclamps/network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/network.yml -------------------------------------------------------------------------------- /barclamps/ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/ntp.yml -------------------------------------------------------------------------------- /barclamps/provisioner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/provisioner.yml -------------------------------------------------------------------------------- /barclamps/proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/proxy.yml -------------------------------------------------------------------------------- /barclamps/puppet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/puppet.yml -------------------------------------------------------------------------------- /barclamps/rabbitmq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/rabbitmq.yml -------------------------------------------------------------------------------- /barclamps/saltstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/saltstack.yml -------------------------------------------------------------------------------- /barclamps/sysdig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/sysdig.yml -------------------------------------------------------------------------------- /barclamps/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/barclamps/test.yml -------------------------------------------------------------------------------- /bin/barclamp_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bin/barclamp_import -------------------------------------------------------------------------------- /bin/chef-cookbook-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bin/chef-cookbook-upload -------------------------------------------------------------------------------- /bin/ocb_console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bin/ocb_console -------------------------------------------------------------------------------- /bin/ocb_regen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bin/ocb_regen_docs -------------------------------------------------------------------------------- /bootstrap/centos.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/centos.lib.sh -------------------------------------------------------------------------------- /bootstrap/chef-solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/chef-solo.rb -------------------------------------------------------------------------------- /bootstrap/debian.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/debian.lib.sh -------------------------------------------------------------------------------- /bootstrap/fedora.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/fedora.lib.sh -------------------------------------------------------------------------------- /bootstrap/opensuse.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/opensuse.lib.sh -------------------------------------------------------------------------------- /bootstrap/redhat.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/redhat.lib.sh -------------------------------------------------------------------------------- /bootstrap/ubuntu-12.04.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/bootstrap/ubuntu-12.04.lib.sh -------------------------------------------------------------------------------- /chef/cookbooks/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/Berksfile -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/libraries/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/libraries/disk.rb -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/libraries/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/libraries/ip.rb -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/libraries/nic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/libraries/nic.rb -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/libraries/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/libraries/test.rb -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/barclamp/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/barclamp/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | 3 | -------------------------------------------------------------------------------- /chef/cookbooks/bind9/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/README.rdoc -------------------------------------------------------------------------------- /chef/cookbooks/bind9/attributes/default.rb: -------------------------------------------------------------------------------- 1 | 2 | default[:dns][:forwarders] = [ ] 3 | 4 | -------------------------------------------------------------------------------- /chef/cookbooks/bind9/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/bind9/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/providers/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/providers/host.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/providers/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/providers/net.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/recipes/install.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/resources/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/resources/host.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/resources/net.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/resources/net.rb -------------------------------------------------------------------------------- /chef/cookbooks/bind9/templates/default/db.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bind9/templates/default/db.erb -------------------------------------------------------------------------------- /chef/cookbooks/bmc-nat/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/bmc-nat/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bmc-nat/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/bmc-nat/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bmc-nat/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/bmc-nat/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bmc-nat/recipes/client.rb -------------------------------------------------------------------------------- /chef/cookbooks/bmc-nat/recipes/router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/bmc-nat/recipes/router.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/.coveralls.yml: -------------------------------------------------------------------------------- 1 | --- 2 | service_name: travis-ci 3 | repo_token: Q9b8riytmhZpTbCnY4Rph03A5BXMeS9aH 4 | -------------------------------------------------------------------------------- /chef/cookbooks/consul/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/.kitchen.yml -------------------------------------------------------------------------------- /chef/cookbooks/consul/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /chef/cookbooks/consul/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/.rubocop.yml -------------------------------------------------------------------------------- /chef/cookbooks/consul/.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/.rubocop_todo.yml -------------------------------------------------------------------------------- /chef/cookbooks/consul/.tailor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/.tailor -------------------------------------------------------------------------------- /chef/cookbooks/consul/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/.travis.yml -------------------------------------------------------------------------------- /chef/cookbooks/consul/Berksfile: -------------------------------------------------------------------------------- 1 | source "https://api.berkshelf.com" 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /chef/cookbooks/consul/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/consul/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/CONTRIBUTING.md -------------------------------------------------------------------------------- /chef/cookbooks/consul/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/Gemfile -------------------------------------------------------------------------------- /chef/cookbooks/consul/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/LICENSE -------------------------------------------------------------------------------- /chef/cookbooks/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/README.md -------------------------------------------------------------------------------- /chef/cookbooks/consul/Rakefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/cookbooks/consul/Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/Thorfile -------------------------------------------------------------------------------- /chef/cookbooks/consul/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/Vagrantfile -------------------------------------------------------------------------------- /chef/cookbooks/consul/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/consul/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/recipes/install.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/recipes/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/recipes/ui.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/consul/spec/spec_helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/consul/spec/support/matchers.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/cookbooks/consul/templates/default/acl-master-token.erb: -------------------------------------------------------------------------------- 1 | <%= @token %> 2 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-bootstrap/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://api.berkshelf.com' 2 | metadata 3 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-bootstrap/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-bootstrap/README.md -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-bootstrap/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-bootstrap/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-bootstrap/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-bootstrap/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-hacks/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-hacks/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-hacks/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-hacks/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-hacks/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/crowbar-squid/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar-squid/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://api.berkshelf.com' 2 | metadata 3 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'berkshelf' 4 | -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar/README.md -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/recipes/api_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar/recipes/api_server.rb -------------------------------------------------------------------------------- /chef/cookbooks/crowbar/recipes/job_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/crowbar/recipes/job_runner.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/files/default/dhcpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/files/default/dhcpd.h -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/files/default/discover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/files/default/discover.c -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/providers/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/providers/host.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/providers/subnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/providers/subnet.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/recipes/install.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/recipes/update_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/recipes/update_nodes.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/resources/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/resources/group.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/resources/host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/resources/host.rb -------------------------------------------------------------------------------- /chef/cookbooks/dhcp/resources/subnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/dhcp/resources/subnet.rb -------------------------------------------------------------------------------- /chef/cookbooks/erlang/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/erlang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/README.md -------------------------------------------------------------------------------- /chef/cookbooks/erlang/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/erlang/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/erlang/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/erlang/recipes/esl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/recipes/esl.rb -------------------------------------------------------------------------------- /chef/cookbooks/erlang/recipes/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/recipes/package.rb -------------------------------------------------------------------------------- /chef/cookbooks/erlang/recipes/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/erlang/recipes/source.rb -------------------------------------------------------------------------------- /chef/cookbooks/kernel-panic/Berksfile: -------------------------------------------------------------------------------- 1 | 2 | metadata 3 | 4 | -------------------------------------------------------------------------------- /chef/cookbooks/kernel-panic/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/kernel-panic/README.rdoc -------------------------------------------------------------------------------- /chef/cookbooks/kernel-panic/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/kernel-panic/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/kernel-panic/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/kernel-panic/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/logging/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/logging/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/logging/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/logging/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/logging/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/logging/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/logging/recipes/client.rb -------------------------------------------------------------------------------- /chef/cookbooks/logging/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/logging/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/logging/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/logging/recipes/server.rb -------------------------------------------------------------------------------- /chef/cookbooks/network/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/network/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/network/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/network/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/network/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/network/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/network/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/network/recipes/lldpd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/network/recipes/lldpd.rb -------------------------------------------------------------------------------- /chef/cookbooks/ntp/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://api.berkshelf.com' 2 | metadata 3 | 4 | 5 | -------------------------------------------------------------------------------- /chef/cookbooks/ntp/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ntp/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/ntp/libraries/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ntp/libraries/eval.rb -------------------------------------------------------------------------------- /chef/cookbooks/ntp/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ntp/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/ntp/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ntp/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/ohai/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/ohai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ohai/README.md -------------------------------------------------------------------------------- /chef/cookbooks/ohai/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ohai/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/ohai/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ohai/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/ohai/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ohai/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/ohai/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/ohai/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/providers/esxi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/providers/esxi.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/providers/fuel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/providers/fuel.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/recipes/servers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/recipes/servers.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/resources/esxi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/resources/esxi.rb -------------------------------------------------------------------------------- /chef/cookbooks/provisioner/resources/fuel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/provisioner/resources/fuel.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/README.md -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/libraries/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/libraries/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/providers/cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/providers/cluster.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/providers/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/providers/plugin.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/providers/policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/providers/policy.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/providers/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/providers/user.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/providers/vhost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/providers/vhost.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/recipes/cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/recipes/cluster.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/recipes/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/recipes/consul.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/resources/cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/resources/cluster.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/resources/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/resources/plugin.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/resources/policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/resources/policy.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/resources/user.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/resources/vhost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/rabbitmq/resources/vhost.rb -------------------------------------------------------------------------------- /chef/cookbooks/rabbitmq/templates/default/doterlang.cookie.erb: -------------------------------------------------------------------------------- 1 | <%= node['rabbitmq']['erlang_cookie'] %> 2 | -------------------------------------------------------------------------------- /chef/cookbooks/repos/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/repos/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/repos/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/repos/files/default/apt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/repos/files/default/apt.conf -------------------------------------------------------------------------------- /chef/cookbooks/repos/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/repos/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/repos/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/repos/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/resolver/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | -------------------------------------------------------------------------------- /chef/cookbooks/resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/resolver/README.md -------------------------------------------------------------------------------- /chef/cookbooks/resolver/attributes/default.rb: -------------------------------------------------------------------------------- 1 | default[:dns][:nameservers] = [ ] 2 | -------------------------------------------------------------------------------- /chef/cookbooks/resolver/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/resolver/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/resolver/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/resolver/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/resolver/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/resolver/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/utils/Berksfile: -------------------------------------------------------------------------------- 1 | metadata 2 | 3 | -------------------------------------------------------------------------------- /chef/cookbooks/utils/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/README.rdoc -------------------------------------------------------------------------------- /chef/cookbooks/utils/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/chefignore -------------------------------------------------------------------------------- /chef/cookbooks/utils/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/metadata.rb -------------------------------------------------------------------------------- /chef/cookbooks/utils/providers/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/providers/line.rb -------------------------------------------------------------------------------- /chef/cookbooks/utils/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/utils/resources/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/cookbooks/utils/resources/line.rb -------------------------------------------------------------------------------- /chef/roles/bmc-nat-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/bmc-nat-client.rb -------------------------------------------------------------------------------- /chef/roles/bmc-nat-router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/bmc-nat-router.rb -------------------------------------------------------------------------------- /chef/roles/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/consul.rb -------------------------------------------------------------------------------- /chef/roles/crowbar-api_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/crowbar-api_server.rb -------------------------------------------------------------------------------- /chef/roles/crowbar-build-root-key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/crowbar-build-root-key.rb -------------------------------------------------------------------------------- /chef/roles/crowbar-job_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/crowbar-job_runner.rb -------------------------------------------------------------------------------- /chef/roles/deployer-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/deployer-client.rb -------------------------------------------------------------------------------- /chef/roles/dhcp-database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/dhcp-database.rb -------------------------------------------------------------------------------- /chef/roles/dhcp-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/dhcp-server.rb -------------------------------------------------------------------------------- /chef/roles/dns-bind_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/dns-bind_server.rb -------------------------------------------------------------------------------- /chef/roles/dns-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/dns-client.rb -------------------------------------------------------------------------------- /chef/roles/dns-mgmt_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/dns-mgmt_server.rb -------------------------------------------------------------------------------- /chef/roles/logging-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/logging-client.rb -------------------------------------------------------------------------------- /chef/roles/logging-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/logging-server.rb -------------------------------------------------------------------------------- /chef/roles/network-lldpd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/network-lldpd.rb -------------------------------------------------------------------------------- /chef/roles/ntp-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/ntp-client.rb -------------------------------------------------------------------------------- /chef/roles/ntp-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/ntp-server.rb -------------------------------------------------------------------------------- /chef/roles/provisioner-base-images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/provisioner-base-images.rb -------------------------------------------------------------------------------- /chef/roles/provisioner-databse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/provisioner-databse.rb -------------------------------------------------------------------------------- /chef/roles/provisioner-docker-setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/provisioner-docker-setup.rb -------------------------------------------------------------------------------- /chef/roles/provisioner-repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/provisioner-repos.rb -------------------------------------------------------------------------------- /chef/roles/provisioner-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/provisioner-server.rb -------------------------------------------------------------------------------- /chef/roles/proxy-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/proxy-client.rb -------------------------------------------------------------------------------- /chef/roles/proxy-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/proxy-server.rb -------------------------------------------------------------------------------- /chef/roles/rabbitmq-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/rabbitmq-server.rb -------------------------------------------------------------------------------- /chef/roles/test-multi-head.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/test-multi-head.rb -------------------------------------------------------------------------------- /chef/roles/test-multi-rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/test-multi-rest.rb -------------------------------------------------------------------------------- /chef/roles/test-single.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/chef/roles/test-single.rb -------------------------------------------------------------------------------- /clients/ansible/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/clients/ansible/inventory.py -------------------------------------------------------------------------------- /clients/python/api_bindings/cb2_api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/clients/python/api_bindings/cb2_api/api.py -------------------------------------------------------------------------------- /clients/python/api_bindings/cb2_api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clients/python/api_bindings/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/clients/python/api_bindings/setup.py -------------------------------------------------------------------------------- /clients/python/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/clients/python/login.py -------------------------------------------------------------------------------- /config/filters/admin-default.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/filters/admin-default.json.example -------------------------------------------------------------------------------- /config/networks/network.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/networks/network.json.example -------------------------------------------------------------------------------- /config/networks/the_admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/networks/the_admin.json -------------------------------------------------------------------------------- /config/networks/the_bmc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/networks/the_bmc.json -------------------------------------------------------------------------------- /config/networks_to_join.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/networks_to_join.json -------------------------------------------------------------------------------- /config/services/amqp-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/amqp-internal.json -------------------------------------------------------------------------------- /config/services/crowbar-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/crowbar-api.json -------------------------------------------------------------------------------- /config/services/crowbar-job_runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/crowbar-job_runner.json -------------------------------------------------------------------------------- /config/services/dhcp-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/dhcp-internal.json -------------------------------------------------------------------------------- /config/services/dns-bind-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/dns-bind-internal.json -------------------------------------------------------------------------------- /config/services/dns-mgmt-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/dns-mgmt-internal.json -------------------------------------------------------------------------------- /config/services/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/examples/README.txt -------------------------------------------------------------------------------- /config/services/examples/provisioner-external.json.example: -------------------------------------------------------------------------------- 1 | _ This is not allowed. 2 | -------------------------------------------------------------------------------- /config/services/ntp-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/ntp-internal.json -------------------------------------------------------------------------------- /config/services/provisioner-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/provisioner-internal.json -------------------------------------------------------------------------------- /config/services/proxy-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/services/proxy-internal.json -------------------------------------------------------------------------------- /config/ssh_keys/my.key.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/ssh_keys/my.key.example -------------------------------------------------------------------------------- /config/users/crowbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/users/crowbar.json -------------------------------------------------------------------------------- /config/users/user.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/config/users/user.json.example -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/deployment-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/README.md -------------------------------------------------------------------------------- /doc/deployment-guide/accessing_bmcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/accessing_bmcs.md -------------------------------------------------------------------------------- /doc/deployment-guide/admin_port_maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/admin_port_maps.md -------------------------------------------------------------------------------- /doc/deployment-guide/advanced-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/advanced-deployment.md -------------------------------------------------------------------------------- /doc/deployment-guide/attaching-to-bmc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/attaching-to-bmc.md -------------------------------------------------------------------------------- /doc/deployment-guide/directory-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/directory-layout.md -------------------------------------------------------------------------------- /doc/deployment-guide/dns-subsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/dns-subsystem.md -------------------------------------------------------------------------------- /doc/deployment-guide/external-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/external-services.md -------------------------------------------------------------------------------- /doc/deployment-guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/faq.md -------------------------------------------------------------------------------- /doc/deployment-guide/node_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/deployment-guide/node_registration.md -------------------------------------------------------------------------------- /doc/development-guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/README.md -------------------------------------------------------------------------------- /doc/development-guides/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/README.md -------------------------------------------------------------------------------- /doc/development-guides/api/attrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/attrib.md -------------------------------------------------------------------------------- /doc/development-guides/api/barclamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/barclamp.md -------------------------------------------------------------------------------- /doc/development-guides/api/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/deployment.md -------------------------------------------------------------------------------- /doc/development-guides/api/deployment_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/deployment_role.md -------------------------------------------------------------------------------- /doc/development-guides/api/dns_name_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/dns_name_filter.md -------------------------------------------------------------------------------- /doc/development-guides/api/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/group.md -------------------------------------------------------------------------------- /doc/development-guides/api/ignore_me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/ignore_me.md -------------------------------------------------------------------------------- /doc/development-guides/api/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/interfaces.md -------------------------------------------------------------------------------- /doc/development-guides/api/jig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/jig.md -------------------------------------------------------------------------------- /doc/development-guides/api/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/network.md -------------------------------------------------------------------------------- /doc/development-guides/api/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/node.md -------------------------------------------------------------------------------- /doc/development-guides/api/node_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/node_role.md -------------------------------------------------------------------------------- /doc/development-guides/api/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/range.md -------------------------------------------------------------------------------- /doc/development-guides/api/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/role.md -------------------------------------------------------------------------------- /doc/development-guides/api/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/router.md -------------------------------------------------------------------------------- /doc/development-guides/api/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/run.md -------------------------------------------------------------------------------- /doc/development-guides/api/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/status.md -------------------------------------------------------------------------------- /doc/development-guides/api/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/test.md -------------------------------------------------------------------------------- /doc/development-guides/api/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/api/user.md -------------------------------------------------------------------------------- /doc/development-guides/barclamps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/barclamps/README.md -------------------------------------------------------------------------------- /doc/development-guides/contributing-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/contributing-code.md -------------------------------------------------------------------------------- /doc/development-guides/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/contributing.md -------------------------------------------------------------------------------- /doc/development-guides/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/database.md -------------------------------------------------------------------------------- /doc/development-guides/dev-systems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/dev-systems/README.md -------------------------------------------------------------------------------- /doc/development-guides/dev-systems/dev-vm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/dev-systems/dev-vm.md -------------------------------------------------------------------------------- /doc/development-guides/jigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/jigs/README.md -------------------------------------------------------------------------------- /doc/development-guides/jigs/chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/jigs/chef.md -------------------------------------------------------------------------------- /doc/development-guides/jigs/noop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/jigs/noop.md -------------------------------------------------------------------------------- /doc/development-guides/jigs/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/jigs/script.md -------------------------------------------------------------------------------- /doc/development-guides/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/README.md -------------------------------------------------------------------------------- /doc/development-guides/model/attrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/attrib.md -------------------------------------------------------------------------------- /doc/development-guides/model/barclamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/barclamp.md -------------------------------------------------------------------------------- /doc/development-guides/model/crowbar_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/crowbar_model.md -------------------------------------------------------------------------------- /doc/development-guides/model/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/deployment.md -------------------------------------------------------------------------------- /doc/development-guides/model/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/group.md -------------------------------------------------------------------------------- /doc/development-guides/model/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/model.md -------------------------------------------------------------------------------- /doc/development-guides/model/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/network.md -------------------------------------------------------------------------------- /doc/development-guides/model/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/node.md -------------------------------------------------------------------------------- /doc/development-guides/model/node_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/node_role.md -------------------------------------------------------------------------------- /doc/development-guides/model/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/role.md -------------------------------------------------------------------------------- /doc/development-guides/model/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/run.md -------------------------------------------------------------------------------- /doc/development-guides/model/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/model/user.md -------------------------------------------------------------------------------- /doc/development-guides/provisioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/provisioning.md -------------------------------------------------------------------------------- /doc/development-guides/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/README.md -------------------------------------------------------------------------------- /doc/development-guides/testing/bdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/bdd/README.md -------------------------------------------------------------------------------- /doc/development-guides/testing/bdd/dsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/bdd/dsl.md -------------------------------------------------------------------------------- /doc/development-guides/testing/bdd/steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/bdd/steps.md -------------------------------------------------------------------------------- /doc/development-guides/testing/bdd/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/bdd/tips.md -------------------------------------------------------------------------------- /doc/development-guides/testing/simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/testing/simulator.md -------------------------------------------------------------------------------- /doc/development-guides/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/ui/README.md -------------------------------------------------------------------------------- /doc/development-guides/ui/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/ui/localization.md -------------------------------------------------------------------------------- /doc/development-guides/ui/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/ui/navigation.md -------------------------------------------------------------------------------- /doc/development-guides/ui/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/ui/role.md -------------------------------------------------------------------------------- /doc/development-guides/ui/tips_and_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/ui/tips_and_tricks.md -------------------------------------------------------------------------------- /doc/development-guides/workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/development-guides/workflow/README.md -------------------------------------------------------------------------------- /doc/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/faq/README.md -------------------------------------------------------------------------------- /doc/faq/UEFI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/faq/UEFI.md -------------------------------------------------------------------------------- /doc/faq/do_you_have_a_question.md: -------------------------------------------------------------------------------- 1 | ### Do you have a question? 2 | 3 | needs answer! -------------------------------------------------------------------------------- /doc/faq/install-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/faq/install-faq.md -------------------------------------------------------------------------------- /doc/internals/ActiveRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ActiveRecord.html -------------------------------------------------------------------------------- /doc/internals/ApiHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ApiHelper.html -------------------------------------------------------------------------------- /doc/internals/ApiHelper/ClassMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ApiHelper/ClassMethods.html -------------------------------------------------------------------------------- /doc/internals/ApiHelper/InstanceMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ApiHelper/InstanceMethods.html -------------------------------------------------------------------------------- /doc/internals/ApplicationController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ApplicationController.html -------------------------------------------------------------------------------- /doc/internals/ApplicationHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/ApplicationHelper.html -------------------------------------------------------------------------------- /doc/internals/Attrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Attrib.html -------------------------------------------------------------------------------- /doc/internals/Attrib/AttribReadOnly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Attrib/AttribReadOnly.html -------------------------------------------------------------------------------- /doc/internals/AttribsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/AttribsController.html -------------------------------------------------------------------------------- /doc/internals/AvailableHammer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/AvailableHammer.html -------------------------------------------------------------------------------- /doc/internals/AvailableHammersController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/AvailableHammersController.html -------------------------------------------------------------------------------- /doc/internals/Barclamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Barclamp.html -------------------------------------------------------------------------------- /doc/internals/BarclampChef/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampChef/Client.html -------------------------------------------------------------------------------- /doc/internals/BarclampChef/Jig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampChef/Jig.html -------------------------------------------------------------------------------- /doc/internals/BarclampChef/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampChef/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampChef/Solo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampChef/Solo.html -------------------------------------------------------------------------------- /doc/internals/BarclampChef/SoloJig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampChef/SoloJig.html -------------------------------------------------------------------------------- /doc/internals/BarclampConsul/Consul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampConsul/Consul.html -------------------------------------------------------------------------------- /doc/internals/BarclampCrowbar/Jig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampCrowbar/Jig.html -------------------------------------------------------------------------------- /doc/internals/BarclampDhcp/Database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDhcp/Database.html -------------------------------------------------------------------------------- /doc/internals/BarclampDhcp/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDhcp/Service.html -------------------------------------------------------------------------------- /doc/internals/BarclampDns/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDns/Client.html -------------------------------------------------------------------------------- /doc/internals/BarclampDns/Database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDns/Database.html -------------------------------------------------------------------------------- /doc/internals/BarclampDns/MgmtService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDns/MgmtService.html -------------------------------------------------------------------------------- /doc/internals/BarclampDns/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDns/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampDns/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampDns/Service.html -------------------------------------------------------------------------------- /doc/internals/BarclampNetwork/Lldpd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampNetwork/Lldpd.html -------------------------------------------------------------------------------- /doc/internals/BarclampNetwork/Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampNetwork/Role.html -------------------------------------------------------------------------------- /doc/internals/BarclampNetwork/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampNetwork/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampNtp/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampNtp/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampNtp/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampNtp/Service.html -------------------------------------------------------------------------------- /doc/internals/BarclampProvisioner/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampProvisioner/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampPuppet/AgentSa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampPuppet/AgentSa.html -------------------------------------------------------------------------------- /doc/internals/BarclampPuppet/SaJig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampPuppet/SaJig.html -------------------------------------------------------------------------------- /doc/internals/BarclampSaltstack/Master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampSaltstack/Master.html -------------------------------------------------------------------------------- /doc/internals/BarclampSaltstack/Minion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampSaltstack/Minion.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Admin.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Async.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Client.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Discovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Discovery.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Event.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Jig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Jig.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Role.html -------------------------------------------------------------------------------- /doc/internals/BarclampTest/Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampTest/Server.html -------------------------------------------------------------------------------- /doc/internals/BarclampsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/BarclampsController.html -------------------------------------------------------------------------------- /doc/internals/CrowbarController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/CrowbarController.html -------------------------------------------------------------------------------- /doc/internals/CrowbarException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/CrowbarException.html -------------------------------------------------------------------------------- /doc/internals/CrowbarValidator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/CrowbarValidator.html -------------------------------------------------------------------------------- /doc/internals/DashboardController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/DashboardController.html -------------------------------------------------------------------------------- /doc/internals/Deployment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Deployment.html -------------------------------------------------------------------------------- /doc/internals/DeploymentRole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/DeploymentRole.html -------------------------------------------------------------------------------- /doc/internals/DeploymentRolesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/DeploymentRolesController.html -------------------------------------------------------------------------------- /doc/internals/DeploymentsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/DeploymentsController.html -------------------------------------------------------------------------------- /doc/internals/Doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Doc.html -------------------------------------------------------------------------------- /doc/internals/DocsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/DocsController.html -------------------------------------------------------------------------------- /doc/internals/Group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Group.html -------------------------------------------------------------------------------- /doc/internals/GroupsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/GroupsController.html -------------------------------------------------------------------------------- /doc/internals/Hammer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Hammer.html -------------------------------------------------------------------------------- /doc/internals/HammersController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/HammersController.html -------------------------------------------------------------------------------- /doc/internals/IP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/IP.html -------------------------------------------------------------------------------- /doc/internals/IP/IP4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/IP/IP4.html -------------------------------------------------------------------------------- /doc/internals/IP/IP6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/IP/IP6.html -------------------------------------------------------------------------------- /doc/internals/InterfacesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/InterfacesController.html -------------------------------------------------------------------------------- /doc/internals/Jig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Jig.html -------------------------------------------------------------------------------- /doc/internals/JigsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/JigsController.html -------------------------------------------------------------------------------- /doc/internals/Nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Nav.html -------------------------------------------------------------------------------- /doc/internals/Network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Network.html -------------------------------------------------------------------------------- /doc/internals/NetworkAllocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworkAllocation.html -------------------------------------------------------------------------------- /doc/internals/NetworkRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworkRange.html -------------------------------------------------------------------------------- /doc/internals/NetworkRangesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworkRangesController.html -------------------------------------------------------------------------------- /doc/internals/NetworkRouter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworkRouter.html -------------------------------------------------------------------------------- /doc/internals/NetworkRoutersController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworkRoutersController.html -------------------------------------------------------------------------------- /doc/internals/NetworksController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NetworksController.html -------------------------------------------------------------------------------- /doc/internals/Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Node.html -------------------------------------------------------------------------------- /doc/internals/NodeRole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRole.html -------------------------------------------------------------------------------- /doc/internals/NodeRole/InvalidState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRole/InvalidState.html -------------------------------------------------------------------------------- /doc/internals/NodeRole/InvalidTransition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRole/InvalidTransition.html -------------------------------------------------------------------------------- /doc/internals/NodeRole/MissingJig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRole/MissingJig.html -------------------------------------------------------------------------------- /doc/internals/NodeRoleAttribLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRoleAttribLink.html -------------------------------------------------------------------------------- /doc/internals/NodeRolesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodeRolesController.html -------------------------------------------------------------------------------- /doc/internals/NodesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NodesController.html -------------------------------------------------------------------------------- /doc/internals/NoopJig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/NoopJig.html -------------------------------------------------------------------------------- /doc/internals/Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Role.html -------------------------------------------------------------------------------- /doc/internals/Role/CONFLICTS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Role/CONFLICTS.html -------------------------------------------------------------------------------- /doc/internals/Role/MISSING_DEP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Role/MISSING_DEP.html -------------------------------------------------------------------------------- /doc/internals/Role/MISSING_JIG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Role/MISSING_JIG.html -------------------------------------------------------------------------------- /doc/internals/RoleRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/RoleRequire.html -------------------------------------------------------------------------------- /doc/internals/RoleRequireAttrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/RoleRequireAttrib.html -------------------------------------------------------------------------------- /doc/internals/RolesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/RolesController.html -------------------------------------------------------------------------------- /doc/internals/Run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Run.html -------------------------------------------------------------------------------- /doc/internals/RunsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/RunsController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/DocsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/DocsController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/GroupsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/GroupsController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/JigsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/JigsController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/NavsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/NavsController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/NodesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/NodesController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/RolesController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/RolesController.html -------------------------------------------------------------------------------- /doc/internals/Scaffolds/RunsController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Scaffolds/RunsController.html -------------------------------------------------------------------------------- /doc/internals/SecureShellHammer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/SecureShellHammer.html -------------------------------------------------------------------------------- /doc/internals/Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/Service.html -------------------------------------------------------------------------------- /doc/internals/SupportController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/SupportController.html -------------------------------------------------------------------------------- /doc/internals/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/User.html -------------------------------------------------------------------------------- /doc/internals/UsersController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/UsersController.html -------------------------------------------------------------------------------- /doc/internals/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/_index.html -------------------------------------------------------------------------------- /doc/internals/class_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/class_list.html -------------------------------------------------------------------------------- /doc/internals/css/common.css: -------------------------------------------------------------------------------- 1 | /* Override this file with custom rules */ -------------------------------------------------------------------------------- /doc/internals/css/full_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/css/full_list.css -------------------------------------------------------------------------------- /doc/internals/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/css/style.css -------------------------------------------------------------------------------- /doc/internals/file.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/file.README.html -------------------------------------------------------------------------------- /doc/internals/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/file_list.html -------------------------------------------------------------------------------- /doc/internals/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/frames.html -------------------------------------------------------------------------------- /doc/internals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/index.html -------------------------------------------------------------------------------- /doc/internals/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/js/app.js -------------------------------------------------------------------------------- /doc/internals/js/full_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/js/full_list.js -------------------------------------------------------------------------------- /doc/internals/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/js/jquery.js -------------------------------------------------------------------------------- /doc/internals/method_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/method_list.html -------------------------------------------------------------------------------- /doc/internals/top-level-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/internals/top-level-namespace.html -------------------------------------------------------------------------------- /doc/licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/README.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/README.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/berkshelf-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/berkshelf-2.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/deployer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/deployer.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/dns.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/licenses.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/logging.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/network.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/ntp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/ntp.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/provisioner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/provisioner.md -------------------------------------------------------------------------------- /doc/licenses/crowbar/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/licenses/crowbar/test.md -------------------------------------------------------------------------------- /doc/principles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/README.md -------------------------------------------------------------------------------- /doc/principles/attribute_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/attribute_injection.md -------------------------------------------------------------------------------- /doc/principles/attribute_injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/attribute_injection.png -------------------------------------------------------------------------------- /doc/principles/concepts-engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/concepts-engine.png -------------------------------------------------------------------------------- /doc/principles/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/concepts.md -------------------------------------------------------------------------------- /doc/principles/concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/concepts.png -------------------------------------------------------------------------------- /doc/principles/crowbar_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/crowbar_engine.png -------------------------------------------------------------------------------- /doc/principles/emergent_services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/emergent_services.md -------------------------------------------------------------------------------- /doc/principles/emergent_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/emergent_services.png -------------------------------------------------------------------------------- /doc/principles/heterogenous-os-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/heterogenous-os-support.md -------------------------------------------------------------------------------- /doc/principles/late_binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/late_binding.md -------------------------------------------------------------------------------- /doc/principles/ready_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/ready_state.md -------------------------------------------------------------------------------- /doc/principles/simulated_annealing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/simulated_annealing.md -------------------------------------------------------------------------------- /doc/principles/simulated_annealing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/principles/simulated_annealing.png -------------------------------------------------------------------------------- /doc/user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/doc/user-guide/README.md -------------------------------------------------------------------------------- /etc/init.d/crowbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/etc/init.d/crowbar -------------------------------------------------------------------------------- /puppet/.gitignore: -------------------------------------------------------------------------------- 1 | .librarian 2 | .tmp 3 | -------------------------------------------------------------------------------- /puppet/modules/stdlib/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/puppet/modules/stdlib/manifests/init.pp -------------------------------------------------------------------------------- /puppet/roles/puppet-test/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/puppet/roles/puppet-test/site.pp -------------------------------------------------------------------------------- /puppet/roles/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/puppet/roles/runner -------------------------------------------------------------------------------- /rails/.gitignore: -------------------------------------------------------------------------------- 1 | .yardoc/ -------------------------------------------------------------------------------- /rails/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /rails/.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/.simplecov -------------------------------------------------------------------------------- /rails/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/Gemfile -------------------------------------------------------------------------------- /rails/NOTES.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/NOTES.rspec -------------------------------------------------------------------------------- /rails/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/Rakefile -------------------------------------------------------------------------------- /rails/app/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/app/assets/images/barclamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/barclamp.png -------------------------------------------------------------------------------- /rails/app/assets/images/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/bunny.png -------------------------------------------------------------------------------- /rails/app/assets/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/controls.png -------------------------------------------------------------------------------- /rails/app/assets/images/crowbar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/crowbar-logo.png -------------------------------------------------------------------------------- /rails/app/assets/images/dell_blue_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/dell_blue_logo.jpg -------------------------------------------------------------------------------- /rails/app/assets/images/dell_tagline_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/dell_tagline_logo.jpg -------------------------------------------------------------------------------- /rails/app/assets/images/failbunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/failbunny.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/add.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/ajax-loader.gif -------------------------------------------------------------------------------- /rails/app/assets/images/icons/bunny.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/bunny.ico -------------------------------------------------------------------------------- /rails/app/assets/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/delete.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/help.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/active.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/blocked.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/error.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/idle.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/off.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/todo.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/led/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/led/wait.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/link.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/magnifier.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/monitor.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/server_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/server_add.png -------------------------------------------------------------------------------- /rails/app/assets/images/icons/toggle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/icons/toggle-on.png -------------------------------------------------------------------------------- /rails/app/assets/images/layout/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/layout/bunny.png -------------------------------------------------------------------------------- /rails/app/assets/images/layout/crowbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/layout/crowbar.png -------------------------------------------------------------------------------- /rails/app/assets/images/layout/dell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/layout/dell.png -------------------------------------------------------------------------------- /rails/app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/loading.gif -------------------------------------------------------------------------------- /rails/app/assets/images/mesa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/mesa.png -------------------------------------------------------------------------------- /rails/app/assets/images/ocb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/ocb_logo.png -------------------------------------------------------------------------------- /rails/app/assets/images/openCrowbarLogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/openCrowbarLogo.psd -------------------------------------------------------------------------------- /rails/app/assets/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/images/overlay.png -------------------------------------------------------------------------------- /rails/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/controls.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/crowbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/crowbar.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/doc.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/dragdrop.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/effects.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/html5.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/infovis/jit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/infovis/jit.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/jquery-ui.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/jquery.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/prototype.js -------------------------------------------------------------------------------- /rails/app/assets/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/javascripts/rails.js -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_bright.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_bright.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_common.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_common.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_default.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_default.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_doc.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_doc.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_errors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_errors.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_layout.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_layout.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_mixins.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_nav.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_nav.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_network.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_network.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_tables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_tables.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/_toc.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/_toc.sass -------------------------------------------------------------------------------- /rails/app/assets/stylesheets/ie.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/assets/stylesheets/ie.sass -------------------------------------------------------------------------------- /rails/app/controllers/attribs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/attribs_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/crowbar_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/crowbar_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/docs_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/groups_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/hammers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/hammers_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/jigs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/jigs_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/nodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/nodes_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/roles_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/runs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/runs_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/support_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/support_controller.rb -------------------------------------------------------------------------------- /rails/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /rails/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /rails/app/models/attrib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/attrib.rb -------------------------------------------------------------------------------- /rails/app/models/audit_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/audit_tracker.rb -------------------------------------------------------------------------------- /rails/app/models/available_hammer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/available_hammer.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_chef/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_chef/client.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_chef/jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_chef/jig.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_chef/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_chef/server.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_chef/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_chef/solo.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_chef/solo_jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_chef/solo_jig.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_consul/consul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_consul/consul.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_crowbar/jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_crowbar/jig.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_dhcp/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_dhcp/database.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_dhcp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_dhcp/server.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_dhcp/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_dhcp/service.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_dns/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_dns/client.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_dns/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_dns/service.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_network/lldpd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_network/lldpd.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_network/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_network/role.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_network/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_network/server.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_ntp/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_ntp/server.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_ntp/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_ntp/service.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_proxy/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_proxy/client.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_proxy/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_proxy/server.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_proxy/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_proxy/service.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_puppet/sa_jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_puppet/sa_jig.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/admin.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/async.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/async.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/client.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/discovery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/discovery.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/event.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/jig.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/role.rb -------------------------------------------------------------------------------- /rails/app/models/barclamp_test/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/barclamp_test/server.rb -------------------------------------------------------------------------------- /rails/app/models/crowbar_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/crowbar_exception.rb -------------------------------------------------------------------------------- /rails/app/models/crowbar_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/crowbar_validator.rb -------------------------------------------------------------------------------- /rails/app/models/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/deployment.rb -------------------------------------------------------------------------------- /rails/app/models/deployment_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/deployment_role.rb -------------------------------------------------------------------------------- /rails/app/models/dns_name_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/dns_name_entry.rb -------------------------------------------------------------------------------- /rails/app/models/dns_name_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/dns_name_filter.rb -------------------------------------------------------------------------------- /rails/app/models/doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/doc.rb -------------------------------------------------------------------------------- /rails/app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/group.rb -------------------------------------------------------------------------------- /rails/app/models/hammer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/hammer.rb -------------------------------------------------------------------------------- /rails/app/models/jig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/jig.rb -------------------------------------------------------------------------------- /rails/app/models/nav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/nav.rb -------------------------------------------------------------------------------- /rails/app/models/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/network.rb -------------------------------------------------------------------------------- /rails/app/models/network_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/network_allocation.rb -------------------------------------------------------------------------------- /rails/app/models/network_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/network_range.rb -------------------------------------------------------------------------------- /rails/app/models/network_router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/network_router.rb -------------------------------------------------------------------------------- /rails/app/models/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/node.rb -------------------------------------------------------------------------------- /rails/app/models/node_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/node_role.rb -------------------------------------------------------------------------------- /rails/app/models/node_role_attrib_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/node_role_attrib_link.rb -------------------------------------------------------------------------------- /rails/app/models/password_change_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/password_change_token.rb -------------------------------------------------------------------------------- /rails/app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/role.rb -------------------------------------------------------------------------------- /rails/app/models/role_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/role_require.rb -------------------------------------------------------------------------------- /rails/app/models/role_require_attrib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/role_require_attrib.rb -------------------------------------------------------------------------------- /rails/app/models/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/run.rb -------------------------------------------------------------------------------- /rails/app/models/secure_shell_hammer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/secure_shell_hammer.rb -------------------------------------------------------------------------------- /rails/app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/service.rb -------------------------------------------------------------------------------- /rails/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/models/user.rb -------------------------------------------------------------------------------- /rails/app/views/attribs/_default.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/attribs/_default.html.haml -------------------------------------------------------------------------------- /rails/app/views/attribs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/attribs/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/attribs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/attribs/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/barclamps/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/barclamps/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/barclamps/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/barclamps/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/dashboard/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/dashboard/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/dashboard/list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/dashboard/list.html.haml -------------------------------------------------------------------------------- /rails/app/views/deployments/graph.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/deployments/graph.html.haml -------------------------------------------------------------------------------- /rails/app/views/deployments/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/deployments/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/deployments/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/deployments/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/devise/shared/_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/devise/shared/_links.haml -------------------------------------------------------------------------------- /rails/app/views/docs/_tree.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/docs/_tree.html.haml -------------------------------------------------------------------------------- /rails/app/views/docs/export.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/docs/export.html.haml -------------------------------------------------------------------------------- /rails/app/views/docs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/docs/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/docs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/docs/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/docs/topic.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/docs/topic.html.haml -------------------------------------------------------------------------------- /rails/app/views/errors/500.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/errors/500.html.haml -------------------------------------------------------------------------------- /rails/app/views/groups/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/groups/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/groups/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/groups/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/hammers/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/hammers/_index.html.haml -------------------------------------------------------------------------------- /rails/app/views/hammers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/hammers/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/hammers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/hammers/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/interfaces/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/interfaces/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/jigs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/jigs/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/jigs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/jigs/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/layouts/doc_export.html.haml: -------------------------------------------------------------------------------- 1 | !!! 2 | %html 3 | %body 4 | = yield 5 | -------------------------------------------------------------------------------- /rails/app/views/machines/_node.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/machines/_node.html.erb -------------------------------------------------------------------------------- /rails/app/views/machines/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/machines/index.html.erb -------------------------------------------------------------------------------- /rails/app/views/machines/transition.erb: -------------------------------------------------------------------------------- 1 | Success 2 | <%= @machine.inspect %> 3 | -------------------------------------------------------------------------------- /rails/app/views/machines/transition.yaml.erb: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /rails/app/views/networks/_show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/networks/_show.html.haml -------------------------------------------------------------------------------- /rails/app/views/networks/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/networks/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/networks/map.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/networks/map.html.haml -------------------------------------------------------------------------------- /rails/app/views/networks/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/networks/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/node_roles/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/node_roles/_index.html.haml -------------------------------------------------------------------------------- /rails/app/views/node_roles/_raw.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/node_roles/_raw.html.haml -------------------------------------------------------------------------------- /rails/app/views/node_roles/anneal.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/node_roles/anneal.html.haml -------------------------------------------------------------------------------- /rails/app/views/node_roles/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/node_roles/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/node_roles/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/node_roles/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/_index.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/_show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/_show.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/actions.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/edit.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/new.html.haml -------------------------------------------------------------------------------- /rails/app/views/nodes/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/nodes/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/roles/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/roles/_index.html.haml -------------------------------------------------------------------------------- /rails/app/views/roles/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/roles/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/roles/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/roles/show.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/_settings.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/_settings.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/bootstrap.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/bootstrap.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/import.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/import.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/index.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/restart.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/restart.html.haml -------------------------------------------------------------------------------- /rails/app/views/support/settings.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/support/settings.html.haml -------------------------------------------------------------------------------- /rails/app/views/users/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/users/_form.html.haml -------------------------------------------------------------------------------- /rails/app/views/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/app/views/users/index.html.haml -------------------------------------------------------------------------------- /rails/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config.ru -------------------------------------------------------------------------------- /rails/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/application.rb -------------------------------------------------------------------------------- /rails/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/boot.rb -------------------------------------------------------------------------------- /rails/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/database.yml -------------------------------------------------------------------------------- /rails/config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/database.yml.travis -------------------------------------------------------------------------------- /rails/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/environment.rb -------------------------------------------------------------------------------- /rails/config/environments/dev_threaded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/environments/dev_threaded.rb -------------------------------------------------------------------------------- /rails/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/environments/development.rb -------------------------------------------------------------------------------- /rails/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/environments/production.rb -------------------------------------------------------------------------------- /rails/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/environments/test.rb -------------------------------------------------------------------------------- /rails/config/initializers/api_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/api_helpers.rb -------------------------------------------------------------------------------- /rails/config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/devise.rb -------------------------------------------------------------------------------- /rails/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/inflections.rb -------------------------------------------------------------------------------- /rails/config/initializers/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/logger.rb -------------------------------------------------------------------------------- /rails/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /rails/config/initializers/rails_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/rails_config.rb -------------------------------------------------------------------------------- /rails/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /rails/config/layercake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/layercake.json -------------------------------------------------------------------------------- /rails/config/locales/chef/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/chef/en.yml -------------------------------------------------------------------------------- /rails/config/locales/consul/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/consul/en.yml -------------------------------------------------------------------------------- /rails/config/locales/crowbar/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/crowbar/en.yml -------------------------------------------------------------------------------- /rails/config/locales/deployer/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/deployer/en.yml -------------------------------------------------------------------------------- /rails/config/locales/dhcp/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/dhcp/en.yml -------------------------------------------------------------------------------- /rails/config/locales/dns/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/dns/en.yml -------------------------------------------------------------------------------- /rails/config/locales/docker/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/docker/en.yml -------------------------------------------------------------------------------- /rails/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/en.yml -------------------------------------------------------------------------------- /rails/config/locales/logging/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/logging/en.yml -------------------------------------------------------------------------------- /rails/config/locales/network/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/network/en.yml -------------------------------------------------------------------------------- /rails/config/locales/ntp/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/ntp/en.yml -------------------------------------------------------------------------------- /rails/config/locales/provisioner/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/provisioner/en.yml -------------------------------------------------------------------------------- /rails/config/locales/proxy/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/proxy/en.yml -------------------------------------------------------------------------------- /rails/config/locales/puppet/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/puppet/en.yml -------------------------------------------------------------------------------- /rails/config/locales/rabbitmq/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/rabbitmq/en.yml -------------------------------------------------------------------------------- /rails/config/locales/saltstack/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/saltstack/en.yml -------------------------------------------------------------------------------- /rails/config/locales/test/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/locales/test/en.yml -------------------------------------------------------------------------------- /rails/config/navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/navigation.rb -------------------------------------------------------------------------------- /rails/config/preinitializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/preinitializer.rb -------------------------------------------------------------------------------- /rails/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/routes.rb -------------------------------------------------------------------------------- /rails/config/settings/development.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/config/settings/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/config/settings/production.yml -------------------------------------------------------------------------------- /rails/config/settings/test.yml: -------------------------------------------------------------------------------- 1 | docs: 2 | debug: false 3 | -------------------------------------------------------------------------------- /rails/db/KEEP_THIS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/db/migrate/20150513214112_add_que.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/db/migrate/20150513214112_add_que.rb -------------------------------------------------------------------------------- /rails/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/db/seeds.rb -------------------------------------------------------------------------------- /rails/lib/api_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/api_helper.rb -------------------------------------------------------------------------------- /rails/lib/audit_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/audit_actions.rb -------------------------------------------------------------------------------- /rails/lib/consul_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/consul_access.rb -------------------------------------------------------------------------------- /rails/lib/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/ip.rb -------------------------------------------------------------------------------- /rails/lib/ocb_switch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/ocb_switch.rb -------------------------------------------------------------------------------- /rails/lib/offline/role-.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/offline/role-.template -------------------------------------------------------------------------------- /rails/lib/publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/publisher.rb -------------------------------------------------------------------------------- /rails/lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /rails/lib/tasks/fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/lib/tasks/fixtures.rake -------------------------------------------------------------------------------- /rails/log/KEEP_ME: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/public/404.html -------------------------------------------------------------------------------- /rails/public/405.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/public/405.html -------------------------------------------------------------------------------- /rails/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/public/422.html -------------------------------------------------------------------------------- /rails/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/public/500.html -------------------------------------------------------------------------------- /rails/public/export/KEEP_THIS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/import/KEEP_THIS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/public/robots.txt -------------------------------------------------------------------------------- /rails/puma-dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/puma-dev.cfg -------------------------------------------------------------------------------- /rails/puma-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/puma-test.cfg -------------------------------------------------------------------------------- /rails/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/puma.cfg -------------------------------------------------------------------------------- /rails/script/event_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/script/event_client.rb -------------------------------------------------------------------------------- /rails/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/script/rails -------------------------------------------------------------------------------- /rails/spec/factories/attribs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/attribs.rb -------------------------------------------------------------------------------- /rails/spec/factories/barclamps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/barclamps.rb -------------------------------------------------------------------------------- /rails/spec/factories/deployments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/deployments.rb -------------------------------------------------------------------------------- /rails/spec/factories/dns_name_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/dns_name_filters.rb -------------------------------------------------------------------------------- /rails/spec/factories/hammers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/hammers.rb -------------------------------------------------------------------------------- /rails/spec/factories/jigs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/jigs.rb -------------------------------------------------------------------------------- /rails/spec/factories/network_allocations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/network_allocations.rb -------------------------------------------------------------------------------- /rails/spec/factories/network_ranges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/network_ranges.rb -------------------------------------------------------------------------------- /rails/spec/factories/networks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/networks.rb -------------------------------------------------------------------------------- /rails/spec/factories/node_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/node_roles.rb -------------------------------------------------------------------------------- /rails/spec/factories/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/nodes.rb -------------------------------------------------------------------------------- /rails/spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/roles.rb -------------------------------------------------------------------------------- /rails/spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/factories/users.rb -------------------------------------------------------------------------------- /rails/spec/models/dns_name_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/dns_name_filter_spec.rb -------------------------------------------------------------------------------- /rails/spec/models/jig_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/jig_spec.rb -------------------------------------------------------------------------------- /rails/spec/models/network_range_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/network_range_spec.rb -------------------------------------------------------------------------------- /rails/spec/models/network_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/network_spec.rb -------------------------------------------------------------------------------- /rails/spec/models/node_role_spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/node_role_spec -------------------------------------------------------------------------------- /rails/spec/models/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/node_spec.rb -------------------------------------------------------------------------------- /rails/spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/models/user_spec.rb -------------------------------------------------------------------------------- /rails/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/spec/spec_helper.rb -------------------------------------------------------------------------------- /rails/test/data/node_discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/data/node_discovery.json -------------------------------------------------------------------------------- /rails/test/fixtures/.empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /rails/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/test_helper.rb -------------------------------------------------------------------------------- /rails/test/unit/barclamp_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/barclamp_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/deployment_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/deployment_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/group_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/group_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/i18n_test.rb -------------------------------------------------------------------------------- /rails/test/unit/jig_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/jig_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/node_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/node_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/role_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/role_model_test.rb -------------------------------------------------------------------------------- /rails/test/unit/user_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/rails/test/unit/user_model_test.rb -------------------------------------------------------------------------------- /script/roles/chef-solo/01-solo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/script/roles/chef-solo/01-solo.sh -------------------------------------------------------------------------------- /script/roles/crowbar/001_ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/script/roles/crowbar/001_ping.sh -------------------------------------------------------------------------------- /script/roles/sysdig/01-install-sysdig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/script/roles/sysdig/01-install-sysdig.sh -------------------------------------------------------------------------------- /script/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/script/runner -------------------------------------------------------------------------------- /setup/00-crowbar-rake-tasks.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/setup/00-crowbar-rake-tasks.install -------------------------------------------------------------------------------- /setup/01-crowbar-start.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/setup/01-crowbar-start.install -------------------------------------------------------------------------------- /setup/02-make-machine-key.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/setup/02-make-machine-key.install -------------------------------------------------------------------------------- /sledgehammer/build.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/sledgehammer/build.expect -------------------------------------------------------------------------------- /sledgehammer/dhclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/sledgehammer/dhclient.conf -------------------------------------------------------------------------------- /sledgehammer/sledgehammer.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/sledgehammer/sledgehammer.ks -------------------------------------------------------------------------------- /sledgehammer/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/sledgehammer/sshd_config -------------------------------------------------------------------------------- /sledgehammer/start-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/sledgehammer/start-up.sh -------------------------------------------------------------------------------- /smoketest/00-check-dns.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/smoketest/00-check-dns.test -------------------------------------------------------------------------------- /smoketest/00-check-ntp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/smoketest/00-check-ntp.test -------------------------------------------------------------------------------- /smoketest/00-default.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 -------------------------------------------------------------------------------- /smoketest/00-scratch.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/smoketest/00-scratch.test -------------------------------------------------------------------------------- /tests/prequel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tests/prequel.sh -------------------------------------------------------------------------------- /tests/test-docker-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tests/test-docker-admin.sh -------------------------------------------------------------------------------- /tools/build_sledgehammer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/build_sledgehammer.sh -------------------------------------------------------------------------------- /tools/crowbar-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/crowbar-install.sh -------------------------------------------------------------------------------- /tools/docker-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/docker-admin -------------------------------------------------------------------------------- /tools/docker-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/docker-init.sh -------------------------------------------------------------------------------- /tools/docker-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/docker-slave -------------------------------------------------------------------------------- /tools/docker-slaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/docker-slaves -------------------------------------------------------------------------------- /tools/kvm-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/kvm-admin -------------------------------------------------------------------------------- /tools/kvm-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/kvm-slave -------------------------------------------------------------------------------- /tools/kvm_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/kvm_lib.sh -------------------------------------------------------------------------------- /tools/proxy_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/proxy_lib.sh -------------------------------------------------------------------------------- /tools/rails-console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/rails-console.sh -------------------------------------------------------------------------------- /tools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/test.sh -------------------------------------------------------------------------------- /tools/test_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/test_cleanup.sh -------------------------------------------------------------------------------- /tools/tmux_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/tmux_lib.sh -------------------------------------------------------------------------------- /tools/travis_consul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/tools/travis_consul.sh -------------------------------------------------------------------------------- /updates/control_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/updates/control_lib.sh -------------------------------------------------------------------------------- /updates/parse_node_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/updates/parse_node_data -------------------------------------------------------------------------------- /updates/wsman/lib/wsman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/updates/wsman/lib/wsman.rb -------------------------------------------------------------------------------- /updates/wsman/wsman.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencrowbar/core/HEAD/updates/wsman/wsman.gemspec --------------------------------------------------------------------------------