]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blobdiff - modules/profile/manifests/postgresql/backup_dump.pp
Pause replication before the postgresql backup
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / postgresql / backup_dump.pp
index 7578027513f0be18d5c452a8eb0aaf4afae44ca4..cae20f748180833d4fe4065ebcfe43472516a9a4 100644 (file)
@@ -30,13 +30,18 @@ define profile::postgresql::backup_dump (
     $pg_port_arg = ""
   }
 
+  file { "/usr/local/sbin/backup_psql_$pg_host.sh":
+    mode    => "0755",
+    content => template("profile/postgresql/backup_psql.sh.erb"),
+  }
+
   if ($pg_host == "eldiron.immae.eu") {
     cron::job::multiple { "backup_psql_$pg_host":
       ensure  => "present",
       require => [File[$pg_backup_path], File[$pg_path]],
       jobs    => [
         {
-          command     => "/usr/bin/pg_dumpall -h $pg_path$pg_port_arg -f $pg_backup_path/\$(date -Iseconds).sql",
+          command     => "/usr/local/sbin/backup_psql_$pg_host.sh",
           user        => $pg_user,
           hour        => "22,4,10,16",
           minute      => 0,
@@ -57,7 +62,7 @@ define profile::postgresql::backup_dump (
       require => [File[$pg_backup_path], File[$pg_path]],
       jobs    => [
         {
-          command     => "/usr/bin/pg_dumpall -h $pg_path$pg_port_arg -f $pg_backup_path/\$(date -Iseconds).sql",
+          command     => "/usr/local/sbin/backup_psql_$pg_host.sh",
           user        => $pg_user,
           hour        => "22,4,10,16",
           minute      => 0,