mirror of https://github.com/jimsalterjrs/sanoid
7 lines
288 B
Bash
Executable File
7 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# remove old cache file
|
|
[ -f /var/cache/sanoidsnapshots.txt ] && rm /var/cache/sanoidsnapshots.txt || true
|
|
[ -f /var/cache/sanoid/snapshots.txt ] && rm /var/cache/sanoid/snapshots.txt || true
|
|
[ -f /var/cache/sanoid/datasets.txt ] && rm /var/cache/sanoid/datasets.txt || true
|