├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── Vagrantfile ├── acceptance ├── acceptance_suite_test.go ├── assets │ ├── dummy-release.tgz │ ├── dummy-too-boshrelease │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ │ ├── blobs.yml │ │ │ └── final.yml │ │ ├── jobs │ │ │ └── dummyToo │ │ │ │ ├── monit │ │ │ │ ├── spec │ │ │ │ └── templates │ │ │ │ └── ctl.erb │ │ ├── packages │ │ │ └── .gitkeep │ │ └── src │ │ │ └── .gitkeep │ ├── dummy-too-release.tgz │ ├── invalid_manifest.yml │ ├── manifest.yml │ ├── manifest_with_all_network_types.yml │ ├── manifest_without_registry.yml │ ├── modified_disk_manifest.yml │ ├── modified_manifest.yml │ ├── sample-release-compiled-manifest.yml │ ├── sample-release-compiled.tgz │ └── sample-release │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── config │ │ ├── dev.yml │ │ └── final.yml │ │ ├── jobs │ │ └── sample-job │ │ │ ├── monit │ │ │ ├── spec │ │ │ └── templates │ │ │ └── ctl.erb │ │ ├── packages │ │ └── sample-pkg │ │ │ ├── packaging │ │ │ └── spec │ │ └── src │ │ └── sample-pkg │ │ └── file.txt ├── config.go ├── instance_ssh.go ├── lifecycle_test.go ├── remote_test_environment.go └── ssh_cmd_runner.go ├── agentclient └── mocks │ └── mocks.go ├── bin ├── build ├── build-linux-amd64 ├── clean ├── env ├── go ├── gocyclo ├── godirs ├── gofiles ├── govet ├── install-ginkgo ├── mockgen ├── require-ci-golang-version ├── test ├── test-acceptance ├── test-acceptance-with-vm ├── test-integration ├── test-prepare ├── test-unhandled-errors └── test-unit ├── blobstore ├── blobstore.go ├── blobstore_factory.go ├── blobstore_factory_test.go ├── blobstore_suite_test.go ├── blobstore_test.go ├── fakes │ ├── fake_blobstore.go │ └── fake_blobstore_factory.go ├── local_blob.go ├── local_blob_test.go └── mocks │ └── mocks.go ├── ci ├── README.md ├── Vagrantfile ├── docker │ ├── Dockerfile │ ├── README.md │ ├── Vagrantfile │ ├── build-docker-image.sh │ ├── deps-golang │ ├── install-go.sh │ ├── install-ruby.sh │ ├── install-vagrant.sh │ └── root_bashrc ├── pipeline.yml ├── run-acceptance-with-vm-in-container.sh ├── tasks │ ├── build-darwin.yml │ ├── build-linux.yml │ ├── build.sh │ ├── test-acceptance.sh │ ├── test-acceptance.yml │ ├── test-integration.sh │ ├── test-integration.yml │ ├── test-unit.sh │ └── test-unit.yml └── test.sh ├── cloud ├── cloud.go ├── cloud_suite_test.go ├── cloud_test.go ├── cpi.go ├── cpi_cmd_runner.go ├── cpi_cmd_runner_test.go ├── errors.go ├── factory.go ├── fakes │ ├── fake_cloud.go │ └── fake_cpi_cmd_runner.go └── mocks │ └── mocks.go ├── cmd ├── cmd.go ├── cmd_suite_test.go ├── delete_cmd.go ├── delete_cmd_test.go ├── deploy_cmd.go ├── deploy_cmd_test.go ├── deployment_deleter.go ├── deployment_deleteter_test.go ├── deployment_manifest_parser.go ├── deployment_preparer.go ├── factory.go ├── factory_test.go ├── fakes │ ├── fake_command.go │ ├── fake_factory.go │ └── fake_installation.go ├── help_cmd.go ├── help_cmd_test.go ├── mocks │ └── mocks.go ├── release_set_and_installation_manifest_parser.go ├── runner.go ├── runner_test.go ├── temp_root_configurator.go ├── temp_root_configurator_test.go ├── version.go └── version_test.go ├── common ├── net │ ├── ip_helper.go │ ├── ip_helper_test.go │ └── net_suite_test.go └── util │ ├── file_helper.go │ ├── file_helper_test.go │ └── util_suite_test.go ├── config ├── config_suite_test.go ├── deployment_repo.go ├── deployment_repo_test.go ├── deployment_state_service.go ├── disk_repo.go ├── disk_repo_test.go ├── fakes │ ├── fake_deployment_repo.go │ ├── fake_disk_repo.go │ ├── fake_release_repo.go │ ├── fake_stemcell_repo.go │ └── fake_vm_repo.go ├── file_system_deployment_state_service.go ├── file_system_deployment_state_service_test.go ├── legacy_deployment_state_migrator.go ├── legacy_deployment_state_migrator_test.go ├── mocks │ └── mocks.go ├── release_repo.go ├── release_repo_test.go ├── stemcell_repo.go ├── stemcell_repo_test.go ├── vm_repo.go └── vm_repo_test.go ├── cpi └── release │ ├── installer.go │ ├── installer_test.go │ ├── mocks │ └── mocks.go │ ├── release_suite_test.go │ ├── validator.go │ └── validator_test.go ├── crypto ├── crypto_suite_test.go ├── fakes │ └── fake_sha1_calculator.go ├── sha1_calculator.go └── sha1_calculator_test.go ├── deployment ├── deployer.go ├── deployer_test.go ├── deployment.go ├── deployment_suite_test.go ├── deployment_test.go ├── disk │ ├── disk.go │ ├── disk_suite_test.go │ ├── disk_test.go │ ├── fakes │ │ ├── fake_disk.go │ │ ├── fake_manager.go │ │ └── fake_manager_factory.go │ ├── manager.go │ ├── manager_factory.go │ ├── manager_test.go │ └── mocks │ │ └── mocks.go ├── factory.go ├── fakes │ └── fake_vm_deployer.go ├── instance │ ├── factory.go │ ├── instance.go │ ├── instance_suite_test.go │ ├── instance_test.go │ ├── manager.go │ ├── manager_factory.go │ ├── manager_test.go │ ├── mocks │ │ └── mocks.go │ └── state │ │ ├── builder.go │ │ ├── builder_factory.go │ │ ├── builder_test.go │ │ ├── mocks │ │ └── mocks.go │ │ ├── remote_package_compiler.go │ │ ├── remote_package_compiler_test.go │ │ ├── state.go │ │ ├── state_suite_test.go │ │ └── state_test.go ├── manager.go ├── manager_factory.go ├── manager_test.go ├── manifest │ ├── deployment_suite_test.go │ ├── disk_pool.go │ ├── fakes │ │ ├── fake_deployment.go │ │ ├── fake_parser.go │ │ └── fake_validator.go │ ├── job.go │ ├── manifest.go │ ├── manifest_test.go │ ├── network.go │ ├── network_test.go │ ├── parser.go │ ├── parser_test.go │ ├── resource_pool.go │ ├── validator.go │ ├── validator_test.go │ ├── watch_time.go │ └── watch_time_test.go ├── mocks │ └── mocks.go ├── record.go ├── record_test.go ├── release │ ├── job_resolver.go │ ├── job_resolver_test.go │ ├── mocks │ │ └── mocks.go │ └── release_suite_test.go ├── sshtunnel │ ├── fakes │ │ ├── fake_ssh_tunnel.go │ │ └── fake_ssh_tunnel_factory.go │ ├── ssh_tunnel.go │ ├── ssh_tunnel_factory.go │ ├── ssh_tunnel_test.go │ └── sshtunnel_suite_test.go └── vm │ ├── disk_deployer.go │ ├── disk_deployer_test.go │ ├── fakes │ ├── fake_disk_deployer.go │ ├── fake_manager.go │ ├── fake_manager_factory.go │ └── fake_vm.go │ ├── manager.go │ ├── manager_factory.go │ ├── manager_test.go │ ├── mocks │ └── mocks.go │ ├── vm.go │ ├── vm_suite_test.go │ └── vm_test.go ├── deps.txt ├── director └── factory.go ├── docs ├── architecture.md ├── bosh-init-delete-flow.graffle ├── bosh-init-delete-flow.png ├── bosh-init-deploy-flow.graffle ├── bosh-init-deploy-flow.png ├── bosh-init-packages.graffle ├── bosh-init-packages.png ├── build.md ├── cli_workflow.md ├── init-cli-flow.graffle ├── init-cli-flow.png └── test.md ├── index ├── file_index.go ├── file_index_test.go ├── in_memory_index.go ├── in_memory_index_test.go ├── index_interface.go ├── index_suite_test.go └── test_helpers_test.go ├── installation ├── blobextract │ ├── blob_suite_test.go │ ├── extractor.go │ ├── extractor_test.go │ └── fakeblobextract │ │ └── fake_extractor.go ├── installation.go ├── installation_suite_test.go ├── installation_test.go ├── installer.go ├── installer_factory.go ├── installer_test.go ├── job_renderer.go ├── job_renderer_test.go ├── job_resolver.go ├── job_resolver_test.go ├── manifest │ ├── fakes │ │ ├── fake_parser.go │ │ └── fake_validator.go │ ├── manifest.go │ ├── manifest_suite_test.go │ ├── parser.go │ ├── parser_test.go │ ├── validator.go │ └── validator_test.go ├── mocks │ └── mocks.go ├── package_compiler.go ├── package_compiler_test.go ├── pkg │ ├── compiler.go │ ├── compiler_test.go │ └── package_suite_test.go ├── tarball │ ├── cache.go │ ├── cache_test.go │ ├── mocks │ │ └── mocks.go │ ├── provider.go │ ├── provider_test.go │ └── tarball_suite_test.go ├── target.go ├── target_provider.go ├── target_provider_test.go ├── target_test.go ├── uninstaller.go └── uninstaller_test.go ├── integration ├── deploy_test.go └── integration_suite_test.go ├── logger ├── logger_suite_test.go ├── signalable_logger.go └── signalable_logger_test.go ├── main.go ├── registry ├── instance_handler.go ├── mocks │ └── mocks.go ├── registry.go ├── registry_suite_test.go ├── server.go └── server_test.go ├── release ├── extractor.go ├── extractor_test.go ├── fakes │ ├── fake_release.go │ └── fake_validator.go ├── fetcher.go ├── job │ ├── job.go │ ├── job_suite_test.go │ ├── job_test.go │ ├── manifest │ │ └── manifest.go │ ├── reader.go │ └── reader_test.go ├── manager.go ├── manager_test.go ├── manifest │ ├── release.go │ └── release_ref.go ├── mocks │ └── mocks.go ├── pkg │ ├── package.go │ ├── package_repo.go │ ├── package_repo_test.go │ ├── pkg_suite_test.go │ ├── sort.go │ └── sort_test.go ├── reader.go ├── reader_test.go ├── release.go ├── release_suite_test.go ├── release_test.go ├── set │ └── manifest │ │ ├── fakes │ │ ├── fake_parser.go │ │ └── fake_validator.go │ │ ├── manifest.go │ │ ├── manifest_suite_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── validator.go │ │ └── validator_test.go ├── validator.go └── validator_test.go ├── state ├── job │ ├── dependency_compiler.go │ ├── dependency_compiler_test.go │ ├── job_suite_test.go │ └── mocks │ │ └── mocks.go └── pkg │ ├── compiled_package_repo.go │ ├── compiled_package_repo_test.go │ ├── compiler_interface.go │ ├── mocks │ └── mocks.go │ ├── pkg_suite_test.go │ ├── resolve_dependencies.go │ └── resolve_dependencies_test.go ├── stemcell ├── cloud_stemcell.go ├── cloud_stemcell_test.go ├── extractor.go ├── extractor_test.go ├── fakes │ ├── fake_cloud_stemcell.go │ ├── fake_extractor.go │ ├── fake_manager.go │ ├── fake_manager_factory.go │ └── fake_reader.go ├── fetcher.go ├── manager.go ├── manager_factory.go ├── manager_test.go ├── mocks │ └── mocks.go ├── reader.go ├── reader_test.go ├── stemcell.go └── stemcell_suite_test.go ├── templatescompiler ├── erbrenderer │ ├── erb_renderer.go │ ├── erb_renderer_test.go │ ├── erbrenderer_suite_test.go │ ├── fakes │ │ ├── fake_erb_renderer.go │ │ └── fake_template_evaluation_context.go │ ├── template_evaluation_context.go │ └── template_evaluation_context_rb.go ├── job_evaluation_context.go ├── job_evaluation_context_test.go ├── job_list_renderer.go ├── job_list_renderer_test.go ├── job_renderer.go ├── job_renderer_test.go ├── mocks │ └── mocks.go ├── rendered_job.go ├── rendered_job_list.go ├── rendered_job_list_archive.go ├── rendered_job_list_archive_test.go ├── rendered_job_list_compressor.go ├── rendered_job_list_compressor_test.go ├── rendered_job_list_test.go ├── rendered_job_test.go └── templatescompiler_suite_test.go ├── test_support ├── mocks │ └── mocks.go └── spy.go ├── testutils ├── generate.go ├── marshal_to_string.go ├── mocks │ └── mocks.go ├── run.go ├── stemcell_creator.go └── tar_verifier.go ├── uaa └── factory.go ├── ui ├── event_suite_test.go ├── fakes │ ├── fake_stage.go │ ├── fake_ui.go │ └── matchers.go ├── fmt │ ├── duration.go │ ├── duration_test.go │ ├── error.go │ ├── error_test.go │ └── fmt_suite_test.go ├── indenting_ui.go ├── indenting_ui_test.go ├── skip_stage_error.go ├── stage.go ├── stage_test.go ├── ui.go └── ui_test.go ├── update-dep └── vendor ├── github.com ├── bmatcuk │ └── doublestar │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doublestar.go │ │ ├── doublestar_test.go │ │ └── test │ │ ├── - │ │ ├── README.md │ │ ├── ] │ │ ├── a │ │ ├── abc │ │ ├── b │ │ │ └── c │ │ │ │ └── d │ │ └── c │ │ │ └── b │ │ ├── abc │ │ └── b │ │ ├── abcd │ │ ├── abcde │ │ ├── abxbbxdbxebxczzx │ │ ├── abxbbxdbxebxczzy │ │ ├── axbxcxdxe │ │ ├── f │ │ └── xxx │ │ │ └── f │ │ ├── axbxcxdxexxx │ │ ├── f │ │ └── fff │ │ ├── a☺b │ │ ├── b │ │ └── c │ │ ├── c │ │ ├── x │ │ ├── xxx │ │ ├── z │ │ └── α ├── charlievieth │ └── fs │ │ ├── LICENSE │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── fs_unix.go │ │ ├── fs_windows.go │ │ ├── fs_windows_test.go │ │ └── testdata │ │ ├── dir_unix.go │ │ ├── env.go │ │ ├── error.go │ │ ├── file.go │ │ ├── os_test.go │ │ ├── stat_darwin.go │ │ ├── stat_linux.go │ │ └── types.go ├── cloudfoundry │ ├── bosh-agent │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── Tools │ │ │ └── bosh-agent-rc │ │ ├── Vagrantfile │ │ ├── agent │ │ │ ├── action │ │ │ │ ├── action_interface.go │ │ │ │ ├── action_suite_test.go │ │ │ │ ├── agent_killer.go │ │ │ │ ├── agent_killer_interface.go │ │ │ │ ├── apply.go │ │ │ │ ├── apply_test.go │ │ │ │ ├── cancel_task.go │ │ │ │ ├── cancel_task_test.go │ │ │ │ ├── compile_package.go │ │ │ │ ├── compile_package_test.go │ │ │ │ ├── concrete_factory.go │ │ │ │ ├── concrete_factory_test.go │ │ │ │ ├── configure_networks.go │ │ │ │ ├── configure_networks_test.go │ │ │ │ ├── delete_arp_entries.go │ │ │ │ ├── delete_arp_entries_test.go │ │ │ │ ├── drain.go │ │ │ │ ├── drain_test.go │ │ │ │ ├── factory_interface.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_agent_killer.go │ │ │ │ │ ├── fake_clock.go │ │ │ │ │ ├── fake_factory.go │ │ │ │ │ └── fake_runner.go │ │ │ │ ├── fetch_logs.go │ │ │ │ ├── fetch_logs_test.go │ │ │ │ ├── get_state.go │ │ │ │ ├── get_state_test.go │ │ │ │ ├── get_task.go │ │ │ │ ├── get_task_test.go │ │ │ │ ├── list_disk.go │ │ │ │ ├── list_disk_test.go │ │ │ │ ├── migrate_disk.go │ │ │ │ ├── migrate_disk_test.go │ │ │ │ ├── mount_disk.go │ │ │ │ ├── mount_disk_test.go │ │ │ │ ├── ping.go │ │ │ │ ├── ping_test.go │ │ │ │ ├── prepare.go │ │ │ │ ├── prepare_configure_networks.go │ │ │ │ ├── prepare_configure_networks_test.go │ │ │ │ ├── prepare_network_change.go │ │ │ │ ├── prepare_network_change_test.go │ │ │ │ ├── prepare_test.go │ │ │ │ ├── release_apply_spec.go │ │ │ │ ├── release_apply_spec_test.go │ │ │ │ ├── run_errand.go │ │ │ │ ├── run_errand_test.go │ │ │ │ ├── run_script.go │ │ │ │ ├── run_script_test.go │ │ │ │ ├── runner.go │ │ │ │ ├── runner_test.go │ │ │ │ ├── ssh.go │ │ │ │ ├── ssh_test.go │ │ │ │ ├── start.go │ │ │ │ ├── start_test.go │ │ │ │ ├── stop.go │ │ │ │ ├── stop_test.go │ │ │ │ ├── sync_dns.go │ │ │ │ ├── sync_dns_test.go │ │ │ │ ├── unmount_disk.go │ │ │ │ ├── unmount_disk_test.go │ │ │ │ ├── update_settings.go │ │ │ │ └── update_settings_test.go │ │ │ ├── action_dispatcher.go │ │ │ ├── action_dispatcher_test.go │ │ │ ├── agent.go │ │ │ ├── agent_suite_test.go │ │ │ ├── agent_test.go │ │ │ ├── alert │ │ │ │ ├── alert.go │ │ │ │ ├── alert_suite_test.go │ │ │ │ ├── monit_adapter.go │ │ │ │ ├── monit_adapter_test.go │ │ │ │ ├── monit_alert.go │ │ │ │ ├── ssh_adapter.go │ │ │ │ └── ssh_adapter_test.go │ │ │ ├── applier │ │ │ │ ├── applier_interface.go │ │ │ │ ├── applier_suite_test.go │ │ │ │ ├── applyspec │ │ │ │ │ ├── apply_spec_interface.go │ │ │ │ │ ├── applyspec_suite_test.go │ │ │ │ │ ├── concrete_v1_service.go │ │ │ │ │ ├── concrete_v1_service_test.go │ │ │ │ │ ├── fakes │ │ │ │ │ │ ├── fake_apply_spec.go │ │ │ │ │ │ └── fake_v1_service.go │ │ │ │ │ ├── job_spec.go │ │ │ │ │ ├── job_template_spec.go │ │ │ │ │ ├── package_spec.go │ │ │ │ │ ├── rendered_templates_archive_spec.go │ │ │ │ │ ├── service_interface.go │ │ │ │ │ ├── v1_apply_spec.go │ │ │ │ │ └── v1_apply_spec_test.go │ │ │ │ ├── bundlecollection │ │ │ │ │ ├── bundle_collection_interface.go │ │ │ │ │ ├── bundlecollection_suite_test.go │ │ │ │ │ ├── fakes │ │ │ │ │ │ ├── fake_bundle.go │ │ │ │ │ │ └── fake_bundle_collection.go │ │ │ │ │ ├── file_bundle.go │ │ │ │ │ ├── file_bundle_collection.go │ │ │ │ │ ├── file_bundle_collection_test.go │ │ │ │ │ ├── file_bundle_collection_windows_test.go │ │ │ │ │ └── file_bundle_test.go │ │ │ │ ├── concrete_applier.go │ │ │ │ ├── concrete_applier_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_applier.go │ │ │ │ ├── jobs │ │ │ │ │ ├── applier_interface.go │ │ │ │ │ ├── fakes │ │ │ │ │ │ └── fake_job_applier.go │ │ │ │ │ ├── jobs_suite_test.go │ │ │ │ │ ├── rendered_job_applier.go │ │ │ │ │ └── rendered_job_applier_test.go │ │ │ │ ├── logrotate_delegate_interface.go │ │ │ │ ├── models │ │ │ │ │ ├── job.go │ │ │ │ │ ├── job_test.go │ │ │ │ │ ├── models_suite_test.go │ │ │ │ │ ├── package.go │ │ │ │ │ ├── package_test.go │ │ │ │ │ └── source.go │ │ │ │ └── packages │ │ │ │ │ ├── applier_interface.go │ │ │ │ │ ├── applier_provider_interface.go │ │ │ │ │ ├── compiled_package_applier.go │ │ │ │ │ ├── compiled_package_applier_provider.go │ │ │ │ │ ├── compiled_package_applier_provider_test.go │ │ │ │ │ ├── compiled_package_applier_test.go │ │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_applier.go │ │ │ │ │ └── fake_applier_provider.go │ │ │ │ │ └── packages_suite_test.go │ │ │ ├── bootstrap.go │ │ │ ├── bootstrap_test.go │ │ │ ├── cmdrunner │ │ │ │ ├── cmd_runner_interface.go │ │ │ │ ├── cmd_runner_suite_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_file_logging_cmd_runner.go │ │ │ │ ├── file_logging_cmd_runner.go │ │ │ │ └── file_logging_cmd_runner_test.go │ │ │ ├── compiler │ │ │ │ ├── compiler_interface.go │ │ │ │ ├── compiler_suite_test.go │ │ │ │ ├── compiler_unix.go │ │ │ │ ├── compiler_windows.go │ │ │ │ ├── concrete_compiler.go │ │ │ │ ├── concrete_compiler_test.go │ │ │ │ └── fakes │ │ │ │ │ └── fake_compiler.go │ │ │ ├── fakes │ │ │ │ └── fake_action_dispatcher.go │ │ │ ├── heartbeat.go │ │ │ ├── heartbeat_test.go │ │ │ ├── script │ │ │ │ ├── concrete_job_script_provider.go │ │ │ │ ├── concrete_job_script_provider_test.go │ │ │ │ ├── drain │ │ │ │ │ ├── concrete_script.go │ │ │ │ │ ├── concrete_script_test.go │ │ │ │ │ ├── drain_suite_test.go │ │ │ │ │ ├── fakes │ │ │ │ │ │ ├── fake_script.go │ │ │ │ │ │ └── fake_script_params.go │ │ │ │ │ ├── presented_job_state.go │ │ │ │ │ ├── script_params.go │ │ │ │ │ └── script_params_test.go │ │ │ │ ├── ext_unix.go │ │ │ │ ├── ext_windows.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_job_script_provider.go │ │ │ │ │ └── fake_script.go │ │ │ │ ├── generic_script.go │ │ │ │ ├── generic_script_test.go │ │ │ │ ├── parallel_script.go │ │ │ │ ├── parallel_script_test.go │ │ │ │ ├── script_interface.go │ │ │ │ └── script_suite_test.go │ │ │ └── task │ │ │ │ ├── async_task_service.go │ │ │ │ ├── async_task_service_test.go │ │ │ │ ├── concrete_manager.go │ │ │ │ ├── concrete_manager_test.go │ │ │ │ ├── fakes │ │ │ │ ├── fake_manager.go │ │ │ │ └── fake_service.go │ │ │ │ ├── manager_interface.go │ │ │ │ ├── service_interface.go │ │ │ │ ├── task.go │ │ │ │ ├── task_suite_test.go │ │ │ │ └── task_test.go │ │ ├── agentclient │ │ │ ├── agent_client_interface.go │ │ │ ├── agentclient_suite_test.go │ │ │ ├── applyspec │ │ │ │ ├── apply_spec.go │ │ │ │ ├── apply_spec_test.go │ │ │ │ └── applyspec_suite_test.go │ │ │ ├── fakes │ │ │ │ └── fake_agent_client.go │ │ │ ├── get_state_retryable.go │ │ │ ├── get_state_retryable_test.go │ │ │ ├── http │ │ │ │ ├── agent_client.go │ │ │ │ ├── agent_client_factory.go │ │ │ │ ├── agent_client_test.go │ │ │ │ ├── agent_request.go │ │ │ │ ├── agent_response.go │ │ │ │ ├── agent_response_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_agent_client_factory.go │ │ │ │ ├── http_suite_test.go │ │ │ │ └── mocks │ │ │ │ │ └── mocks.go │ │ │ ├── ping_retryable.go │ │ │ └── ping_retryable_test.go │ │ ├── app │ │ │ ├── app.go │ │ │ ├── app_suite_test.go │ │ │ ├── app_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── options.go │ │ │ └── options_test.go │ │ ├── bin │ │ │ ├── build │ │ │ ├── build-linux-amd64 │ │ │ ├── build-linux-ppc64le │ │ │ ├── ci │ │ │ ├── env │ │ │ ├── gnatsd-darwin │ │ │ ├── gnatsd-linux │ │ │ ├── go │ │ │ ├── godirs │ │ │ ├── gofiles │ │ │ ├── golint │ │ │ ├── govet │ │ │ ├── linenumber │ │ │ ├── run │ │ │ ├── run-gocd-integration-test │ │ │ ├── test │ │ │ ├── test-bosh-integration │ │ │ ├── test-integration │ │ │ ├── test-integration-windows │ │ │ ├── test-unhandled-errors │ │ │ └── test-unit │ │ ├── ci │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── docker │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ └── build-docker-image.sh │ │ │ ├── pipeline.yml │ │ │ ├── tasks │ │ │ │ ├── compile-agent-windows.sh │ │ │ │ ├── compile-agent-windows.yml │ │ │ │ ├── create-vsphere-errand-release-windows.sh │ │ │ │ ├── create-vsphere-errand-release-windows.yml │ │ │ │ ├── test-integration-windows.sh │ │ │ │ ├── test-integration-windows.yml │ │ │ │ ├── test-integration.sh │ │ │ │ ├── test-integration.yml │ │ │ │ ├── test-unit-windows.yml │ │ │ │ ├── test-unit.bat │ │ │ │ ├── test-unit.sh │ │ │ │ └── test-unit.yml │ │ │ └── windows-pipeline.yml │ │ ├── deps.txt │ │ ├── docs │ │ │ ├── dev_setup.md │ │ │ ├── migrating_from_godeps.md │ │ │ └── windows.md │ │ ├── factory │ │ │ └── factory.go │ │ ├── handler │ │ │ ├── handler_interface.go │ │ │ ├── handler_suite_test.go │ │ │ ├── perform_handler_with_json.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── response_test.go │ │ │ ├── target.go │ │ │ └── topic.go │ │ ├── httpsdispatcher │ │ │ ├── agent.cert │ │ │ ├── agent.key │ │ │ ├── https_dispatcher.go │ │ │ ├── https_dispatcher_test.go │ │ │ └── httpsdispatcher_suite_test.go │ │ ├── infrastructure │ │ │ ├── agentlogger │ │ │ │ ├── agentlogger_suite_test.go │ │ │ │ ├── signalable_logger.go │ │ │ │ └── signalable_logger_test.go │ │ │ ├── cdrom_settings_source.go │ │ │ ├── cdrom_settings_source_test.go │ │ │ ├── complex_settings_source.go │ │ │ ├── complex_settings_source_test.go │ │ │ ├── config_drive_metadata_service.go │ │ │ ├── config_drive_metadata_service_test.go │ │ │ ├── config_drive_settings_source.go │ │ │ ├── config_drive_settings_source_test.go │ │ │ ├── devicepathresolver │ │ │ │ ├── device_path_resolver.go │ │ │ │ ├── devicepathresolver_suite_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_device_path_resolver.go │ │ │ │ ├── id_device_path_resolver.go │ │ │ │ ├── id_device_path_resolver_test.go │ │ │ │ ├── identity_device_path_resolver.go │ │ │ │ ├── identity_device_path_resolver_test.go │ │ │ │ ├── mapped_device_path_resolver.go │ │ │ │ ├── mapped_device_path_resolver_test.go │ │ │ │ ├── scsi_device_path_resolver.go │ │ │ │ ├── scsi_device_path_resolver_test.go │ │ │ │ ├── scsi_id_device_path_resolver.go │ │ │ │ ├── scsi_id_device_path_resolver_test.go │ │ │ │ ├── scsi_lun_device_path_resolver.go │ │ │ │ ├── scsi_lun_device_path_resolver_test.go │ │ │ │ ├── scsi_volume_id_device_path_resolver.go │ │ │ │ ├── scsi_volume_id_device_path_resolver_test.go │ │ │ │ ├── virtio_device_path_resolver.go │ │ │ │ └── virtio_device_path_resolver_test.go │ │ │ ├── dig_dns_resolver.go │ │ │ ├── dig_dns_resolver_test.go │ │ │ ├── dns_resolver_interface.go │ │ │ ├── fakes │ │ │ │ ├── fake_dns_resolver.go │ │ │ │ ├── fake_metadata_service.go │ │ │ │ ├── fake_registry.go │ │ │ │ ├── fake_registry_provider.go │ │ │ │ └── fake_settings_source.go │ │ │ ├── file_metadata_service.go │ │ │ ├── file_metadata_service_test.go │ │ │ ├── file_registry.go │ │ │ ├── file_registry_test.go │ │ │ ├── http_metadata_service.go │ │ │ ├── http_metadata_service_test.go │ │ │ ├── http_registry.go │ │ │ ├── http_registry_test.go │ │ │ ├── infrastructure_suite_test.go │ │ │ ├── instance_metadata_settings_source.go │ │ │ ├── instance_metadata_settings_source_test.go │ │ │ ├── metadata_service_interface.go │ │ │ ├── multi_settings_source.go │ │ │ ├── multi_settings_source_test.go │ │ │ ├── multi_source_metadata_service.go │ │ │ ├── multi_source_metadata_service_test.go │ │ │ ├── registry_endpoint_resolver.go │ │ │ ├── registry_endpoint_resolver_test.go │ │ │ ├── registry_interface.go │ │ │ ├── registry_provider.go │ │ │ ├── registry_provider_test.go │ │ │ ├── settings_source_factory.go │ │ │ └── settings_source_factory_test.go │ │ ├── integration │ │ │ ├── assets │ │ │ │ ├── agent_runit.sh │ │ │ │ ├── config-drive-agent.json │ │ │ │ ├── disable_growpart.sh │ │ │ │ ├── install-agent.sh │ │ │ │ ├── install-fake-registry.sh │ │ │ │ ├── install-go.sh │ │ │ │ ├── meta-data.json │ │ │ │ ├── root-partition-agent.json │ │ │ │ └── user-data.json │ │ │ ├── config_drive_test.go │ │ │ ├── delete_arp_entries_test.go │ │ │ ├── ephemeral_disk_test.go │ │ │ ├── fake-registry │ │ │ │ └── fake-registry.go │ │ │ ├── instance_info_test.go │ │ │ ├── integration_suite_test.go │ │ │ ├── raw_ephemeral_disk_test.go │ │ │ ├── sync_dns_test.go │ │ │ ├── test_environment.go │ │ │ ├── update_settings_test.go │ │ │ └── windows │ │ │ │ ├── Vagrantfile │ │ │ │ ├── fixtures │ │ │ │ ├── blobstore.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── service_wrapper.xml │ │ │ │ ├── templates │ │ │ │ │ ├── crashes-on-start │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── start.ps1 │ │ │ │ │ │ └── monit │ │ │ │ │ ├── say-hello │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── drain.ps1 │ │ │ │ │ │ │ ├── pre-start.ps1 │ │ │ │ │ │ │ ├── run.ps1 │ │ │ │ │ │ │ └── start.ps1 │ │ │ │ │ │ └── monit │ │ │ │ │ ├── simple-package │ │ │ │ │ │ └── packaging │ │ │ │ │ └── unmonitor-hello │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── drain.ps1 │ │ │ │ │ │ └── start.ps1 │ │ │ │ │ │ └── monit │ │ │ │ └── zlib1.dll │ │ │ │ ├── nats_client_test.go │ │ │ │ ├── setup_aws.sh │ │ │ │ ├── setup_virtualbox.sh │ │ │ │ ├── utils │ │ │ │ ├── agent.go │ │ │ │ ├── blobstore.go │ │ │ │ └── tar.go │ │ │ │ ├── windows_suite_test.go │ │ │ │ └── windows_test.go │ │ ├── jobsupervisor │ │ │ ├── alert_envelope.go │ │ │ ├── dummy_job_supervisor.go │ │ │ ├── dummy_nats_job_supervisor.go │ │ │ ├── dummy_nats_job_supervisor_test.go │ │ │ ├── fakes │ │ │ │ └── fake_job_supervisor.go │ │ │ ├── job_supervisor_interface.go │ │ │ ├── jobsupervisor_suite_test.go │ │ │ ├── monit │ │ │ │ ├── client_interface.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_monit_client.go │ │ │ │ │ └── fake_monit_status.go │ │ │ │ ├── fixtures_test.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_client_test.go │ │ │ │ ├── monit_retry_client.go │ │ │ │ ├── monit_retry_strategy.go │ │ │ │ ├── monit_retry_strategy_test.go │ │ │ │ ├── monit_suite_test.go │ │ │ │ ├── provider.go │ │ │ │ ├── provider_test.go │ │ │ │ ├── status.go │ │ │ │ ├── status_interface.go │ │ │ │ ├── status_test.go │ │ │ │ └── test_assets │ │ │ │ │ ├── monit_status.xml │ │ │ │ │ └── monit_status_with_multiple_services.xml │ │ │ ├── monit_job_supervisor.go │ │ │ ├── monit_job_supervisor_test.go │ │ │ ├── monitor │ │ │ │ ├── disk.go │ │ │ │ ├── disk_test.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_test.go │ │ │ │ ├── monitor.go │ │ │ │ ├── monitor_suite_test.go │ │ │ │ └── monitor_test.go │ │ │ ├── provider.go │ │ │ ├── provider_test.go │ │ │ ├── provider_windows.go │ │ │ ├── testdata │ │ │ │ └── job-service-wrapper │ │ │ ├── windows_job_supervisor.go │ │ │ └── windows_job_supervisor_test.go │ │ ├── logger │ │ │ └── fakes │ │ │ │ └── logger.go │ │ ├── main │ │ │ └── agent.go │ │ ├── matchers │ │ │ ├── matchers.go │ │ │ ├── matchers_suite_test.go │ │ │ ├── matchers_test.go │ │ │ ├── one_of_matcher.go │ │ │ └── one_of_matcher_test.go │ │ ├── mbus │ │ │ ├── agent.cert │ │ │ ├── agent.key │ │ │ ├── fakes │ │ │ │ └── fake_handler.go │ │ │ ├── handler_provider.go │ │ │ ├── handler_provider_test.go │ │ │ ├── mbus_suite_test.go │ │ │ ├── nats_handler.go │ │ │ └── nats_handler_test.go │ │ ├── micro │ │ │ ├── agent.cert │ │ │ ├── agent.key │ │ │ ├── https_handler.go │ │ │ ├── https_handler_test.go │ │ │ └── micro_suite_test.go │ │ ├── notification │ │ │ ├── concrete_notifier.go │ │ │ ├── concrete_notifier_test.go │ │ │ ├── fakes │ │ │ │ └── fake_notifier.go │ │ │ ├── notification_suite_test.go │ │ │ └── notifier_interface.go │ │ ├── platform │ │ │ ├── bootstrap_state.go │ │ │ ├── bootstrap_state_test.go │ │ │ ├── cdrom │ │ │ │ ├── cdrom_interface.go │ │ │ │ ├── cdrom_suite_test.go │ │ │ │ ├── cdutil.go │ │ │ │ ├── cdutil_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_cdrom.go │ │ │ │ ├── linux_cdrom.go │ │ │ │ └── linux_cdrom_test.go │ │ │ ├── cert │ │ │ │ ├── cert_manager.go │ │ │ │ ├── cert_manager_agent_client_test.go │ │ │ │ ├── cert_manager_test.go │ │ │ │ ├── cert_suite_test.go │ │ │ │ ├── export_test.go │ │ │ │ └── fakes │ │ │ │ │ └── fake_manager.go │ │ │ ├── deviceutil │ │ │ │ ├── deviceutil_interface.go │ │ │ │ └── fakes │ │ │ │ │ └── fake_deviceutil.go │ │ │ ├── disk │ │ │ │ ├── cmd_mounts_searcher.go │ │ │ │ ├── cmd_mounts_searcher_test.go │ │ │ │ ├── delta.go │ │ │ │ ├── disk_suite_test.go │ │ │ │ ├── diskutil.go │ │ │ │ ├── diskutil_test.go │ │ │ │ ├── existing_partition.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_disk_manager.go │ │ │ │ │ ├── fake_formatter.go │ │ │ │ │ ├── fake_mounter.go │ │ │ │ │ ├── fake_mounts_seacher.go │ │ │ │ │ └── fake_partitioner.go │ │ │ │ ├── formatter_interface.go │ │ │ │ ├── linux_bind_mounter.go │ │ │ │ ├── linux_bind_mounter_test.go │ │ │ │ ├── linux_disk_manager.go │ │ │ │ ├── linux_disk_manager_test.go │ │ │ │ ├── linux_formatter.go │ │ │ │ ├── linux_formatter_test.go │ │ │ │ ├── linux_mounter.go │ │ │ │ ├── linux_mounter_test.go │ │ │ │ ├── manager_interface.go │ │ │ │ ├── mounter_interface.go │ │ │ │ ├── mounts_searcher_interface.go │ │ │ │ ├── parted_partitioner.go │ │ │ │ ├── parted_partitioner_test.go │ │ │ │ ├── partitioner_interface.go │ │ │ │ ├── proc_mounts_searcher.go │ │ │ │ ├── proc_mounts_searcher_test.go │ │ │ │ ├── root_device_partitioner.go │ │ │ │ ├── root_device_partitioner_test.go │ │ │ │ ├── sfdisk_partition_strategy.go │ │ │ │ ├── sfdisk_partitioner.go │ │ │ │ └── sfdisk_partitioner_test.go │ │ │ ├── dummy_platform.go │ │ │ ├── dummy_platform_test.go │ │ │ ├── fakes │ │ │ │ └── fake_platform.go │ │ │ ├── linux_platform.go │ │ │ ├── linux_platform_test.go │ │ │ ├── monit_retryable.go │ │ │ ├── monit_retryable_test.go │ │ │ ├── net │ │ │ │ ├── arp │ │ │ │ │ ├── address_broadcaster_interface.go │ │ │ │ │ ├── arp_suite_test.go │ │ │ │ │ ├── arping.go │ │ │ │ │ ├── arping_test.go │ │ │ │ │ └── fakes │ │ │ │ │ │ └── fake_address_broadcaster.go │ │ │ │ ├── centos_net_manager.go │ │ │ │ ├── centos_net_manager_test.go │ │ │ │ ├── custom_network.go │ │ │ │ ├── default_network_resolver.go │ │ │ │ ├── default_network_resolver_test.go │ │ │ │ ├── dns_validator.go │ │ │ │ ├── dns_validator_test.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_default_network_resolver.go │ │ │ │ │ ├── fake_net_manager.go │ │ │ │ │ └── fake_routes_searcher.go │ │ │ │ ├── interface_configuration_creator.go │ │ │ │ ├── interface_configuration_creator_test.go │ │ │ │ ├── ip │ │ │ │ │ ├── fakes │ │ │ │ │ │ ├── fake_interface_addresses_provider.go │ │ │ │ │ │ └── fake_ip_resolver.go │ │ │ │ │ ├── interface_address.go │ │ │ │ │ ├── interface_address_test.go │ │ │ │ │ ├── interface_addresses_provider.go │ │ │ │ │ ├── interface_addresses_provider_test.go │ │ │ │ │ ├── interface_addresses_validator.go │ │ │ │ │ ├── interface_addresses_validator_test.go │ │ │ │ │ ├── ip_resolver.go │ │ │ │ │ ├── ip_resolver_test.go │ │ │ │ │ └── ip_suite_test.go │ │ │ │ ├── net_manager_interface.go │ │ │ │ ├── net_suite_test.go │ │ │ │ ├── routes_searcher_interface.go │ │ │ │ ├── routes_searcher_interface_test.go │ │ │ │ ├── routes_searcher_unix.go │ │ │ │ ├── routes_searcher_unix_test.go │ │ │ │ ├── routes_searcher_windows.go │ │ │ │ ├── routes_searcher_windows_test.go │ │ │ │ ├── ubuntu_net_manager.go │ │ │ │ ├── ubuntu_net_manager_test.go │ │ │ │ ├── windows_net_manager.go │ │ │ │ └── windows_net_manager_test.go │ │ │ ├── ntp │ │ │ │ ├── fakes │ │ │ │ │ └── fake_service.go │ │ │ │ ├── ntp_suite_test.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── platform_interface.go │ │ │ ├── platform_suite_test.go │ │ │ ├── provider.go │ │ │ ├── stats │ │ │ │ ├── dummy_stats_collector.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_stats_collector.go │ │ │ │ ├── percentage.go │ │ │ │ ├── percentage_test.go │ │ │ │ ├── stats_collector_interface.go │ │ │ │ ├── stats_collector_interface_test.go │ │ │ │ └── stats_suite_test.go │ │ │ ├── udevdevice │ │ │ │ ├── concrete_udev_device.go │ │ │ │ ├── concrete_udev_device_test.go │ │ │ │ ├── fakes │ │ │ │ │ └── fake_udev_device.go │ │ │ │ ├── udev_device_interface.go │ │ │ │ └── udevdevice_suite_test.go │ │ │ ├── vitals │ │ │ │ ├── fakes │ │ │ │ │ └── fake_service.go │ │ │ │ ├── service.go │ │ │ │ ├── service_test.go │ │ │ │ ├── service_unix.go │ │ │ │ ├── service_windows.go │ │ │ │ ├── vitals.go │ │ │ │ └── vitals_suite_test.go │ │ │ ├── windows_platform.go │ │ │ └── windows_platform_test.go │ │ ├── settings │ │ │ ├── directories │ │ │ │ ├── directories_provider.go │ │ │ │ └── directories_suite_test.go │ │ │ ├── fakes │ │ │ │ └── fake_settings_service.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── settings.go │ │ │ ├── settings_suite_test.go │ │ │ └── settings_test.go │ │ ├── sigar │ │ │ ├── sigar_stats_collector.go │ │ │ ├── sigar_stats_collector_test.go │ │ │ └── sigar_suite_test.go │ │ ├── syslog │ │ │ ├── fakes │ │ │ │ └── fake_server.go │ │ │ ├── server.go │ │ │ ├── server_interface.go │ │ │ ├── server_test.go │ │ │ ├── syslog_suite_test.go │ │ │ └── syslogparser_test.go │ │ ├── test │ │ │ ├── agent.cert │ │ │ ├── agent.csr │ │ │ ├── agent.json │ │ │ ├── agent.key │ │ │ ├── dummy-cpi-agent-env.json │ │ │ └── run_test_bosh_agent.sh │ │ └── update-dep │ ├── bosh-davcli │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── app.go │ │ │ ├── app_suite_test.go │ │ │ └── app_test.go │ │ ├── bin │ │ │ ├── build │ │ │ ├── build-linux-amd64 │ │ │ ├── build-linux-ppc64le │ │ │ ├── clean │ │ │ ├── env │ │ │ ├── go │ │ │ ├── gofmt │ │ │ ├── govet │ │ │ ├── install-ginkgo │ │ │ ├── test │ │ │ ├── test-prepare │ │ │ └── test-unit │ │ ├── client │ │ │ ├── client.go │ │ │ ├── client_suite_test.go │ │ │ ├── client_test.go │ │ │ └── fakes │ │ │ │ └── fake_client.go │ │ ├── cmd │ │ │ ├── cmd.go │ │ │ ├── cmd_suite_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── get.go │ │ │ ├── get_test.go │ │ │ ├── put.go │ │ │ ├── put_test.go │ │ │ ├── runner.go │ │ │ ├── runner_test.go │ │ │ └── testing │ │ │ │ ├── http_request.go │ │ │ │ └── testing_suite_test.go │ │ ├── config │ │ │ ├── config.go │ │ │ └── config_suite_test.go │ │ ├── deps.txt │ │ ├── main │ │ │ ├── dav.go │ │ │ └── main_suite_test.go │ │ ├── test_assets │ │ │ ├── cat.jpg │ │ │ └── dav-cli-config.json │ │ └── update-dep │ ├── bosh-utils │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── assert │ │ │ └── json_matchers.go │ │ ├── bin │ │ │ ├── env │ │ │ ├── go │ │ │ ├── install-ginkgo │ │ │ ├── test │ │ │ └── test-unit │ │ ├── blobstore │ │ │ ├── blob_manager.go │ │ │ ├── blob_manager_test.go │ │ │ ├── blobstore_interface.go │ │ │ ├── blobstore_suite_test.go │ │ │ ├── dummy_blobstore.go │ │ │ ├── external_blobstore.go │ │ │ ├── external_blobstore_test.go │ │ │ ├── fakes │ │ │ │ └── fake_blobstore.go │ │ │ ├── local_blobstore.go │ │ │ ├── local_blobstore_test.go │ │ │ ├── provider.go │ │ │ ├── provider_test.go │ │ │ ├── retryable_blobstore.go │ │ │ ├── retryable_blobstore_test.go │ │ │ ├── sha1_verifiable_blobstore.go │ │ │ ├── sha1_verifiable_blobstore_test.go │ │ │ └── test_assets │ │ │ │ └── some.config │ │ ├── ci │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── docker │ │ │ │ ├── Vagrantfile │ │ │ │ └── bosh.utils │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── build.sh │ │ │ │ │ └── install-go.sh │ │ │ ├── pipeline.yml │ │ │ └── tasks │ │ │ │ ├── test-unit-windows.bat │ │ │ │ ├── test-unit-windows.yml │ │ │ │ ├── test-unit.sh │ │ │ │ └── test-unit.yml │ │ ├── deps.txt │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── errors_suite_test.go │ │ │ ├── errors_test.go │ │ │ ├── multi_error.go │ │ │ └── multi_error_test.go │ │ ├── fileutil │ │ │ ├── commands_suite_test.go │ │ │ ├── compressor_interface.go │ │ │ ├── copier_interface.go │ │ │ ├── cp_copier.go │ │ │ ├── cp_copier_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_compressor.go │ │ │ │ └── fake_copier.go │ │ │ ├── generic_cp_copier.go │ │ │ ├── generic_cp_copier_test.go │ │ │ ├── tarball_compressor.go │ │ │ ├── tarball_compressor_test.go │ │ │ └── test_assets │ │ │ │ ├── compressor-decompress-file-to-dir.tgz │ │ │ │ └── test_filtered_copy_to_temp │ │ │ │ ├── app.stderr.log │ │ │ │ ├── app.stdout.log │ │ │ │ ├── other_logs │ │ │ │ ├── more_logs │ │ │ │ │ └── more.stdout.log │ │ │ │ ├── other_app.stderr.log │ │ │ │ └── other_app.stdout.log │ │ │ │ └── some_directory │ │ │ │ └── sub_dir │ │ │ │ └── other_sub_dir │ │ │ │ └── .keep │ │ ├── http │ │ │ ├── byte_read_closer.go │ │ │ ├── client_interface.go │ │ │ ├── fakes │ │ │ │ ├── fake_http_client.go │ │ │ │ └── fake_request_retryable.go │ │ │ ├── http_suite_test.go │ │ │ ├── read_and_close.go │ │ │ ├── request_retryable.go │ │ │ ├── request_retryable_test.go │ │ │ ├── retry_client.go │ │ │ └── retry_client_test.go │ │ ├── httpclient │ │ │ ├── default_http_clients.go │ │ │ ├── default_http_clients_test.go │ │ │ ├── fakes │ │ │ │ └── fake_http_client.go │ │ │ ├── http_client.go │ │ │ ├── http_client_test.go │ │ │ └── httpclient_suite_test.go │ │ ├── logger │ │ │ ├── file │ │ │ │ ├── file_logger.go │ │ │ │ ├── file_suite_test.go │ │ │ │ └── file_test.go │ │ │ ├── logger.go │ │ │ ├── logger_suite_test.go │ │ │ └── logger_test.go │ │ ├── property │ │ │ ├── builders.go │ │ │ ├── list.go │ │ │ ├── map.go │ │ │ └── property.go │ │ ├── retrystrategy │ │ │ ├── attempt_retry_strategy.go │ │ │ ├── attempt_retry_strategy_test.go │ │ │ ├── fakes │ │ │ │ └── fake_retry_strategy.go │ │ │ ├── retry_strategy.go │ │ │ ├── retrystrategy_suite_test.go │ │ │ ├── timeout_retry_strategy.go │ │ │ ├── timeout_retry_strategy_test.go │ │ │ ├── unlimited_retry_strategy.go │ │ │ └── unlimited_retry_strategy_test.go │ │ ├── system │ │ │ ├── cmd_runner_interface.go │ │ │ ├── exec_cmd_runner.go │ │ │ ├── exec_cmd_runner_fixtures │ │ │ │ ├── cat.go │ │ │ │ ├── child_ignore_term.go │ │ │ │ ├── child_term.go │ │ │ │ ├── exe_exits.go │ │ │ │ ├── false.go │ │ │ │ ├── parent_ignore_term.go │ │ │ │ ├── parent_term.go │ │ │ │ └── windows_exe.go │ │ │ ├── exec_cmd_runner_test.go │ │ │ ├── exec_cmd_runner_unix.go │ │ │ ├── exec_cmd_runner_windows.go │ │ │ ├── exec_error.go │ │ │ ├── exec_error_test.go │ │ │ ├── exec_process.go │ │ │ ├── exec_process_unix.go │ │ │ ├── exec_process_unix_test.go │ │ │ ├── exec_process_windows.go │ │ │ ├── exec_process_windows_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_cmd_runner.go │ │ │ │ ├── fake_file_system.go │ │ │ │ ├── fake_file_system_test.go │ │ │ │ └── fakes_suite_test.go │ │ │ ├── file_system_interface.go │ │ │ ├── ip_helper.go │ │ │ ├── ip_helper_test.go │ │ │ ├── os_file_system.go │ │ │ ├── os_file_system_test.go │ │ │ ├── os_file_system_unix.go │ │ │ ├── os_file_system_windows.go │ │ │ ├── os_file_system_windows_test.go │ │ │ ├── system_suite_test.go │ │ │ └── test_assets │ │ │ │ └── test_copy_dir_entries │ │ │ │ ├── bar │ │ │ │ ├── bar.txt │ │ │ │ └── baz │ │ │ │ │ └── .gitkeep │ │ │ │ └── foo.txt │ │ ├── update-dep │ │ └── uuid │ │ │ ├── fakes │ │ │ └── fake_generator.go │ │ │ ├── generator_interface.go │ │ │ ├── uuid_suite_test.go │ │ │ ├── uuid_v4_generator.go │ │ │ └── uuid_v4_generator_test.go │ └── gofileutils │ │ └── glob │ │ ├── README.md │ │ ├── dir.go │ │ ├── dir_test.go │ │ ├── glob.go │ │ └── glob_test.go ├── golang │ └── mock │ │ └── gomock │ │ ├── call.go │ │ ├── callset.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── matchers.go │ │ ├── matchers_test.go │ │ └── mock_matcher │ │ └── mock_matcher.go ├── mitchellh │ └── mapstructure │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── decode_hooks_test.go │ │ ├── error.go │ │ ├── mapstructure.go │ │ ├── mapstructure_benchmark_test.go │ │ ├── mapstructure_bugs_test.go │ │ ├── mapstructure_examples_test.go │ │ └── mapstructure_test.go ├── nu7hatch │ └── gouuid │ │ ├── COPYING │ │ ├── README.md │ │ ├── example_test.go │ │ ├── uuid.go │ │ └── uuid_test.go ├── onsi │ ├── ginkgo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config │ │ │ └── config.go │ │ ├── ginkgo │ │ │ ├── bootstrap_command.go │ │ │ ├── build_command.go │ │ │ ├── convert │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ ├── import.go │ │ │ │ ├── package_rewriter.go │ │ │ │ ├── test_finder.go │ │ │ │ ├── testfile_rewriter.go │ │ │ │ └── testing_t_rewriter.go │ │ │ ├── convert_command.go │ │ │ ├── generate_command.go │ │ │ ├── help_command.go │ │ │ ├── interrupthandler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── main.go │ │ │ ├── nodot │ │ │ │ ├── nodot.go │ │ │ │ ├── nodot_suite_test.go │ │ │ │ └── nodot_test.go │ │ │ ├── nodot_command.go │ │ │ ├── notifications.go │ │ │ ├── run_command.go │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ ├── suite_runner.go │ │ │ ├── testrunner │ │ │ │ ├── log_writer.go │ │ │ │ ├── run_result.go │ │ │ │ └── test_runner.go │ │ │ ├── testsuite │ │ │ │ ├── test_suite.go │ │ │ │ ├── testsuite_suite_test.go │ │ │ │ └── testsuite_test.go │ │ │ ├── unfocus_command.go │ │ │ ├── version_command.go │ │ │ ├── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ └── suite.go │ │ │ └── watch_command.go │ │ ├── ginkgo_dsl.go │ │ ├── integration │ │ │ ├── _fixtures │ │ │ │ ├── convert_fixtures │ │ │ │ │ ├── extra_functions_test.go │ │ │ │ │ ├── nested │ │ │ │ │ │ └── nested_test.go │ │ │ │ │ ├── nested_without_gofiles │ │ │ │ │ │ └── subpackage │ │ │ │ │ │ │ └── nested_subpackage_test.go │ │ │ │ │ ├── outside_package_test.go │ │ │ │ │ └── xunit_test.go │ │ │ │ ├── convert_goldmasters │ │ │ │ │ ├── extra_functions_test.go │ │ │ │ │ ├── fixtures_suite_test.go │ │ │ │ │ ├── nested_subpackage_test.go │ │ │ │ │ ├── nested_suite_test.go │ │ │ │ │ ├── nested_test.go │ │ │ │ │ ├── outside_package_test.go │ │ │ │ │ ├── suite_test.go │ │ │ │ │ └── xunit_test.go │ │ │ │ ├── coverage_fixture │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── coverage_fixture_suite_test.go │ │ │ │ │ ├── coverage_fixture_test.go │ │ │ │ │ └── external_coverage_fixture │ │ │ │ │ │ └── external_coverage.go │ │ │ │ ├── does_not_compile │ │ │ │ │ ├── does_not_compile_suite_test.go │ │ │ │ │ └── does_not_compile_test.go │ │ │ │ ├── eventually_failing │ │ │ │ │ ├── eventually_failing_suite_test.go │ │ │ │ │ └── eventually_failing_test.go │ │ │ │ ├── exiting_synchronized_setup_tests │ │ │ │ │ └── exiting_synchronized_setup_tests_suite_test.go │ │ │ │ ├── fail_fixture │ │ │ │ │ ├── fail_fixture_suite_test.go │ │ │ │ │ └── fail_fixture_test.go │ │ │ │ ├── failing_after_suite │ │ │ │ │ ├── failing_after_suite_suite_test.go │ │ │ │ │ └── failing_after_suite_test.go │ │ │ │ ├── failing_before_suite │ │ │ │ │ ├── failing_before_suite_suite_test.go │ │ │ │ │ └── failing_before_suite_test.go │ │ │ │ ├── failing_ginkgo_tests │ │ │ │ │ ├── failing_ginkgo_tests.go │ │ │ │ │ ├── failing_ginkgo_tests_suite_test.go │ │ │ │ │ └── failing_ginkgo_tests_test.go │ │ │ │ ├── flags_tests │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_suite_test.go │ │ │ │ │ └── flags_test.go │ │ │ │ ├── focused_fixture │ │ │ │ │ ├── focused_fixture_suite_test.go │ │ │ │ │ └── focused_fixture_test.go │ │ │ │ ├── hanging_suite │ │ │ │ │ ├── hanging_suite_suite_test.go │ │ │ │ │ └── hanging_suite_test.go │ │ │ │ ├── more_ginkgo_tests │ │ │ │ │ ├── more_ginkgo_tests.go │ │ │ │ │ ├── more_ginkgo_tests_suite_test.go │ │ │ │ │ └── more_ginkgo_tests_test.go │ │ │ │ ├── no_tests │ │ │ │ │ └── no_tests.go │ │ │ │ ├── passing_ginkgo_tests │ │ │ │ │ ├── passing_ginkgo_tests.go │ │ │ │ │ ├── passing_ginkgo_tests_suite_test.go │ │ │ │ │ └── passing_ginkgo_tests_test.go │ │ │ │ ├── passing_suite_setup │ │ │ │ │ ├── passing_suite_setup_suite_test.go │ │ │ │ │ └── passing_suite_test.go │ │ │ │ ├── progress_fixture │ │ │ │ │ ├── progress_fixture_suite_test.go │ │ │ │ │ └── progress_fixture_test.go │ │ │ │ ├── synchronized_setup_tests │ │ │ │ │ └── synchronized_setup_tests_suite_test.go │ │ │ │ ├── tags_tests │ │ │ │ │ ├── ignored_test.go │ │ │ │ │ ├── tags_tests_suite_test.go │ │ │ │ │ └── tags_tests_test.go │ │ │ │ ├── test_description │ │ │ │ │ ├── test_description_suite_test.go │ │ │ │ │ └── test_description_test.go │ │ │ │ ├── watch_fixtures │ │ │ │ │ ├── A │ │ │ │ │ │ ├── A.go │ │ │ │ │ │ ├── A_suite_test.go │ │ │ │ │ │ └── A_test.go │ │ │ │ │ ├── B │ │ │ │ │ │ ├── B.go │ │ │ │ │ │ ├── B_suite_test.go │ │ │ │ │ │ └── B_test.go │ │ │ │ │ ├── C │ │ │ │ │ │ ├── C.go │ │ │ │ │ │ ├── C_suite_test.go │ │ │ │ │ │ └── C_test.go │ │ │ │ │ └── D │ │ │ │ │ │ ├── D.go │ │ │ │ │ │ ├── D_suite_test.go │ │ │ │ │ │ └── D_test.go │ │ │ │ └── xunit_tests │ │ │ │ │ ├── xunit_tests.go │ │ │ │ │ └── xunit_tests_test.go │ │ │ ├── convert_test.go │ │ │ ├── coverage_test.go │ │ │ ├── fail_test.go │ │ │ ├── flags_test.go │ │ │ ├── integration.go │ │ │ ├── integration_suite_test.go │ │ │ ├── interrupt_test.go │ │ │ ├── precompiled_test.go │ │ │ ├── progress_test.go │ │ │ ├── run_test.go │ │ │ ├── subcommand_test.go │ │ │ ├── suite_setup_test.go │ │ │ ├── tags_test.go │ │ │ ├── test_description_test.go │ │ │ ├── verbose_and_succinct_test.go │ │ │ └── watch_test.go │ │ ├── internal │ │ │ ├── codelocation │ │ │ │ ├── code_location.go │ │ │ │ ├── code_location_suite_test.go │ │ │ │ └── code_location_test.go │ │ │ ├── containernode │ │ │ │ ├── container_node.go │ │ │ │ ├── container_node_suite_test.go │ │ │ │ └── container_node_test.go │ │ │ ├── failer │ │ │ │ ├── failer.go │ │ │ │ ├── failer_suite_test.go │ │ │ │ └── failer_test.go │ │ │ ├── leafnodes │ │ │ │ ├── benchmarker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── it_node.go │ │ │ │ ├── it_node_test.go │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ ├── measure_node.go │ │ │ │ ├── measure_node_test.go │ │ │ │ ├── runner.go │ │ │ │ ├── setup_nodes.go │ │ │ │ ├── setup_nodes_test.go │ │ │ │ ├── shared_runner_test.go │ │ │ │ ├── suite_nodes.go │ │ │ │ ├── suite_nodes_test.go │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ ├── synchronized_after_suite_node_test.go │ │ │ │ ├── synchronized_before_suite_node.go │ │ │ │ └── synchronized_before_suite_node_test.go │ │ │ ├── remote │ │ │ │ ├── aggregator.go │ │ │ │ ├── aggregator_test.go │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ ├── fake_poster_test.go │ │ │ │ ├── forwarding_reporter.go │ │ │ │ ├── forwarding_reporter_test.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── remote_suite_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── spec │ │ │ │ ├── index_computer.go │ │ │ │ ├── index_computer_test.go │ │ │ │ ├── spec.go │ │ │ │ ├── spec_suite_test.go │ │ │ │ ├── spec_test.go │ │ │ │ ├── specs.go │ │ │ │ └── specs_test.go │ │ │ ├── specrunner │ │ │ │ ├── random_id.go │ │ │ │ ├── spec_runner.go │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ └── spec_runner_test.go │ │ │ ├── suite │ │ │ │ ├── suite.go │ │ │ │ ├── suite_suite_test.go │ │ │ │ └── suite_test.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ └── writer │ │ │ │ ├── fake_writer.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_suite_test.go │ │ │ │ └── writer_test.go │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── default_reporter_test.go │ │ │ ├── fake_reporter.go │ │ │ ├── junit_reporter.go │ │ │ ├── junit_reporter_test.go │ │ │ ├── reporter.go │ │ │ ├── reporters_suite_test.go │ │ │ ├── stenographer │ │ │ │ ├── console_logging.go │ │ │ │ ├── fake_stenographer.go │ │ │ │ └── stenographer.go │ │ │ ├── teamcity_reporter.go │ │ │ └── teamcity_reporter_test.go │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── synchronization.go │ │ │ ├── types.go │ │ │ ├── types_suite_test.go │ │ │ └── types_test.go │ └── gomega │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── format │ │ ├── format.go │ │ ├── format_suite_test.go │ │ └── format_test.go │ │ ├── gbytes │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── gbuffer_suite_test.go │ │ ├── say_matcher.go │ │ └── say_matcher_test.go │ │ ├── gexec │ │ ├── _fixture │ │ │ └── firefly │ │ │ │ └── main.go │ │ ├── build.go │ │ ├── exit_matcher.go │ │ ├── exit_matcher_test.go │ │ ├── gexec_suite_test.go │ │ ├── prefixed_writer.go │ │ ├── prefixed_writer_test.go │ │ ├── session.go │ │ └── session_test.go │ │ ├── ghttp │ │ ├── handlers.go │ │ ├── test_server.go │ │ ├── test_server_suite_test.go │ │ └── test_server_test.go │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion │ │ │ ├── assertion.go │ │ │ ├── assertion_suite_test.go │ │ │ └── assertion_test.go │ │ ├── asyncassertion │ │ │ ├── async_assertion.go │ │ │ ├── async_assertion_suite_test.go │ │ │ └── async_assertion_test.go │ │ ├── fakematcher │ │ │ └── fake_matcher.go │ │ └── testingtsupport │ │ │ ├── testing_t_support.go │ │ │ └── testing_t_support_test.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── assignable_to_type_of_matcher.go │ │ ├── assignable_to_type_of_matcher_test.go │ │ ├── be_a_directory.go │ │ ├── be_a_directory_test.go │ │ ├── be_a_regular_file.go │ │ ├── be_a_regular_file_test.go │ │ ├── be_an_existing_file.go │ │ ├── be_an_existing_file_test.go │ │ ├── be_closed_matcher.go │ │ ├── be_closed_matcher_test.go │ │ ├── be_empty_matcher.go │ │ ├── be_empty_matcher_test.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_equivalent_to_matcher_test.go │ │ ├── be_false_matcher.go │ │ ├── be_false_matcher_test.go │ │ ├── be_nil_matcher.go │ │ ├── be_nil_matcher_test.go │ │ ├── be_numerically_matcher.go │ │ ├── be_numerically_matcher_test.go │ │ ├── be_sent_matcher.go │ │ ├── be_sent_matcher_test.go │ │ ├── be_temporally_matcher.go │ │ ├── be_temporally_matcher_test.go │ │ ├── be_true_matcher.go │ │ ├── be_true_matcher_test.go │ │ ├── be_zero_matcher.go │ │ ├── be_zero_matcher_test.go │ │ ├── consist_of.go │ │ ├── consist_of_test.go │ │ ├── contain_element_matcher.go │ │ ├── contain_element_matcher_test.go │ │ ├── contain_substring_matcher.go │ │ ├── contain_substring_matcher_test.go │ │ ├── equal_matcher.go │ │ ├── equal_matcher_test.go │ │ ├── have_key_matcher.go │ │ ├── have_key_matcher_test.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_key_with_value_matcher_test.go │ │ ├── have_len_matcher.go │ │ ├── have_len_matcher_test.go │ │ ├── have_occurred_matcher.go │ │ ├── have_occurred_matcher_test.go │ │ ├── have_prefix_matcher.go │ │ ├── have_prefix_matcher_test.go │ │ ├── have_suffix_matcher.go │ │ ├── have_suffix_matcher_test.go │ │ ├── match_error_matcher.go │ │ ├── match_error_matcher_test.go │ │ ├── match_json_matcher.go │ │ ├── match_json_matcher_test.go │ │ ├── match_regexp_matcher.go │ │ ├── match_regexp_matcher_test.go │ │ ├── matcher_tests_suite_test.go │ │ ├── panic_matcher.go │ │ ├── panic_matcher_test.go │ │ ├── receive_matcher.go │ │ ├── receive_matcher_test.go │ │ ├── succeed_matcher.go │ │ ├── succeed_matcher_test.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ └── type_support.go │ │ └── types │ │ └── types.go ├── pivotal-golang │ ├── clock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clock.go │ │ ├── fakeclock │ │ │ ├── fake_clock.go │ │ │ ├── fake_clock_test.go │ │ │ ├── fake_ticker.go │ │ │ ├── fake_ticker_test.go │ │ │ ├── fake_timer.go │ │ │ ├── fake_timer_test.go │ │ │ └── fakeclock_suite_test.go │ │ ├── ticker.go │ │ └── timer.go │ └── yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── stretchr │ └── testify │ └── assert │ ├── assertions.go │ ├── assertions_test.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ ├── forward_assertions_test.go │ ├── http_assertions.go │ └── http_assertions_test.go ├── golang.org └── x │ └── crypto │ └── ssh │ ├── agent │ ├── client.go │ ├── client_test.go │ ├── forward.go │ ├── keyring.go │ ├── server.go │ ├── server_test.go │ └── testdata_test.go │ ├── benchmark_test.go │ ├── buffer.go │ ├── buffer_test.go │ ├── certs.go │ ├── certs_test.go │ ├── channel.go │ ├── cipher.go │ ├── cipher_test.go │ ├── client.go │ ├── client_auth.go │ ├── client_auth_test.go │ ├── client_test.go │ ├── common.go │ ├── connection.go │ ├── doc.go │ ├── example_test.go │ ├── handshake.go │ ├── handshake_test.go │ ├── kex.go │ ├── kex_test.go │ ├── keys.go │ ├── keys_test.go │ ├── mac.go │ ├── mempipe_test.go │ ├── messages.go │ ├── messages_test.go │ ├── mux.go │ ├── mux_test.go │ ├── server.go │ ├── session.go │ ├── session_test.go │ ├── tcpip.go │ ├── tcpip_test.go │ ├── terminal │ ├── terminal.go │ ├── terminal_test.go │ ├── util.go │ ├── util_bsd.go │ ├── util_linux.go │ └── util_windows.go │ ├── test │ ├── agent_unix_test.go │ ├── cert_test.go │ ├── doc.go │ ├── forward_unix_test.go │ ├── session_test.go │ ├── tcpip_test.go │ ├── test_unix_test.go │ └── testdata_test.go │ ├── testdata │ ├── doc.go │ └── keys.go │ ├── testdata_test.go │ ├── transport.go │ └── transport_test.go └── gopkg.in ├── check.v1 ├── .gitignore ├── LICENSE ├── README.md ├── TODO ├── benchmark.go ├── benchmark_test.go ├── bootstrap_test.go ├── check.go ├── check_test.go ├── checkers.go ├── checkers_test.go ├── export_test.go ├── fixture_test.go ├── foundation_test.go ├── helpers.go ├── helpers_test.go ├── printer.go ├── printer_test.go ├── run.go └── run_test.go └── yaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── README.md ├── apic.go ├── decode.go ├── decode_test.go ├── emitterc.go ├── encode.go ├── encode_test.go ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── suite_test.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vagrant/ 3 | /out/* 4 | tmp/ 5 | **/*.test 6 | .idea/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/Vagrantfile -------------------------------------------------------------------------------- /acceptance/acceptance_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/acceptance_suite_test.go -------------------------------------------------------------------------------- /acceptance/assets/dummy-release.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-release.tgz -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-too-boshrelease/.gitignore -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-too-boshrelease/README.md -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/config/final.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/jobs/dummyToo/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-too-boshrelease/jobs/dummyToo/monit -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/jobs/dummyToo/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-too-boshrelease/jobs/dummyToo/spec -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-boshrelease/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acceptance/assets/dummy-too-release.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/dummy-too-release.tgz -------------------------------------------------------------------------------- /acceptance/assets/invalid_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/invalid_manifest.yml -------------------------------------------------------------------------------- /acceptance/assets/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/manifest.yml -------------------------------------------------------------------------------- /acceptance/assets/manifest_with_all_network_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/manifest_with_all_network_types.yml -------------------------------------------------------------------------------- /acceptance/assets/manifest_without_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/manifest_without_registry.yml -------------------------------------------------------------------------------- /acceptance/assets/modified_disk_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/modified_disk_manifest.yml -------------------------------------------------------------------------------- /acceptance/assets/modified_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/modified_manifest.yml -------------------------------------------------------------------------------- /acceptance/assets/sample-release-compiled-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release-compiled-manifest.yml -------------------------------------------------------------------------------- /acceptance/assets/sample-release-compiled.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release-compiled.tgz -------------------------------------------------------------------------------- /acceptance/assets/sample-release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release/.gitignore -------------------------------------------------------------------------------- /acceptance/assets/sample-release/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acceptance/assets/sample-release/config/dev.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dev_name: sample-release 3 | -------------------------------------------------------------------------------- /acceptance/assets/sample-release/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | final_name: sample-release 3 | -------------------------------------------------------------------------------- /acceptance/assets/sample-release/jobs/sample-job/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release/jobs/sample-job/monit -------------------------------------------------------------------------------- /acceptance/assets/sample-release/jobs/sample-job/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release/jobs/sample-job/spec -------------------------------------------------------------------------------- /acceptance/assets/sample-release/packages/sample-pkg/packaging: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | -------------------------------------------------------------------------------- /acceptance/assets/sample-release/packages/sample-pkg/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/assets/sample-release/packages/sample-pkg/spec -------------------------------------------------------------------------------- /acceptance/assets/sample-release/src/sample-pkg/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acceptance/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/config.go -------------------------------------------------------------------------------- /acceptance/instance_ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/instance_ssh.go -------------------------------------------------------------------------------- /acceptance/lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/lifecycle_test.go -------------------------------------------------------------------------------- /acceptance/remote_test_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/remote_test_environment.go -------------------------------------------------------------------------------- /acceptance/ssh_cmd_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/acceptance/ssh_cmd_runner.go -------------------------------------------------------------------------------- /agentclient/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/agentclient/mocks/mocks.go -------------------------------------------------------------------------------- /bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/build -------------------------------------------------------------------------------- /bin/build-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/build-linux-amd64 -------------------------------------------------------------------------------- /bin/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/clean -------------------------------------------------------------------------------- /bin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/env -------------------------------------------------------------------------------- /bin/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/go -------------------------------------------------------------------------------- /bin/gocyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/gocyclo -------------------------------------------------------------------------------- /bin/godirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/godirs -------------------------------------------------------------------------------- /bin/gofiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/gofiles -------------------------------------------------------------------------------- /bin/govet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/govet -------------------------------------------------------------------------------- /bin/install-ginkgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/install-ginkgo -------------------------------------------------------------------------------- /bin/mockgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/mockgen -------------------------------------------------------------------------------- /bin/require-ci-golang-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/require-ci-golang-version -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test -------------------------------------------------------------------------------- /bin/test-acceptance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-acceptance -------------------------------------------------------------------------------- /bin/test-acceptance-with-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-acceptance-with-vm -------------------------------------------------------------------------------- /bin/test-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-integration -------------------------------------------------------------------------------- /bin/test-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-prepare -------------------------------------------------------------------------------- /bin/test-unhandled-errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-unhandled-errors -------------------------------------------------------------------------------- /bin/test-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/bin/test-unit -------------------------------------------------------------------------------- /blobstore/blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/blobstore.go -------------------------------------------------------------------------------- /blobstore/blobstore_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/blobstore_factory.go -------------------------------------------------------------------------------- /blobstore/blobstore_factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/blobstore_factory_test.go -------------------------------------------------------------------------------- /blobstore/blobstore_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/blobstore_suite_test.go -------------------------------------------------------------------------------- /blobstore/blobstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/blobstore_test.go -------------------------------------------------------------------------------- /blobstore/fakes/fake_blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/fakes/fake_blobstore.go -------------------------------------------------------------------------------- /blobstore/fakes/fake_blobstore_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/fakes/fake_blobstore_factory.go -------------------------------------------------------------------------------- /blobstore/local_blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/local_blob.go -------------------------------------------------------------------------------- /blobstore/local_blob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/local_blob_test.go -------------------------------------------------------------------------------- /blobstore/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/blobstore/mocks/mocks.go -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/Vagrantfile -------------------------------------------------------------------------------- /ci/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/Dockerfile -------------------------------------------------------------------------------- /ci/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/README.md -------------------------------------------------------------------------------- /ci/docker/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/Vagrantfile -------------------------------------------------------------------------------- /ci/docker/build-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/build-docker-image.sh -------------------------------------------------------------------------------- /ci/docker/deps-golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/deps-golang -------------------------------------------------------------------------------- /ci/docker/install-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/install-go.sh -------------------------------------------------------------------------------- /ci/docker/install-ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/install-ruby.sh -------------------------------------------------------------------------------- /ci/docker/install-vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/install-vagrant.sh -------------------------------------------------------------------------------- /ci/docker/root_bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/docker/root_bashrc -------------------------------------------------------------------------------- /ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/pipeline.yml -------------------------------------------------------------------------------- /ci/run-acceptance-with-vm-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/run-acceptance-with-vm-in-container.sh -------------------------------------------------------------------------------- /ci/tasks/build-darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/build-darwin.yml -------------------------------------------------------------------------------- /ci/tasks/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/build-linux.yml -------------------------------------------------------------------------------- /ci/tasks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/build.sh -------------------------------------------------------------------------------- /ci/tasks/test-acceptance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-acceptance.sh -------------------------------------------------------------------------------- /ci/tasks/test-acceptance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-acceptance.yml -------------------------------------------------------------------------------- /ci/tasks/test-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-integration.sh -------------------------------------------------------------------------------- /ci/tasks/test-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-integration.yml -------------------------------------------------------------------------------- /ci/tasks/test-unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-unit.sh -------------------------------------------------------------------------------- /ci/tasks/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/tasks/test-unit.yml -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ci/test.sh -------------------------------------------------------------------------------- /cloud/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cloud.go -------------------------------------------------------------------------------- /cloud/cloud_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cloud_suite_test.go -------------------------------------------------------------------------------- /cloud/cloud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cloud_test.go -------------------------------------------------------------------------------- /cloud/cpi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cpi.go -------------------------------------------------------------------------------- /cloud/cpi_cmd_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cpi_cmd_runner.go -------------------------------------------------------------------------------- /cloud/cpi_cmd_runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/cpi_cmd_runner_test.go -------------------------------------------------------------------------------- /cloud/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/errors.go -------------------------------------------------------------------------------- /cloud/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/factory.go -------------------------------------------------------------------------------- /cloud/fakes/fake_cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/fakes/fake_cloud.go -------------------------------------------------------------------------------- /cloud/fakes/fake_cpi_cmd_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/fakes/fake_cpi_cmd_runner.go -------------------------------------------------------------------------------- /cloud/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cloud/mocks/mocks.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/cmd_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/cmd_suite_test.go -------------------------------------------------------------------------------- /cmd/delete_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/delete_cmd.go -------------------------------------------------------------------------------- /cmd/delete_cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/delete_cmd_test.go -------------------------------------------------------------------------------- /cmd/deploy_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deploy_cmd.go -------------------------------------------------------------------------------- /cmd/deploy_cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deploy_cmd_test.go -------------------------------------------------------------------------------- /cmd/deployment_deleter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deployment_deleter.go -------------------------------------------------------------------------------- /cmd/deployment_deleteter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deployment_deleteter_test.go -------------------------------------------------------------------------------- /cmd/deployment_manifest_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deployment_manifest_parser.go -------------------------------------------------------------------------------- /cmd/deployment_preparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/deployment_preparer.go -------------------------------------------------------------------------------- /cmd/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/factory.go -------------------------------------------------------------------------------- /cmd/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/factory_test.go -------------------------------------------------------------------------------- /cmd/fakes/fake_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/fakes/fake_command.go -------------------------------------------------------------------------------- /cmd/fakes/fake_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/fakes/fake_factory.go -------------------------------------------------------------------------------- /cmd/fakes/fake_installation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/fakes/fake_installation.go -------------------------------------------------------------------------------- /cmd/help_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/help_cmd.go -------------------------------------------------------------------------------- /cmd/help_cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/help_cmd_test.go -------------------------------------------------------------------------------- /cmd/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/mocks/mocks.go -------------------------------------------------------------------------------- /cmd/release_set_and_installation_manifest_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/release_set_and_installation_manifest_parser.go -------------------------------------------------------------------------------- /cmd/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/runner.go -------------------------------------------------------------------------------- /cmd/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/runner_test.go -------------------------------------------------------------------------------- /cmd/temp_root_configurator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/temp_root_configurator.go -------------------------------------------------------------------------------- /cmd/temp_root_configurator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/temp_root_configurator_test.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cmd/version_test.go -------------------------------------------------------------------------------- /common/net/ip_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/net/ip_helper.go -------------------------------------------------------------------------------- /common/net/ip_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/net/ip_helper_test.go -------------------------------------------------------------------------------- /common/net/net_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/net/net_suite_test.go -------------------------------------------------------------------------------- /common/util/file_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/util/file_helper.go -------------------------------------------------------------------------------- /common/util/file_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/util/file_helper_test.go -------------------------------------------------------------------------------- /common/util/util_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/common/util/util_suite_test.go -------------------------------------------------------------------------------- /config/config_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/config_suite_test.go -------------------------------------------------------------------------------- /config/deployment_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/deployment_repo.go -------------------------------------------------------------------------------- /config/deployment_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/deployment_repo_test.go -------------------------------------------------------------------------------- /config/deployment_state_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/deployment_state_service.go -------------------------------------------------------------------------------- /config/disk_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/disk_repo.go -------------------------------------------------------------------------------- /config/disk_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/disk_repo_test.go -------------------------------------------------------------------------------- /config/fakes/fake_deployment_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/fakes/fake_deployment_repo.go -------------------------------------------------------------------------------- /config/fakes/fake_disk_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/fakes/fake_disk_repo.go -------------------------------------------------------------------------------- /config/fakes/fake_release_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/fakes/fake_release_repo.go -------------------------------------------------------------------------------- /config/fakes/fake_stemcell_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/fakes/fake_stemcell_repo.go -------------------------------------------------------------------------------- /config/fakes/fake_vm_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/fakes/fake_vm_repo.go -------------------------------------------------------------------------------- /config/file_system_deployment_state_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/file_system_deployment_state_service.go -------------------------------------------------------------------------------- /config/file_system_deployment_state_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/file_system_deployment_state_service_test.go -------------------------------------------------------------------------------- /config/legacy_deployment_state_migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/legacy_deployment_state_migrator.go -------------------------------------------------------------------------------- /config/legacy_deployment_state_migrator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/legacy_deployment_state_migrator_test.go -------------------------------------------------------------------------------- /config/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/mocks/mocks.go -------------------------------------------------------------------------------- /config/release_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/release_repo.go -------------------------------------------------------------------------------- /config/release_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/release_repo_test.go -------------------------------------------------------------------------------- /config/stemcell_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/stemcell_repo.go -------------------------------------------------------------------------------- /config/stemcell_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/stemcell_repo_test.go -------------------------------------------------------------------------------- /config/vm_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/vm_repo.go -------------------------------------------------------------------------------- /config/vm_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/config/vm_repo_test.go -------------------------------------------------------------------------------- /cpi/release/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/installer.go -------------------------------------------------------------------------------- /cpi/release/installer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/installer_test.go -------------------------------------------------------------------------------- /cpi/release/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/mocks/mocks.go -------------------------------------------------------------------------------- /cpi/release/release_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/release_suite_test.go -------------------------------------------------------------------------------- /cpi/release/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/validator.go -------------------------------------------------------------------------------- /cpi/release/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/cpi/release/validator_test.go -------------------------------------------------------------------------------- /crypto/crypto_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/crypto/crypto_suite_test.go -------------------------------------------------------------------------------- /crypto/fakes/fake_sha1_calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/crypto/fakes/fake_sha1_calculator.go -------------------------------------------------------------------------------- /crypto/sha1_calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/crypto/sha1_calculator.go -------------------------------------------------------------------------------- /crypto/sha1_calculator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/crypto/sha1_calculator_test.go -------------------------------------------------------------------------------- /deployment/deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/deployer.go -------------------------------------------------------------------------------- /deployment/deployer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/deployer_test.go -------------------------------------------------------------------------------- /deployment/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/deployment.go -------------------------------------------------------------------------------- /deployment/deployment_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/deployment_suite_test.go -------------------------------------------------------------------------------- /deployment/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/deployment_test.go -------------------------------------------------------------------------------- /deployment/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/disk.go -------------------------------------------------------------------------------- /deployment/disk/disk_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/disk_suite_test.go -------------------------------------------------------------------------------- /deployment/disk/disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/disk_test.go -------------------------------------------------------------------------------- /deployment/disk/fakes/fake_disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/fakes/fake_disk.go -------------------------------------------------------------------------------- /deployment/disk/fakes/fake_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/fakes/fake_manager.go -------------------------------------------------------------------------------- /deployment/disk/fakes/fake_manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/fakes/fake_manager_factory.go -------------------------------------------------------------------------------- /deployment/disk/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/manager.go -------------------------------------------------------------------------------- /deployment/disk/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/manager_factory.go -------------------------------------------------------------------------------- /deployment/disk/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/manager_test.go -------------------------------------------------------------------------------- /deployment/disk/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/disk/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/factory.go -------------------------------------------------------------------------------- /deployment/fakes/fake_vm_deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/fakes/fake_vm_deployer.go -------------------------------------------------------------------------------- /deployment/instance/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/factory.go -------------------------------------------------------------------------------- /deployment/instance/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/instance.go -------------------------------------------------------------------------------- /deployment/instance/instance_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/instance_suite_test.go -------------------------------------------------------------------------------- /deployment/instance/instance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/instance_test.go -------------------------------------------------------------------------------- /deployment/instance/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/manager.go -------------------------------------------------------------------------------- /deployment/instance/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/manager_factory.go -------------------------------------------------------------------------------- /deployment/instance/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/manager_test.go -------------------------------------------------------------------------------- /deployment/instance/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/instance/state/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/builder.go -------------------------------------------------------------------------------- /deployment/instance/state/builder_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/builder_factory.go -------------------------------------------------------------------------------- /deployment/instance/state/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/builder_test.go -------------------------------------------------------------------------------- /deployment/instance/state/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/instance/state/remote_package_compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/remote_package_compiler.go -------------------------------------------------------------------------------- /deployment/instance/state/remote_package_compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/remote_package_compiler_test.go -------------------------------------------------------------------------------- /deployment/instance/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/state.go -------------------------------------------------------------------------------- /deployment/instance/state/state_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/state_suite_test.go -------------------------------------------------------------------------------- /deployment/instance/state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/instance/state/state_test.go -------------------------------------------------------------------------------- /deployment/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manager.go -------------------------------------------------------------------------------- /deployment/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manager_factory.go -------------------------------------------------------------------------------- /deployment/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manager_test.go -------------------------------------------------------------------------------- /deployment/manifest/deployment_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/deployment_suite_test.go -------------------------------------------------------------------------------- /deployment/manifest/disk_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/disk_pool.go -------------------------------------------------------------------------------- /deployment/manifest/fakes/fake_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/fakes/fake_deployment.go -------------------------------------------------------------------------------- /deployment/manifest/fakes/fake_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/fakes/fake_parser.go -------------------------------------------------------------------------------- /deployment/manifest/fakes/fake_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/fakes/fake_validator.go -------------------------------------------------------------------------------- /deployment/manifest/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/job.go -------------------------------------------------------------------------------- /deployment/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/manifest.go -------------------------------------------------------------------------------- /deployment/manifest/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/manifest_test.go -------------------------------------------------------------------------------- /deployment/manifest/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/network.go -------------------------------------------------------------------------------- /deployment/manifest/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/network_test.go -------------------------------------------------------------------------------- /deployment/manifest/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/parser.go -------------------------------------------------------------------------------- /deployment/manifest/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/parser_test.go -------------------------------------------------------------------------------- /deployment/manifest/resource_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/resource_pool.go -------------------------------------------------------------------------------- /deployment/manifest/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/validator.go -------------------------------------------------------------------------------- /deployment/manifest/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/validator_test.go -------------------------------------------------------------------------------- /deployment/manifest/watch_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/watch_time.go -------------------------------------------------------------------------------- /deployment/manifest/watch_time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/manifest/watch_time_test.go -------------------------------------------------------------------------------- /deployment/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/record.go -------------------------------------------------------------------------------- /deployment/record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/record_test.go -------------------------------------------------------------------------------- /deployment/release/job_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/release/job_resolver.go -------------------------------------------------------------------------------- /deployment/release/job_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/release/job_resolver_test.go -------------------------------------------------------------------------------- /deployment/release/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/release/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/release/release_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/release/release_suite_test.go -------------------------------------------------------------------------------- /deployment/sshtunnel/fakes/fake_ssh_tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/fakes/fake_ssh_tunnel.go -------------------------------------------------------------------------------- /deployment/sshtunnel/fakes/fake_ssh_tunnel_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/fakes/fake_ssh_tunnel_factory.go -------------------------------------------------------------------------------- /deployment/sshtunnel/ssh_tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/ssh_tunnel.go -------------------------------------------------------------------------------- /deployment/sshtunnel/ssh_tunnel_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/ssh_tunnel_factory.go -------------------------------------------------------------------------------- /deployment/sshtunnel/ssh_tunnel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/ssh_tunnel_test.go -------------------------------------------------------------------------------- /deployment/sshtunnel/sshtunnel_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/sshtunnel/sshtunnel_suite_test.go -------------------------------------------------------------------------------- /deployment/vm/disk_deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/disk_deployer.go -------------------------------------------------------------------------------- /deployment/vm/disk_deployer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/disk_deployer_test.go -------------------------------------------------------------------------------- /deployment/vm/fakes/fake_disk_deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/fakes/fake_disk_deployer.go -------------------------------------------------------------------------------- /deployment/vm/fakes/fake_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/fakes/fake_manager.go -------------------------------------------------------------------------------- /deployment/vm/fakes/fake_manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/fakes/fake_manager_factory.go -------------------------------------------------------------------------------- /deployment/vm/fakes/fake_vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/fakes/fake_vm.go -------------------------------------------------------------------------------- /deployment/vm/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/manager.go -------------------------------------------------------------------------------- /deployment/vm/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/manager_factory.go -------------------------------------------------------------------------------- /deployment/vm/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/manager_test.go -------------------------------------------------------------------------------- /deployment/vm/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/mocks/mocks.go -------------------------------------------------------------------------------- /deployment/vm/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/vm.go -------------------------------------------------------------------------------- /deployment/vm/vm_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/vm_suite_test.go -------------------------------------------------------------------------------- /deployment/vm/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deployment/vm/vm_test.go -------------------------------------------------------------------------------- /deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/deps.txt -------------------------------------------------------------------------------- /director/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/director/factory.go -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/bosh-init-delete-flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-delete-flow.graffle -------------------------------------------------------------------------------- /docs/bosh-init-delete-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-delete-flow.png -------------------------------------------------------------------------------- /docs/bosh-init-deploy-flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-deploy-flow.graffle -------------------------------------------------------------------------------- /docs/bosh-init-deploy-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-deploy-flow.png -------------------------------------------------------------------------------- /docs/bosh-init-packages.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-packages.graffle -------------------------------------------------------------------------------- /docs/bosh-init-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/bosh-init-packages.png -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/cli_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/cli_workflow.md -------------------------------------------------------------------------------- /docs/init-cli-flow.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/init-cli-flow.graffle -------------------------------------------------------------------------------- /docs/init-cli-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/init-cli-flow.png -------------------------------------------------------------------------------- /docs/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/docs/test.md -------------------------------------------------------------------------------- /index/file_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/file_index.go -------------------------------------------------------------------------------- /index/file_index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/file_index_test.go -------------------------------------------------------------------------------- /index/in_memory_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/in_memory_index.go -------------------------------------------------------------------------------- /index/in_memory_index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/in_memory_index_test.go -------------------------------------------------------------------------------- /index/index_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/index_interface.go -------------------------------------------------------------------------------- /index/index_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/index_suite_test.go -------------------------------------------------------------------------------- /index/test_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/index/test_helpers_test.go -------------------------------------------------------------------------------- /installation/blobextract/blob_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/blobextract/blob_suite_test.go -------------------------------------------------------------------------------- /installation/blobextract/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/blobextract/extractor.go -------------------------------------------------------------------------------- /installation/blobextract/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/blobextract/extractor_test.go -------------------------------------------------------------------------------- /installation/blobextract/fakeblobextract/fake_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/blobextract/fakeblobextract/fake_extractor.go -------------------------------------------------------------------------------- /installation/installation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installation.go -------------------------------------------------------------------------------- /installation/installation_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installation_suite_test.go -------------------------------------------------------------------------------- /installation/installation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installation_test.go -------------------------------------------------------------------------------- /installation/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installer.go -------------------------------------------------------------------------------- /installation/installer_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installer_factory.go -------------------------------------------------------------------------------- /installation/installer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/installer_test.go -------------------------------------------------------------------------------- /installation/job_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/job_renderer.go -------------------------------------------------------------------------------- /installation/job_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/job_renderer_test.go -------------------------------------------------------------------------------- /installation/job_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/job_resolver.go -------------------------------------------------------------------------------- /installation/job_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/job_resolver_test.go -------------------------------------------------------------------------------- /installation/manifest/fakes/fake_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/fakes/fake_parser.go -------------------------------------------------------------------------------- /installation/manifest/fakes/fake_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/fakes/fake_validator.go -------------------------------------------------------------------------------- /installation/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/manifest.go -------------------------------------------------------------------------------- /installation/manifest/manifest_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/manifest_suite_test.go -------------------------------------------------------------------------------- /installation/manifest/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/parser.go -------------------------------------------------------------------------------- /installation/manifest/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/parser_test.go -------------------------------------------------------------------------------- /installation/manifest/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/validator.go -------------------------------------------------------------------------------- /installation/manifest/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/manifest/validator_test.go -------------------------------------------------------------------------------- /installation/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/mocks/mocks.go -------------------------------------------------------------------------------- /installation/package_compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/package_compiler.go -------------------------------------------------------------------------------- /installation/package_compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/package_compiler_test.go -------------------------------------------------------------------------------- /installation/pkg/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/pkg/compiler.go -------------------------------------------------------------------------------- /installation/pkg/compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/pkg/compiler_test.go -------------------------------------------------------------------------------- /installation/pkg/package_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/pkg/package_suite_test.go -------------------------------------------------------------------------------- /installation/tarball/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/cache.go -------------------------------------------------------------------------------- /installation/tarball/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/cache_test.go -------------------------------------------------------------------------------- /installation/tarball/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/mocks/mocks.go -------------------------------------------------------------------------------- /installation/tarball/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/provider.go -------------------------------------------------------------------------------- /installation/tarball/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/provider_test.go -------------------------------------------------------------------------------- /installation/tarball/tarball_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/tarball/tarball_suite_test.go -------------------------------------------------------------------------------- /installation/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/target.go -------------------------------------------------------------------------------- /installation/target_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/target_provider.go -------------------------------------------------------------------------------- /installation/target_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/target_provider_test.go -------------------------------------------------------------------------------- /installation/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/target_test.go -------------------------------------------------------------------------------- /installation/uninstaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/uninstaller.go -------------------------------------------------------------------------------- /installation/uninstaller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/installation/uninstaller_test.go -------------------------------------------------------------------------------- /integration/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/integration/deploy_test.go -------------------------------------------------------------------------------- /integration/integration_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/integration/integration_suite_test.go -------------------------------------------------------------------------------- /logger/logger_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/logger/logger_suite_test.go -------------------------------------------------------------------------------- /logger/signalable_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/logger/signalable_logger.go -------------------------------------------------------------------------------- /logger/signalable_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/logger/signalable_logger_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/main.go -------------------------------------------------------------------------------- /registry/instance_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/instance_handler.go -------------------------------------------------------------------------------- /registry/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/mocks/mocks.go -------------------------------------------------------------------------------- /registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/registry.go -------------------------------------------------------------------------------- /registry/registry_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/registry_suite_test.go -------------------------------------------------------------------------------- /registry/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/server.go -------------------------------------------------------------------------------- /registry/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/registry/server_test.go -------------------------------------------------------------------------------- /release/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/extractor.go -------------------------------------------------------------------------------- /release/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/extractor_test.go -------------------------------------------------------------------------------- /release/fakes/fake_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/fakes/fake_release.go -------------------------------------------------------------------------------- /release/fakes/fake_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/fakes/fake_validator.go -------------------------------------------------------------------------------- /release/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/fetcher.go -------------------------------------------------------------------------------- /release/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/job.go -------------------------------------------------------------------------------- /release/job/job_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/job_suite_test.go -------------------------------------------------------------------------------- /release/job/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/job_test.go -------------------------------------------------------------------------------- /release/job/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/manifest/manifest.go -------------------------------------------------------------------------------- /release/job/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/reader.go -------------------------------------------------------------------------------- /release/job/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/job/reader_test.go -------------------------------------------------------------------------------- /release/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/manager.go -------------------------------------------------------------------------------- /release/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/manager_test.go -------------------------------------------------------------------------------- /release/manifest/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/manifest/release.go -------------------------------------------------------------------------------- /release/manifest/release_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/manifest/release_ref.go -------------------------------------------------------------------------------- /release/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/mocks/mocks.go -------------------------------------------------------------------------------- /release/pkg/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/package.go -------------------------------------------------------------------------------- /release/pkg/package_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/package_repo.go -------------------------------------------------------------------------------- /release/pkg/package_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/package_repo_test.go -------------------------------------------------------------------------------- /release/pkg/pkg_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/pkg_suite_test.go -------------------------------------------------------------------------------- /release/pkg/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/sort.go -------------------------------------------------------------------------------- /release/pkg/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/pkg/sort_test.go -------------------------------------------------------------------------------- /release/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/reader.go -------------------------------------------------------------------------------- /release/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/reader_test.go -------------------------------------------------------------------------------- /release/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/release.go -------------------------------------------------------------------------------- /release/release_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/release_suite_test.go -------------------------------------------------------------------------------- /release/release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/release_test.go -------------------------------------------------------------------------------- /release/set/manifest/fakes/fake_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/fakes/fake_parser.go -------------------------------------------------------------------------------- /release/set/manifest/fakes/fake_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/fakes/fake_validator.go -------------------------------------------------------------------------------- /release/set/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/manifest.go -------------------------------------------------------------------------------- /release/set/manifest/manifest_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/manifest_suite_test.go -------------------------------------------------------------------------------- /release/set/manifest/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/parser.go -------------------------------------------------------------------------------- /release/set/manifest/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/parser_test.go -------------------------------------------------------------------------------- /release/set/manifest/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/validator.go -------------------------------------------------------------------------------- /release/set/manifest/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/set/manifest/validator_test.go -------------------------------------------------------------------------------- /release/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/validator.go -------------------------------------------------------------------------------- /release/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/release/validator_test.go -------------------------------------------------------------------------------- /state/job/dependency_compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/job/dependency_compiler.go -------------------------------------------------------------------------------- /state/job/dependency_compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/job/dependency_compiler_test.go -------------------------------------------------------------------------------- /state/job/job_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/job/job_suite_test.go -------------------------------------------------------------------------------- /state/job/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/job/mocks/mocks.go -------------------------------------------------------------------------------- /state/pkg/compiled_package_repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/compiled_package_repo.go -------------------------------------------------------------------------------- /state/pkg/compiled_package_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/compiled_package_repo_test.go -------------------------------------------------------------------------------- /state/pkg/compiler_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/compiler_interface.go -------------------------------------------------------------------------------- /state/pkg/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/mocks/mocks.go -------------------------------------------------------------------------------- /state/pkg/pkg_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/pkg_suite_test.go -------------------------------------------------------------------------------- /state/pkg/resolve_dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/resolve_dependencies.go -------------------------------------------------------------------------------- /state/pkg/resolve_dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/state/pkg/resolve_dependencies_test.go -------------------------------------------------------------------------------- /stemcell/cloud_stemcell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/cloud_stemcell.go -------------------------------------------------------------------------------- /stemcell/cloud_stemcell_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/cloud_stemcell_test.go -------------------------------------------------------------------------------- /stemcell/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/extractor.go -------------------------------------------------------------------------------- /stemcell/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/extractor_test.go -------------------------------------------------------------------------------- /stemcell/fakes/fake_cloud_stemcell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fakes/fake_cloud_stemcell.go -------------------------------------------------------------------------------- /stemcell/fakes/fake_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fakes/fake_extractor.go -------------------------------------------------------------------------------- /stemcell/fakes/fake_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fakes/fake_manager.go -------------------------------------------------------------------------------- /stemcell/fakes/fake_manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fakes/fake_manager_factory.go -------------------------------------------------------------------------------- /stemcell/fakes/fake_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fakes/fake_reader.go -------------------------------------------------------------------------------- /stemcell/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/fetcher.go -------------------------------------------------------------------------------- /stemcell/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/manager.go -------------------------------------------------------------------------------- /stemcell/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/manager_factory.go -------------------------------------------------------------------------------- /stemcell/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/manager_test.go -------------------------------------------------------------------------------- /stemcell/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/mocks/mocks.go -------------------------------------------------------------------------------- /stemcell/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/reader.go -------------------------------------------------------------------------------- /stemcell/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/reader_test.go -------------------------------------------------------------------------------- /stemcell/stemcell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/stemcell.go -------------------------------------------------------------------------------- /stemcell/stemcell_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/stemcell/stemcell_suite_test.go -------------------------------------------------------------------------------- /templatescompiler/erbrenderer/erb_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/erbrenderer/erb_renderer.go -------------------------------------------------------------------------------- /templatescompiler/erbrenderer/erb_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/erbrenderer/erb_renderer_test.go -------------------------------------------------------------------------------- /templatescompiler/erbrenderer/erbrenderer_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/erbrenderer/erbrenderer_suite_test.go -------------------------------------------------------------------------------- /templatescompiler/erbrenderer/fakes/fake_erb_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/erbrenderer/fakes/fake_erb_renderer.go -------------------------------------------------------------------------------- /templatescompiler/job_evaluation_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_evaluation_context.go -------------------------------------------------------------------------------- /templatescompiler/job_evaluation_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_evaluation_context_test.go -------------------------------------------------------------------------------- /templatescompiler/job_list_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_list_renderer.go -------------------------------------------------------------------------------- /templatescompiler/job_list_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_list_renderer_test.go -------------------------------------------------------------------------------- /templatescompiler/job_renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_renderer.go -------------------------------------------------------------------------------- /templatescompiler/job_renderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/job_renderer_test.go -------------------------------------------------------------------------------- /templatescompiler/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/mocks/mocks.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list_archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list_archive.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list_archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list_archive_test.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list_compressor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list_compressor.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list_compressor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list_compressor_test.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_list_test.go -------------------------------------------------------------------------------- /templatescompiler/rendered_job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/rendered_job_test.go -------------------------------------------------------------------------------- /templatescompiler/templatescompiler_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/templatescompiler/templatescompiler_suite_test.go -------------------------------------------------------------------------------- /test_support/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/test_support/mocks/mocks.go -------------------------------------------------------------------------------- /test_support/spy.go: -------------------------------------------------------------------------------- 1 | package test_support 2 | 3 | type Spy interface { 4 | Record() 5 | } 6 | -------------------------------------------------------------------------------- /testutils/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/generate.go -------------------------------------------------------------------------------- /testutils/marshal_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/marshal_to_string.go -------------------------------------------------------------------------------- /testutils/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/mocks/mocks.go -------------------------------------------------------------------------------- /testutils/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/run.go -------------------------------------------------------------------------------- /testutils/stemcell_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/stemcell_creator.go -------------------------------------------------------------------------------- /testutils/tar_verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/testutils/tar_verifier.go -------------------------------------------------------------------------------- /uaa/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/uaa/factory.go -------------------------------------------------------------------------------- /ui/event_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/event_suite_test.go -------------------------------------------------------------------------------- /ui/fakes/fake_stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fakes/fake_stage.go -------------------------------------------------------------------------------- /ui/fakes/fake_ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fakes/fake_ui.go -------------------------------------------------------------------------------- /ui/fakes/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fakes/matchers.go -------------------------------------------------------------------------------- /ui/fmt/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fmt/duration.go -------------------------------------------------------------------------------- /ui/fmt/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fmt/duration_test.go -------------------------------------------------------------------------------- /ui/fmt/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fmt/error.go -------------------------------------------------------------------------------- /ui/fmt/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fmt/error_test.go -------------------------------------------------------------------------------- /ui/fmt/fmt_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/fmt/fmt_suite_test.go -------------------------------------------------------------------------------- /ui/indenting_ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/indenting_ui.go -------------------------------------------------------------------------------- /ui/indenting_ui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/indenting_ui_test.go -------------------------------------------------------------------------------- /ui/skip_stage_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/skip_stage_error.go -------------------------------------------------------------------------------- /ui/stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/stage.go -------------------------------------------------------------------------------- /ui/stage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/stage_test.go -------------------------------------------------------------------------------- /ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/ui.go -------------------------------------------------------------------------------- /ui/ui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/ui/ui_test.go -------------------------------------------------------------------------------- /update-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/update-dep -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/README.md -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/doublestar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/doublestar.go -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/doublestar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/doublestar_test.go -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/-: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/bmatcuk/doublestar/test/README.md -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/]: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/a/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/a/b/c/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/a/c/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/abc/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/abcd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/abcde: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/abxbbxdbxebxczzx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/abxbbxdbxebxczzy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/axbxcxdxe/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/axbxcxdxe/xxx/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/axbxcxdxexxx/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/axbxcxdxexxx/fff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/a☺b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/b/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/xxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/z: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/bmatcuk/doublestar/test/α: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/fs_test.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/fs_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/fs_unix.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/fs_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/fs_windows.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/fs_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/fs_windows_test.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/dir_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/dir_unix.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/env.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/error.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/file.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/os_test.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/stat_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/stat_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/stat_linux.go -------------------------------------------------------------------------------- /vendor/github.com/charlievieth/fs/testdata/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/charlievieth/fs/testdata/types.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/Vagrantfile -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/agent/agent.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/app/app.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/app/app_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/app/config.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/app/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/app/options.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/build -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/ci -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/env -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/gnatsd-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/gnatsd-darwin -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/gnatsd-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/gnatsd-linux -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/godirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/godirs -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/gofiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/gofiles -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/golint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/golint -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/govet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/govet -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/linenumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/linenumber -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/run -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/test -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/bin/test-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/bin/test-unit -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/ci/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/ci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/ci/Vagrantfile -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/ci/pipeline.yml -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/deps.txt -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/docs/dev_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/docs/dev_setup.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/docs/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/docs/windows.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/handler/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/handler/target.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/handler/topic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/handler/topic.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/integration/windows/fixtures/templates/crashes-on-start/bin/start.ps1: -------------------------------------------------------------------------------- 1 | Start-Sleep 2.0 2 | 3 | exit 3 4 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/integration/windows/fixtures/templates/say-hello/bin/run.ps1: -------------------------------------------------------------------------------- 1 | echo "hello world" 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/main/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/main/agent.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/mbus/agent.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/mbus/agent.cert -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/mbus/agent.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/mbus/agent.key -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/micro/agent.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/micro/agent.cert -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/micro/agent.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/micro/agent.key -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/syslog/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/syslog/server.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/test/agent.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/test/agent.cert -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/test/agent.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/test/agent.csr -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/test/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/test/agent.json -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/test/agent.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/test/agent.key -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-agent/update-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-agent/update-dep -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | pkg -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/app/app.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/app/app_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/build -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/clean -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/env -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/gofmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/gofmt -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/govet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/govet -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/test -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/test-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/test-prepare -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/bin/test-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/bin/test-unit -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/client/client.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/cmd.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | 3 | type Cmd interface { 4 | Run(args []string) (err error) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/factory.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/get.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/get_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/put.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/put_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/put_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/cmd/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/cmd/runner.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/config/config.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/deps.txt -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/main/dav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/main/dav.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-davcli/update-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-davcli/update-dep -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vagrant 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/bin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/bin/env -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/bin/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/bin/go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/bin/test -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/bin/test-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/bin/test-unit -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/blobstore/test_assets/some.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/ci/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/ci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/ci/Vagrantfile -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/ci/pipeline.yml -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/deps.txt -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stderr.log: -------------------------------------------------------------------------------- 1 | this is app stderr 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stdout.log: -------------------------------------------------------------------------------- 1 | this is app stdout 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/more_logs/more.stdout.log: -------------------------------------------------------------------------------- 1 | this is more stdout 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/other_app.stderr.log: -------------------------------------------------------------------------------- 1 | this is other app stderr 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/other_app.stdout.log: -------------------------------------------------------------------------------- 1 | this is other app stdout 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/some_directory/sub_dir/other_sub_dir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/logger/logger.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/property/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/property/list.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/property/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/property/map.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/baz/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/bosh-utils/update-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/bosh-utils/update-dep -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gofileutils/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/gofileutils/glob/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gofileutils/glob/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/gofileutils/glob/dir.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gofileutils/glob/dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/gofileutils/glob/dir_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gofileutils/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/cloudfoundry/gofileutils/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/call.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/callset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/callset.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/controller.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/controller_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/gomock/matchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/golang/mock/gomock/matchers_test.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/decode_hooks.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/mitchellh/mapstructure/mapstructure.go -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/nu7hatch/gouuid/COPYING -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/nu7hatch/gouuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/nu7hatch/gouuid/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/nu7hatch/gouuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/nu7hatch/gouuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/config/config.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/bootstrap_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/bootstrap_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/build_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/build_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/convert/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/convert/import.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/convert/test_finder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/convert/test_finder.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/convert_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/convert_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/generate_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/generate_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/help_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/help_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/main.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/nodot/nodot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/nodot/nodot.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/nodot/nodot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/nodot/nodot_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/nodot_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/nodot_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/notifications.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/run_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/run_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/suite_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/suite_runner.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/unfocus_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/unfocus_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/version_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/version_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/watch/delta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/watch/delta.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/watch/delta_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/watch/delta_tracker.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/watch/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/watch/dependencies.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/watch/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/watch/suite.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/watch_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/watch_command.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/_fixtures/more_ginkgo_tests/more_ginkgo_tests.go: -------------------------------------------------------------------------------- 1 | package more_ginkgo_tests 2 | 3 | func AlwaysTrue() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C/C.go: -------------------------------------------------------------------------------- 1 | package C 2 | 3 | func DoIt() string { 4 | return "done!" 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/_fixtures/xunit_tests/xunit_tests.go: -------------------------------------------------------------------------------- 1 | package xunit_tests 2 | 3 | func AlwaysTrue() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/convert_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/fail_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/flags_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/integration.go: -------------------------------------------------------------------------------- 1 | package integration 2 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/run_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/tags_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/watch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/integration/watch_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/failer/failer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/failer/failer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/server.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/spec.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/spec_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/specs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/specs.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/specs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/specs_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/suite/suite.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/writer/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/internal/writer/writer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/fake_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/reporters/fake_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/junit_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/reporters/junit_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/reporters/reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/code_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/types/code_location.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/synchronization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/types/synchronization.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/types/types_suite_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/ginkgo/types/types_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/format/format.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/format/format_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/format/format_suite_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/format/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/format/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gbytes/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gbytes/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gbytes/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gbytes/buffer_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gbytes/say_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gbytes/say_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/build.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/exit_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/exit_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/prefixed_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/prefixed_writer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/session.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gexec/session_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/ghttp/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/ghttp/handlers.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/ghttp/test_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/ghttp/test_server.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/ghttp/test_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/ghttp/test_server_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gomega_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/gomega_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_a_directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/be_a_directory.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_true_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/consist_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/consist_of.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/consist_of_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/consist_of_test.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/equal_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/equal_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/panic_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/panic_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/receive_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/receive_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/succeed_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/type_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/matchers/type_support.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/onsi/gomega/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/clock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/clock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/clock/README.md -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/clock/clock.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/clock/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/clock/ticker.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/clock/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/clock/timer.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/apic.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/decode_test.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/emitterc.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/parserc.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/readerc.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/resolve.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/scannerc.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/sorter.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/suite_test.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/writerc.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/yamlh.go -------------------------------------------------------------------------------- /vendor/github.com/pivotal-golang/yaml/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/pivotal-golang/yaml/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/agent_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/agent_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/forward_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/forward_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/benchmark_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/bootstrap_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/check_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/checkers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/export_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/fixture_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/foundation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/foundation_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/helpers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/printer_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/check.v1/run_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-init/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------