File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed
source/puppet/latest/types Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -178,19 +178,20 @@ balancer to direct all filebucket traffic to a single master, or use
178178something like an out-of-band rsync task to synchronize the content on all
179179masters.
180180
181- > ** Note** : Enabling and using the backup option, and by extension the
182- filebucket resource, requires appropriate planning and management to ensure
183- that sufficient disk space is available for the file backups. Generally, you
184- can implement this using one of the following two options:
185- - Use a ` find ` command and ` crontab ` entry to retain only the last X days
186- of file backups. For example:
187-
188- ```
189- find /opt/puppetlabs/server/data/puppetserver/bucket -type f -mtime +45 -atime +45
190- -print0 | xargs -0 rm
191- ```
192-
193- - Restrict the directory to a maximum size after which the oldest items are removed.
181+ Enabling and using the backup option, and by extension the
182+ filebucket resource, requires appropriate planning and management to ensure
183+ that sufficient disk space is available for the file backups. Generally, you
184+ can implement this using one of the following two options:
185+
186+ - Restrict the directory to a maximum size after which the oldest items are removed.
187+ - Use a ` find ` command and ` crontab ` entry to retain only the last X days
188+ of file backups. For example:
189+
190+ ```
191+ find /opt/puppetlabs/server/data/puppetserver/bucket -type f -mtime +45 -atime +45
192+ -print0 | xargs -0 rm
193+ ```
194+
194195
195196Default: ` puppet `
196197
You can’t perform that action at this time.
0 commit comments