Add scripts from helios

This commit is contained in:
Tobias Strobel 2021-08-12 17:53:34 +02:00
parent f0e8c19397
commit 041861f7b4
4 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#!/bin/bash
find /mnt/storage/backuphdd -type f -print0 | xargs -0 chmod 0640
find /mnt/storage/backuphdd -type d -print0 | xargs -0 chmod 0750
chown -R root:root /mnt/storage/backuphdd
exit 0