Add a restic-forget command

This commit is contained in:
Andreas Zweili 2022-08-23 20:13:21 +02:00
parent 2f9af9636c
commit 601c458703
1 changed files with 5 additions and 0 deletions

View File

@ -71,5 +71,10 @@ in
--password-file ${password_file} \
mount /tmp/restic
'';
restic-forget = ''
restic \
--repo ${repository} \
--password-file ${password_file} \
forget $1'';
};
}