|
31 | 31 | # @param backupcompress
|
32 | 32 | # Whether or not to compress the backup (when using the mysqldump provider)
|
33 | 33 | # @param backupmethod
|
34 |
| -# The execution binary for backing up. ex. mysqldump, xtrabackup, mariabackup |
| 34 | +# The execution binary for backing up. ex. mysqldump, xtrabackup, mariabackup |
| 35 | +# @param backup_success_file_path |
| 36 | +# Specify a path where upon successfull backup a file should be created for checking purposes. |
35 | 37 | # @param backuprotate
|
36 | 38 | # Backup rotation interval in 24 hour periods.
|
37 | 39 | # @param ignore_events
|
|
56 | 58 | # @param execpath
|
57 | 59 | # Allows you to set a custom PATH should your MySQL installation be non-standard places. Defaults to `/usr/bin:/usr/sbin:/bin:/sbin`.
|
58 | 60 | # @param provider
|
59 |
| -# Sets the server backup implementation. Valid values are: |
| 61 | +# Sets the server backup implementation. Valid values are: |
60 | 62 | # @param maxallowedpacket
|
61 | 63 | # Defines the maximum SQL statement size for the backup dump script. The default value is 1MB, as this is the default MySQL Server value.
|
62 | 64 | # @param optional_args
|
63 | 65 | # Specifies an array of optional arguments which should be passed through to the backup tool. (Supported by the xtrabackup and mysqldump providers.)
|
64 |
| -# |
65 | 66 | class mysql::server::backup (
|
66 |
| - $backupuser = undef, |
67 |
| - $backuppassword = undef, |
68 |
| - $backupdir = undef, |
69 |
| - $backupdirmode = '0700', |
70 |
| - $backupdirowner = 'root', |
71 |
| - $backupdirgroup = 'root', |
72 |
| - $backupcompress = true, |
73 |
| - $backuprotate = 30, |
74 |
| - $backupmethod = undef, |
75 |
| - $ignore_events = true, |
76 |
| - $delete_before_dump = false, |
77 |
| - $backupdatabases = [], |
78 |
| - $file_per_database = false, |
79 |
| - $include_routines = false, |
80 |
| - $include_triggers = false, |
81 |
| - $ensure = 'present', |
82 |
| - $time = ['23', '5'], |
83 |
| - $prescript = false, |
84 |
| - $postscript = false, |
85 |
| - $execpath = '/usr/bin:/usr/sbin:/bin:/sbin', |
86 |
| - $provider = 'mysqldump', |
87 |
| - $maxallowedpacket = '1M', |
88 |
| - $optional_args = [], |
| 67 | + $backupuser = undef, |
| 68 | + $backuppassword = undef, |
| 69 | + $backupdir = undef, |
| 70 | + $backupdirmode = '0700', |
| 71 | + $backupdirowner = 'root', |
| 72 | + $backupdirgroup = 'root', |
| 73 | + $backupcompress = true, |
| 74 | + $backuprotate = 30, |
| 75 | + $backupmethod = undef, |
| 76 | + $backup_success_file_path = '/tmp/mysqlbackup_success', |
| 77 | + $ignore_events = true, |
| 78 | + $delete_before_dump = false, |
| 79 | + $backupdatabases = [], |
| 80 | + $file_per_database = false, |
| 81 | + $include_routines = false, |
| 82 | + $include_triggers = false, |
| 83 | + $ensure = 'present', |
| 84 | + $time = ['23', '5'], |
| 85 | + $prescript = false, |
| 86 | + $postscript = false, |
| 87 | + $execpath = '/usr/bin:/usr/sbin:/bin:/sbin', |
| 88 | + $provider = 'mysqldump', |
| 89 | + $maxallowedpacket = '1M', |
| 90 | + $optional_args = [], |
89 | 91 | ) {
|
90 | 92 |
|
91 | 93 | if $prescript and $provider =~ /(mysqldump|mysqlbackup)/ {
|
|
95 | 97 |
|
96 | 98 | create_resources('class', {
|
97 | 99 | "mysql::backup::${provider}" => {
|
98 |
| - 'backupuser' => $backupuser, |
99 |
| - 'backuppassword' => $backuppassword, |
100 |
| - 'backupdir' => $backupdir, |
101 |
| - 'backupdirmode' => $backupdirmode, |
102 |
| - 'backupdirowner' => $backupdirowner, |
103 |
| - 'backupdirgroup' => $backupdirgroup, |
104 |
| - 'backupcompress' => $backupcompress, |
105 |
| - 'backuprotate' => $backuprotate, |
106 |
| - 'backupmethod' => $backupmethod, |
107 |
| - 'ignore_events' => $ignore_events, |
108 |
| - 'delete_before_dump' => $delete_before_dump, |
109 |
| - 'backupdatabases' => $backupdatabases, |
110 |
| - 'file_per_database' => $file_per_database, |
111 |
| - 'include_routines' => $include_routines, |
112 |
| - 'include_triggers' => $include_triggers, |
113 |
| - 'ensure' => $ensure, |
114 |
| - 'time' => $time, |
115 |
| - 'prescript' => $prescript, |
116 |
| - 'postscript' => $postscript, |
117 |
| - 'execpath' => $execpath, |
118 |
| - 'maxallowedpacket' => $maxallowedpacket, |
119 |
| - 'optional_args' => $optional_args, |
| 100 | + 'backupuser' => $backupuser, |
| 101 | + 'backuppassword' => $backuppassword, |
| 102 | + 'backupdir' => $backupdir, |
| 103 | + 'backupdirmode' => $backupdirmode, |
| 104 | + 'backupdirowner' => $backupdirowner, |
| 105 | + 'backupdirgroup' => $backupdirgroup, |
| 106 | + 'backupcompress' => $backupcompress, |
| 107 | + 'backuprotate' => $backuprotate, |
| 108 | + 'backupmethod' => $backupmethod, |
| 109 | + 'backup_success_file_path' => $backup_success_file_path, |
| 110 | + 'ignore_events' => $ignore_events, |
| 111 | + 'delete_before_dump' => $delete_before_dump, |
| 112 | + 'backupdatabases' => $backupdatabases, |
| 113 | + 'file_per_database' => $file_per_database, |
| 114 | + 'include_routines' => $include_routines, |
| 115 | + 'include_triggers' => $include_triggers, |
| 116 | + 'ensure' => $ensure, |
| 117 | + 'time' => $time, |
| 118 | + 'prescript' => $prescript, |
| 119 | + 'postscript' => $postscript, |
| 120 | + 'execpath' => $execpath, |
| 121 | + 'maxallowedpacket' => $maxallowedpacket, |
| 122 | + 'optional_args' => $optional_args, |
120 | 123 | }
|
121 | 124 | })
|
122 |
| - |
123 | 125 | }
|
0 commit comments