10 lines
239 B
Plaintext
10 lines
239 B
Plaintext
|
#!/bin/bash
|
||
|
### Yggdrasil -- File list only for space reasons ###
|
||
|
if [ -x /usr/bin/locate ]; then
|
||
|
locate /srv/yggdrasil > "$BACKUPDIR"/yggdrasil-file-list.txt
|
||
|
else
|
||
|
find /srv/yggdrasil/ > "$BACKUPDIR"/yggdrasil_file_list.txt
|
||
|
fi
|
||
|
|
||
|
|