We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 802ee6b commit 5e3ae28Copy full SHA for 5e3ae28
source/puppet/latest/types/file.md
@@ -185,9 +185,10 @@ masters.
185
- Use a `find` command and `crontab` entry to retain only the last X days
186
of file backups. For example,
187
188
- ```shell script
189
- find /opt/puppetlabs/server/data/puppetserver/bucket -type f -mtime +45 -atime +45 -print0 | xargs -0 rm
190
- ```
+ ```shell script
+ find /opt/puppetlabs/server/data/puppetserver/bucket -type f -mtime +45 -atime +45
+ -print0 | xargs -0 rm
191
+ ```
192
193
- Restrict the directory to a maximum size after which the oldest items are removed.
194
0 commit comments