10 lines
243 B
Bash
10 lines
243 B
Bash
#!/bin/bash
|
|
|
|
# set profile things
|
|
echo 'export PATH=$PATH:/root/.local/bin' >> /root/.profile
|
|
echo 'export HOMEFOLDER=/software' >> /root/.profile
|
|
source ~/.profile
|
|
|
|
# dont shutdown
|
|
while true; do /software/plextraktsync.sh; sleep 86400; done
|