├── .fixtures.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples ├── init.pp └── server.pp ├── lib └── facter │ └── barman_key.rb ├── manifests ├── archive_command.pp ├── autoconfigure.pp ├── init.pp ├── postgres.pp ├── server.pp └── settings.pp ├── metadata.json ├── spec ├── classes │ └── barman_spec.rb ├── defines │ └── server_spec.rb └── spec_helper.rb └── templates ├── barman.conf.erb ├── logrotate.conf.erb └── server.conf.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/init.pp: -------------------------------------------------------------------------------- 1 | include barman 2 | -------------------------------------------------------------------------------- /examples/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/examples/server.pp -------------------------------------------------------------------------------- /lib/facter/barman_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/lib/facter/barman_key.rb -------------------------------------------------------------------------------- /manifests/archive_command.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/archive_command.pp -------------------------------------------------------------------------------- /manifests/autoconfigure.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/autoconfigure.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/postgres.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/postgres.pp -------------------------------------------------------------------------------- /manifests/server.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/server.pp -------------------------------------------------------------------------------- /manifests/settings.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/manifests/settings.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/classes/barman_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/spec/classes/barman_spec.rb -------------------------------------------------------------------------------- /spec/defines/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/spec/defines/server_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/barman.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/templates/barman.conf.erb -------------------------------------------------------------------------------- /templates/logrotate.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/templates/logrotate.conf.erb -------------------------------------------------------------------------------- /templates/server.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndquadrant-it/puppet-barman/HEAD/templates/server.conf.erb --------------------------------------------------------------------------------