8 lines
191 B
Plaintext
8 lines
191 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Delete all older backups of ucf files
|
||
|
# The current files are /var/lib/ucf/hashfile and /var/lib/ucf/registry
|
||
|
rm -f /var/lib/ucf/hashfile.*
|
||
|
rm -f /var/lib/ucf/registry.*
|