summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-02-23 00:05:43 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-28 12:59:31 +0100
commita8a48a275a136912e54fe6f2d26d68ea8d85a89d (patch)
tree8a0d8e27f5b80393a1b549337a3648ec53df5e3e
parentPuppetdb allow insecure connections. (diff)
downloadprofiles-a8a48a275a136912e54fe6f2d26d68ea8d85a89d.tar.gz
profiles-a8a48a275a136912e54fe6f2d26d68ea8d85a89d.tar.xz
profile puppetdb remove periodic db_dump.
-rw-r--r--manifests/puppetdb.pp13
1 files changed, 0 insertions, 13 deletions
diff --git a/manifests/puppetdb.pp b/manifests/puppetdb.pp
index 9d66834..1bb51b9 100644
--- a/manifests/puppetdb.pp
+++ b/manifests/puppetdb.pp
@@ -18,17 +18,4 @@ class profiles::puppetdb {
# profiles::puppetserver is also pulled in.
create_puppet_service_resource => false,
}
-
- file { '/var/tmp/pg_dump':
- ensure => directory,
- owner => 'postgres',
- }
-
- cron { 'dump database':
- ensure => present,
- command => 'pg_dump puppetdb > /var/tmp/pg_dump/puppetdb-$(date -u -Iseconds).sql',
- user => 'postgres',
- hour => '*',
- minute => '30',
- }
}