From 248506432e65fd6398d23644ca791a586ae701b2 Mon Sep 17 00:00:00 2001 From: mikpe74 <mika.perala@liu.se> Date: Tue, 15 Nov 2016 15:29:11 +0100 Subject: [PATCH] MySQL backup enabled --- manifests/init.pp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 3632855..78afe9b 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -45,7 +45,7 @@ class skadereg( - $mysql_password + $mysql_password, $mysql_backup_password ){ ::users::liu_user { 'andal699': commonname => 'Andreas Alvarsson', @@ -160,4 +160,16 @@ class skadereg( } } } + + class { '::mysql::server::backup': + backupuser => 'backupuser', + backuppassword => $mysql_backup_password, + backupdir => '/root/mysql_backups', + backupdirmode => '700', + backupdirowner => 'root', + backupdirgroup => 'root', + backuprotate => '7', + time => ['1','0'], + } + } -- GitLab