| | 175 | == Add !RemoteFile Pool == |
| | 176 | We want to add an additional Pool to our Bacula Director configuration, which we’ll use to configure our remote backup jobs. |
| | 177 | {{{ |
| | 178 | sudo vi /etc/bacula/bacula-dir.conf |
| | 179 | }}} |
| | 180 | Add the following Pool resource: |
| | 181 | {{{ |
| | 182 | Pool { |
| | 183 | Name = RemoteFile |
| | 184 | Pool Type = Backup |
| | 185 | Label Format = Remote- |
| | 186 | Recycle = yes # Bacula can automatically recycle Volumes |
| | 187 | AutoPrune = yes # Prune expired volumes |
| | 188 | Volume Retention = 365 days # one year |
| | 189 | Maximum Volume Bytes = 50G # Limit Volume size to something reasonable |
| | 190 | Maximum Volumes = 100 # Limit number of Volumes in Pool |
| | 191 | } |
| | 192 | }}} |
| | 193 | Save and exit. This defines a “!RemoteFile” pool, which we will use by the backup job that we’ll create later. Feel free to change any of the parameters to meet your own needs. |