8 lines
232 B
Bash
8 lines
232 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# to be run as root to setup/start/sclang
|
||
|
#runuser -l foam -c 'screen -S test -m -d /home/foam/ephemeral-garden/setup.sh'
|
||
|
|
||
|
# to be run from user 'foam' crontab
|
||
|
screen -S test -m -d /home/foam/ephemeral-garden/setup.sh
|