├── .expeditor ├── config.yml ├── release.omnibus.yml └── verify.pipeline.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_TEMPLATE.md │ ├── ENHANCEMENT_REQUEST_TEMPLATE.md │ └── SUPPORT_QUESTION.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── RELEASE_NOTES.md ├── RELEASE_PROCESS.md ├── VERSION ├── apps └── pushy │ ├── include │ ├── pushy_event.hrl │ ├── pushy_sql.hrl │ ├── pushy_types.hrl │ └── pushy_wm.hrl │ ├── priv │ ├── dispatch.conf │ └── pgsql_statements.config │ ├── src │ ├── pushy.app.src │ ├── pushy.hrl │ ├── pushy_app.erl │ ├── pushy_broker.erl │ ├── pushy_check_groups.erl │ ├── pushy_command_switch.erl │ ├── pushy_config_resource.erl │ ├── pushy_event.erl │ ├── pushy_feed_resource.erl │ ├── pushy_fsm_utils.erl │ ├── pushy_heartbeat_generator.erl │ ├── pushy_http_common.erl │ ├── pushy_job_monitor.erl │ ├── pushy_job_output_resource.erl │ ├── pushy_job_state.erl │ ├── pushy_job_state_sup.erl │ ├── pushy_jobs_resource.erl │ ├── pushy_key_manager.erl │ ├── pushy_named_job_resource.erl │ ├── pushy_named_node_state_resource.erl │ ├── pushy_node_state.erl │ ├── pushy_node_state_sup.erl │ ├── pushy_node_states_resource.erl │ ├── pushy_node_stats.erl │ ├── pushy_node_stats_scanner.erl │ ├── pushy_object.erl │ ├── pushy_org.erl │ ├── pushy_org_events.erl │ ├── pushy_org_events_sup.erl │ ├── pushy_principal.erl │ ├── pushy_process_monitor.erl │ ├── pushy_sql.erl │ ├── pushy_status_resource.erl │ ├── pushy_sup.erl │ ├── pushy_tools.erl │ ├── pushy_wm_base.erl │ └── pushy_zap.erl │ └── test │ ├── pushy_api_test.erl │ ├── pushy_api_util.erl │ ├── pushy_job_feed_test.erl │ ├── pushy_job_monitor_tests.erl │ ├── pushy_node_state_tests.erl │ ├── pushy_object_tests.erl │ ├── pushy_org_tests.erl │ ├── pushy_principal_test.erl │ ├── secrets.json │ ├── test_fsm.erl │ ├── test_util.erl │ └── testkey.pem ├── config ├── app.config ├── client_public.pem ├── vars.config └── vm.args ├── docs ├── capture.md ├── control-flow.graffle ├── control-flow.png ├── crypto-design.md ├── debugging.md ├── design-old │ ├── 0mq.graffle │ ├── Opscode_Logo_Small.png │ ├── RFC_HeartbeatFSM.org │ ├── RFC_auth_model.org │ ├── RFC_imp_signing.org │ ├── RFC_merge_command_and_heartbeat.org │ ├── cb-comments.org │ ├── design.org │ ├── design.pdf │ ├── design_client_fsm.org │ ├── design_client_tracking.org │ ├── design_heartbeat.org │ ├── design_job_lifecycle.org │ ├── design_product.pdf │ ├── design_rest_api.org │ ├── design_zeromq_messages.org │ ├── future_work.org │ ├── heartbeat.graffle │ ├── heartbeat.org │ ├── heartbeat.png │ ├── job-lifecycle.graffle │ ├── job-lifecycle.png │ ├── product_big_picture.org │ ├── protocol.graffle │ ├── protocol.png │ ├── rewrite_todo.org │ └── security.org ├── job-lifecycle.graffle ├── job-lifecycle.png ├── opt_params.md ├── rest-api-summary.txt ├── rest-api.graffle ├── rest-api.org ├── rest-api.png └── sse-design.md ├── keys ├── pushy_priv.pem └── pushy_pub.pem ├── oc-pushy-pedant ├── Gemfile ├── Gemfile.lock ├── README.md ├── dev │ └── push-setup │ │ ├── .gitignore │ │ ├── .kitchen.yml │ │ ├── Berksfile │ │ ├── Gemfile │ │ ├── README.md │ │ ├── chefignore │ │ ├── metadata.rb │ │ ├── push-client.json │ │ ├── push-setup │ │ ├── recipes │ │ ├── client.rb │ │ └── server.rb │ │ ├── spec │ │ ├── spec_helper.rb │ │ └── unit │ │ │ └── recipes │ │ │ └── default_spec.rb │ │ ├── templates │ │ └── knife.rb.erb │ │ └── test │ │ └── integration │ │ ├── default │ │ └── serverspec │ │ │ └── default_spec.rb │ │ └── helpers │ │ └── serverspec │ │ └── spec_helper.rb ├── lib │ └── pedant │ │ └── pushy_command_line.rb ├── multitenant_config.rb ├── oc-pushy-pedant ├── oc-pushy-pedant.gemspec └── spec │ └── pushy │ ├── integration │ ├── config_spec.rb │ ├── end_to_end_spec.rb │ ├── filedir_spec.rb │ ├── jobs_spec.rb │ ├── node_states_spec.rb │ ├── sse_spec.rb │ └── status_spec.rb │ ├── spec_helper.rb │ └── support │ ├── authorization_groups_util.rb │ ├── concern.rb │ ├── echo_yahoo_to_tmp_pushytest │ ├── end_to_end_util.rb │ ├── helper_util.rb │ ├── jobs_util.rb │ ├── key_cache.rb │ ├── sse_util.rb │ └── validation_util.rb ├── omnibus ├── .gitignore ├── .kitchen.yml ├── Berksfile ├── CHEF-EULA.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── RPM_SIGNING.md ├── config │ ├── projects │ │ └── opscode-push-jobs-server.rb │ ├── software │ │ ├── oc-pushy-pedant.rb │ │ ├── opscode-pushy-server-ctl.rb │ │ ├── opscode-pushy-server.rb │ │ ├── pushy-server-cookbooks.rb │ │ └── pushy-server-schema.rb │ └── templates │ │ └── opscode-pushy-server-ctl │ │ └── opscode-pushy-server-ctl.erb ├── cookbooks │ └── README ├── files │ ├── pushy-server-cookbooks │ │ └── opscode-pushy-server │ │ │ ├── Berksfile │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ └── default.rb │ │ │ ├── libraries │ │ │ ├── ec_postgres.rb │ │ │ ├── pushy_server.rb │ │ │ └── secrets.rb │ │ │ ├── metadata.rb │ │ │ ├── providers │ │ │ ├── pg_cluster.rb │ │ │ ├── pg_database.rb │ │ │ ├── pg_sqitch.rb │ │ │ ├── pg_upgrade.rb │ │ │ ├── pg_user.rb │ │ │ └── pg_user_table_access.rb │ │ │ ├── recipes │ │ │ ├── bootstrap.rb │ │ │ ├── bootstrap_disable.rb │ │ │ ├── default.rb │ │ │ ├── nginx.rb │ │ │ ├── oc-pushy-pedant.rb │ │ │ ├── opscode-pushy-server.rb │ │ │ ├── opscode-pushy-server_disable.rb │ │ │ ├── push_database.rb │ │ │ └── show_config.rb │ │ │ ├── resources │ │ │ ├── pg_cluster.rb │ │ │ ├── pg_database.rb │ │ │ ├── pg_sqitch.rb │ │ │ ├── pg_upgrade.rb │ │ │ ├── pg_user.rb │ │ │ └── pg_user_table_access.rb │ │ │ └── templates │ │ │ └── default │ │ │ ├── nginx-external.conf.erb │ │ │ ├── nginx-upstreams.conf.erb │ │ │ ├── opscode-pushy-server.config.erb │ │ │ ├── pedant_config.rb.erb │ │ │ ├── sv-opscode-pushy-server-log-run.erb │ │ │ ├── sv-opscode-pushy-server-run.erb │ │ │ └── vm.args.erb │ └── pushy-server-ctl-commands │ │ ├── exclude-binary-logs.rb │ │ └── test.rb ├── omnibus-test.sh ├── omnibus.rb └── package-scripts │ └── opscode-push-jobs-server │ ├── postinst │ └── postrm ├── omnibus_overrides.rb ├── pushy-server-schema ├── .gitattributes ├── Makefile ├── deploy │ ├── job_nodes.sql │ ├── job_options.sql │ ├── job_output.sql │ ├── job_status.sql │ └── jobs.sql ├── revert │ ├── job_nodes.sql │ ├── job_options.sql │ ├── job_output.sql │ ├── job_status.sql │ └── jobs.sql ├── sqitch.conf ├── sqitch.plan ├── t │ ├── pushy_server_schema.pg │ ├── test_job_nodes_table.sql │ ├── test_job_options_table.sql │ ├── test_job_output_table.sql │ ├── test_job_status_table.sql │ └── test_jobs_table.sql └── verify │ ├── job_nodes.sql │ ├── job_options.sql │ ├── job_output.sql │ ├── job_status.sql │ └── jobs.sql ├── rebar.config ├── rebar.lock ├── rebar3 └── scripts └── bk_tests ├── bk_install.sh └── pb_hba.conf /.expeditor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.expeditor/config.yml -------------------------------------------------------------------------------- /.expeditor/release.omnibus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.expeditor/release.omnibus.yml -------------------------------------------------------------------------------- /.expeditor/verify.pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.expeditor/verify.pipeline.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.github/ISSUE_TEMPLATE/BUG_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ENHANCEMENT_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.github/ISSUE_TEMPLATE/ENHANCEMENT_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.4 -------------------------------------------------------------------------------- /apps/pushy/include/pushy_event.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/include/pushy_event.hrl -------------------------------------------------------------------------------- /apps/pushy/include/pushy_sql.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/include/pushy_sql.hrl -------------------------------------------------------------------------------- /apps/pushy/include/pushy_types.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/include/pushy_types.hrl -------------------------------------------------------------------------------- /apps/pushy/include/pushy_wm.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/include/pushy_wm.hrl -------------------------------------------------------------------------------- /apps/pushy/priv/dispatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/priv/dispatch.conf -------------------------------------------------------------------------------- /apps/pushy/priv/pgsql_statements.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/priv/pgsql_statements.config -------------------------------------------------------------------------------- /apps/pushy/src/pushy.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy.app.src -------------------------------------------------------------------------------- /apps/pushy/src/pushy.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy.hrl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_app.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_broker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_broker.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_check_groups.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_check_groups.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_command_switch.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_command_switch.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_config_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_config_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_event.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_event.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_feed_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_feed_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_fsm_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_fsm_utils.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_heartbeat_generator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_heartbeat_generator.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_http_common.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_http_common.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_job_monitor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_job_monitor.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_job_output_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_job_output_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_job_state.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_job_state.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_job_state_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_job_state_sup.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_jobs_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_jobs_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_key_manager.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_key_manager.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_named_job_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_named_job_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_named_node_state_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_named_node_state_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_node_state.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_node_state.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_node_state_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_node_state_sup.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_node_states_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_node_states_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_node_stats.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_node_stats.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_node_stats_scanner.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_node_stats_scanner.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_object.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_object.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_org.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_org.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_org_events.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_org_events.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_org_events_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_org_events_sup.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_principal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_principal.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_process_monitor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_process_monitor.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_sql.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_sql.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_status_resource.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_status_resource.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_sup.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_tools.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_tools.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_wm_base.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_wm_base.erl -------------------------------------------------------------------------------- /apps/pushy/src/pushy_zap.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/src/pushy_zap.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_api_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_api_test.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_api_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_api_util.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_job_feed_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_job_feed_test.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_job_monitor_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_job_monitor_tests.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_node_state_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_node_state_tests.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_object_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_object_tests.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_org_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_org_tests.erl -------------------------------------------------------------------------------- /apps/pushy/test/pushy_principal_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/pushy_principal_test.erl -------------------------------------------------------------------------------- /apps/pushy/test/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/secrets.json -------------------------------------------------------------------------------- /apps/pushy/test/test_fsm.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/test_fsm.erl -------------------------------------------------------------------------------- /apps/pushy/test/test_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/test_util.erl -------------------------------------------------------------------------------- /apps/pushy/test/testkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/apps/pushy/test/testkey.pem -------------------------------------------------------------------------------- /config/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/config/app.config -------------------------------------------------------------------------------- /config/client_public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/config/client_public.pem -------------------------------------------------------------------------------- /config/vars.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/config/vars.config -------------------------------------------------------------------------------- /config/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/config/vm.args -------------------------------------------------------------------------------- /docs/capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/capture.md -------------------------------------------------------------------------------- /docs/control-flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/control-flow.graffle -------------------------------------------------------------------------------- /docs/control-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/control-flow.png -------------------------------------------------------------------------------- /docs/crypto-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/crypto-design.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/design-old/0mq.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/0mq.graffle -------------------------------------------------------------------------------- /docs/design-old/Opscode_Logo_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/Opscode_Logo_Small.png -------------------------------------------------------------------------------- /docs/design-old/RFC_HeartbeatFSM.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/RFC_HeartbeatFSM.org -------------------------------------------------------------------------------- /docs/design-old/RFC_auth_model.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/RFC_auth_model.org -------------------------------------------------------------------------------- /docs/design-old/RFC_imp_signing.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/RFC_imp_signing.org -------------------------------------------------------------------------------- /docs/design-old/RFC_merge_command_and_heartbeat.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/RFC_merge_command_and_heartbeat.org -------------------------------------------------------------------------------- /docs/design-old/cb-comments.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/cb-comments.org -------------------------------------------------------------------------------- /docs/design-old/design.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design.org -------------------------------------------------------------------------------- /docs/design-old/design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design.pdf -------------------------------------------------------------------------------- /docs/design-old/design_client_fsm.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_client_fsm.org -------------------------------------------------------------------------------- /docs/design-old/design_client_tracking.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_client_tracking.org -------------------------------------------------------------------------------- /docs/design-old/design_heartbeat.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_heartbeat.org -------------------------------------------------------------------------------- /docs/design-old/design_job_lifecycle.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_job_lifecycle.org -------------------------------------------------------------------------------- /docs/design-old/design_product.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_product.pdf -------------------------------------------------------------------------------- /docs/design-old/design_rest_api.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_rest_api.org -------------------------------------------------------------------------------- /docs/design-old/design_zeromq_messages.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/design_zeromq_messages.org -------------------------------------------------------------------------------- /docs/design-old/future_work.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/future_work.org -------------------------------------------------------------------------------- /docs/design-old/heartbeat.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/heartbeat.graffle -------------------------------------------------------------------------------- /docs/design-old/heartbeat.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/heartbeat.org -------------------------------------------------------------------------------- /docs/design-old/heartbeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/heartbeat.png -------------------------------------------------------------------------------- /docs/design-old/job-lifecycle.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/job-lifecycle.graffle -------------------------------------------------------------------------------- /docs/design-old/job-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/job-lifecycle.png -------------------------------------------------------------------------------- /docs/design-old/product_big_picture.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/product_big_picture.org -------------------------------------------------------------------------------- /docs/design-old/protocol.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/protocol.graffle -------------------------------------------------------------------------------- /docs/design-old/protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/protocol.png -------------------------------------------------------------------------------- /docs/design-old/rewrite_todo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/rewrite_todo.org -------------------------------------------------------------------------------- /docs/design-old/security.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/design-old/security.org -------------------------------------------------------------------------------- /docs/job-lifecycle.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/job-lifecycle.graffle -------------------------------------------------------------------------------- /docs/job-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/job-lifecycle.png -------------------------------------------------------------------------------- /docs/opt_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/opt_params.md -------------------------------------------------------------------------------- /docs/rest-api-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/rest-api-summary.txt -------------------------------------------------------------------------------- /docs/rest-api.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/rest-api.graffle -------------------------------------------------------------------------------- /docs/rest-api.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/rest-api.org -------------------------------------------------------------------------------- /docs/rest-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/rest-api.png -------------------------------------------------------------------------------- /docs/sse-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/docs/sse-design.md -------------------------------------------------------------------------------- /keys/pushy_priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/keys/pushy_priv.pem -------------------------------------------------------------------------------- /keys/pushy_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/keys/pushy_pub.pem -------------------------------------------------------------------------------- /oc-pushy-pedant/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/Gemfile -------------------------------------------------------------------------------- /oc-pushy-pedant/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/Gemfile.lock -------------------------------------------------------------------------------- /oc-pushy-pedant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/README.md -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/.gitignore -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/.kitchen.yml -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/Gemfile -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/README.md -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/chefignore -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/metadata.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/push-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/push-client.json -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/push-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/push-setup -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/recipes/client.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/recipes/server.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/spec/spec_helper.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/templates/knife.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/templates/knife.rb.erb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/test/integration/default/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/test/integration/default/serverspec/default_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/dev/push-setup/test/integration/helpers/serverspec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/dev/push-setup/test/integration/helpers/serverspec/spec_helper.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/lib/pedant/pushy_command_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/lib/pedant/pushy_command_line.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/multitenant_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/multitenant_config.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/oc-pushy-pedant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/oc-pushy-pedant -------------------------------------------------------------------------------- /oc-pushy-pedant/oc-pushy-pedant.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/oc-pushy-pedant.gemspec -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/config_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/end_to_end_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/end_to_end_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/filedir_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/filedir_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/jobs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/jobs_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/node_states_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/node_states_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/sse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/sse_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/integration/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/integration/status_spec.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/spec_helper.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/authorization_groups_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/authorization_groups_util.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/concern.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/echo_yahoo_to_tmp_pushytest: -------------------------------------------------------------------------------- 1 | if [ -n "$1" ]; then sleep $1; fi 2 | echo YAHOO >> /tmp/pushytest 3 | -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/end_to_end_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/end_to_end_util.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/helper_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/helper_util.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/jobs_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/jobs_util.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/key_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/key_cache.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/sse_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/sse_util.rb -------------------------------------------------------------------------------- /oc-pushy-pedant/spec/pushy/support/validation_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/oc-pushy-pedant/spec/pushy/support/validation_util.rb -------------------------------------------------------------------------------- /omnibus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/.gitignore -------------------------------------------------------------------------------- /omnibus/.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/.kitchen.yml -------------------------------------------------------------------------------- /omnibus/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/Berksfile -------------------------------------------------------------------------------- /omnibus/CHEF-EULA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/CHEF-EULA.md -------------------------------------------------------------------------------- /omnibus/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/Gemfile -------------------------------------------------------------------------------- /omnibus/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/Gemfile.lock -------------------------------------------------------------------------------- /omnibus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/README.md -------------------------------------------------------------------------------- /omnibus/RPM_SIGNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/RPM_SIGNING.md -------------------------------------------------------------------------------- /omnibus/config/projects/opscode-push-jobs-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/projects/opscode-push-jobs-server.rb -------------------------------------------------------------------------------- /omnibus/config/software/oc-pushy-pedant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/software/oc-pushy-pedant.rb -------------------------------------------------------------------------------- /omnibus/config/software/opscode-pushy-server-ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/software/opscode-pushy-server-ctl.rb -------------------------------------------------------------------------------- /omnibus/config/software/opscode-pushy-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/software/opscode-pushy-server.rb -------------------------------------------------------------------------------- /omnibus/config/software/pushy-server-cookbooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/software/pushy-server-cookbooks.rb -------------------------------------------------------------------------------- /omnibus/config/software/pushy-server-schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/software/pushy-server-schema.rb -------------------------------------------------------------------------------- /omnibus/config/templates/opscode-pushy-server-ctl/opscode-pushy-server-ctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/config/templates/opscode-pushy-server-ctl/opscode-pushy-server-ctl.erb -------------------------------------------------------------------------------- /omnibus/cookbooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/cookbooks/README -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/Berksfile -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/CHANGELOG.md -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/README.md -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/attributes/default.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/ec_postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/ec_postgres.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/pushy_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/pushy_server.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/libraries/secrets.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/metadata.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_cluster.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_database.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_sqitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_sqitch.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_upgrade.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_user.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_user_table_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/providers/pg_user_table_access.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/bootstrap.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/bootstrap_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/bootstrap_disable.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/default.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/nginx.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/oc-pushy-pedant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/oc-pushy-pedant.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/opscode-pushy-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/opscode-pushy-server.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/opscode-pushy-server_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/opscode-pushy-server_disable.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/push_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/push_database.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/show_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/recipes/show_config.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_cluster.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_database.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_sqitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_sqitch.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_upgrade.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_user.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_user_table_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/resources/pg_user_table_access.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/nginx-external.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/nginx-external.conf.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/nginx-upstreams.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/nginx-upstreams.conf.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/opscode-pushy-server.config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/opscode-pushy-server.config.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/pedant_config.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/pedant_config.rb.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/sv-opscode-pushy-server-log-run.erb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec svlogd -tt <%= @options[:log_directory] %> 3 | -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/sv-opscode-pushy-server-run.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/sv-opscode-pushy-server-run.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/vm.args.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-cookbooks/opscode-pushy-server/templates/default/vm.args.erb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-ctl-commands/exclude-binary-logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-ctl-commands/exclude-binary-logs.rb -------------------------------------------------------------------------------- /omnibus/files/pushy-server-ctl-commands/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/files/pushy-server-ctl-commands/test.rb -------------------------------------------------------------------------------- /omnibus/omnibus-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/omnibus-test.sh -------------------------------------------------------------------------------- /omnibus/omnibus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/omnibus.rb -------------------------------------------------------------------------------- /omnibus/package-scripts/opscode-push-jobs-server/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/package-scripts/opscode-push-jobs-server/postinst -------------------------------------------------------------------------------- /omnibus/package-scripts/opscode-push-jobs-server/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus/package-scripts/opscode-push-jobs-server/postrm -------------------------------------------------------------------------------- /omnibus_overrides.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/omnibus_overrides.rb -------------------------------------------------------------------------------- /pushy-server-schema/.gitattributes: -------------------------------------------------------------------------------- 1 | sqitch.plan merge=union 2 | -------------------------------------------------------------------------------- /pushy-server-schema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/Makefile -------------------------------------------------------------------------------- /pushy-server-schema/deploy/job_nodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/deploy/job_nodes.sql -------------------------------------------------------------------------------- /pushy-server-schema/deploy/job_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/deploy/job_options.sql -------------------------------------------------------------------------------- /pushy-server-schema/deploy/job_output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/deploy/job_output.sql -------------------------------------------------------------------------------- /pushy-server-schema/deploy/job_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/deploy/job_status.sql -------------------------------------------------------------------------------- /pushy-server-schema/deploy/jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/deploy/jobs.sql -------------------------------------------------------------------------------- /pushy-server-schema/revert/job_nodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/revert/job_nodes.sql -------------------------------------------------------------------------------- /pushy-server-schema/revert/job_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/revert/job_options.sql -------------------------------------------------------------------------------- /pushy-server-schema/revert/job_output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/revert/job_output.sql -------------------------------------------------------------------------------- /pushy-server-schema/revert/job_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/revert/job_status.sql -------------------------------------------------------------------------------- /pushy-server-schema/revert/jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/revert/jobs.sql -------------------------------------------------------------------------------- /pushy-server-schema/sqitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/sqitch.conf -------------------------------------------------------------------------------- /pushy-server-schema/sqitch.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/sqitch.plan -------------------------------------------------------------------------------- /pushy-server-schema/t/pushy_server_schema.pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/pushy_server_schema.pg -------------------------------------------------------------------------------- /pushy-server-schema/t/test_job_nodes_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/test_job_nodes_table.sql -------------------------------------------------------------------------------- /pushy-server-schema/t/test_job_options_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/test_job_options_table.sql -------------------------------------------------------------------------------- /pushy-server-schema/t/test_job_output_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/test_job_output_table.sql -------------------------------------------------------------------------------- /pushy-server-schema/t/test_job_status_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/test_job_status_table.sql -------------------------------------------------------------------------------- /pushy-server-schema/t/test_jobs_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/t/test_jobs_table.sql -------------------------------------------------------------------------------- /pushy-server-schema/verify/job_nodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/verify/job_nodes.sql -------------------------------------------------------------------------------- /pushy-server-schema/verify/job_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/verify/job_options.sql -------------------------------------------------------------------------------- /pushy-server-schema/verify/job_output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/verify/job_output.sql -------------------------------------------------------------------------------- /pushy-server-schema/verify/job_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/verify/job_status.sql -------------------------------------------------------------------------------- /pushy-server-schema/verify/jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/pushy-server-schema/verify/jobs.sql -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/rebar.lock -------------------------------------------------------------------------------- /rebar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/rebar3 -------------------------------------------------------------------------------- /scripts/bk_tests/bk_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/scripts/bk_tests/bk_install.sh -------------------------------------------------------------------------------- /scripts/bk_tests/pb_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/opscode-pushy-server/HEAD/scripts/bk_tests/pb_hba.conf --------------------------------------------------------------------------------