mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-04 05:15:42 -04:00
17 lines
311 B
Plaintext
Executable File
17 lines
311 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
||
# shellcheck shell=bash
|
||
|
||
# permissions
|
||
aetherxown -R dockerx:dockerx \
|
||
/config/keys \
|
||
/config/log \
|
||
|
||
aetherxown dockerx:dockerx \
|
||
/config/www
|
||
|
||
chmod -R 644 /etc/logrotate.d
|
||
|
||
if [[ -f "/config/log/logrotate.status" ]]; then
|
||
chmod 600 /config/log/logrotate.status
|
||
fi
|