├── .final_builds ├── jobs │ └── xip │ │ └── index.yml ├── license │ └── index.yml └── packages │ └── pdns-3.4.6 │ └── index.yml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── blobs.yml └── final.yml ├── examples └── xip-bosh-init-aws.yml ├── jobs └── xip │ ├── monit │ ├── spec │ └── templates │ ├── ctl.sh │ ├── named.conf.erb │ ├── pdns.conf.erb │ ├── xip-pdns.conf.erb │ └── xip-pdns.sh ├── packages └── pdns-3.4.6 │ ├── packaging │ ├── pre_packaging │ └── spec ├── releases └── xip │ ├── index.yml │ ├── xip-1.yml │ └── xip-2.yml └── src └── pdns-3.4.6 └── .gitkeep /.final_builds/jobs/xip/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/.final_builds/jobs/xip/index.yml -------------------------------------------------------------------------------- /.final_builds/license/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/.final_builds/license/index.yml -------------------------------------------------------------------------------- /.final_builds/packages/pdns-3.4.6/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/.final_builds/packages/pdns-3.4.6/index.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/README.md -------------------------------------------------------------------------------- /config/blobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/config/blobs.yml -------------------------------------------------------------------------------- /config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/config/final.yml -------------------------------------------------------------------------------- /examples/xip-bosh-init-aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/examples/xip-bosh-init-aws.yml -------------------------------------------------------------------------------- /jobs/xip/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/jobs/xip/monit -------------------------------------------------------------------------------- /jobs/xip/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/jobs/xip/spec -------------------------------------------------------------------------------- /jobs/xip/templates/ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/jobs/xip/templates/ctl.sh -------------------------------------------------------------------------------- /jobs/xip/templates/named.conf.erb: -------------------------------------------------------------------------------- 1 | <%= p('xip.named_conf') %> 2 | -------------------------------------------------------------------------------- /jobs/xip/templates/pdns.conf.erb: -------------------------------------------------------------------------------- 1 | <%= p('xip.pdns_conf') %> 2 | -------------------------------------------------------------------------------- /jobs/xip/templates/xip-pdns.conf.erb: -------------------------------------------------------------------------------- 1 | <%= p('xip.xip_pdns_conf') %> 2 | -------------------------------------------------------------------------------- /jobs/xip/templates/xip-pdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/jobs/xip/templates/xip-pdns.sh -------------------------------------------------------------------------------- /packages/pdns-3.4.6/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/packages/pdns-3.4.6/packaging -------------------------------------------------------------------------------- /packages/pdns-3.4.6/pre_packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/packages/pdns-3.4.6/pre_packaging -------------------------------------------------------------------------------- /packages/pdns-3.4.6/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/packages/pdns-3.4.6/spec -------------------------------------------------------------------------------- /releases/xip/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/releases/xip/index.yml -------------------------------------------------------------------------------- /releases/xip/xip-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/releases/xip/xip-1.yml -------------------------------------------------------------------------------- /releases/xip/xip-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/xip-release/HEAD/releases/xip/xip-2.yml -------------------------------------------------------------------------------- /src/pdns-3.4.6/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------