10 lines
239 B
Bash
10 lines
239 B
Bash
#!/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
|
|
|
|
|