12 lines
196 B
Bash
Executable File
12 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(readlink -f $(dirname "${BASH_SOURCE[0]}"))
|
|
|
|
$SCRIPT_DIR/restic_command.sh forget --prune \
|
|
--keep-last 5 \
|
|
--keep-weekly 8 \
|
|
--keep-monthly 12 \
|
|
--keep-yearly 7
|