Add tmp and redundancy directories to prune script
This commit is contained in:
parent
d22b9b3e20
commit
3ba862daec
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,8 @@ async function run () {
|
||||||
|
|
||||||
const storageOnlyOwnedToPrune = [
|
const storageOnlyOwnedToPrune = [
|
||||||
CONFIG.STORAGE.VIDEOS_DIR,
|
CONFIG.STORAGE.VIDEOS_DIR,
|
||||||
CONFIG.STORAGE.TORRENTS_DIR
|
CONFIG.STORAGE.TORRENTS_DIR,
|
||||||
|
CONFIG.STORAGE.REDUNDANCY_DIR
|
||||||
]
|
]
|
||||||
|
|
||||||
const storageForAllToPrune = [
|
const storageForAllToPrune = [
|
||||||
|
@ -36,6 +37,8 @@ async function run () {
|
||||||
toDelete = toDelete.concat(await pruneDirectory(directory, false))
|
toDelete = toDelete.concat(await pruneDirectory(directory, false))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toDelete = toDelete.concat(await readdir(CONFIG.STORAGE.TMP_DIR))
|
||||||
|
|
||||||
if (toDelete.length === 0) {
|
if (toDelete.length === 0) {
|
||||||
console.log('No files to delete.')
|
console.log('No files to delete.')
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue