Add start.sh for lbrynet
This commit is contained in:
parent
68824f95e7
commit
adebf46603
1 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,17 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
## Scope: This start.sh script will asssert container filesystem permissions and
|
||||||
|
## then execute the desired run mode for lbrynet with reduced permissions.
|
||||||
|
## The other thing this should do is simply create, configure or simply establish
|
||||||
|
## a fresh config with envvars passed to the container.
|
||||||
|
|
||||||
## TODO: Start work on start.sh configuration and other magic assertions of file permissions etc...
|
## Ensure perms are correct prior to running main binary
|
||||||
|
mkdir -p /lbrynet
|
||||||
|
chown -R lbrynet:lbrynet /lbrynet
|
||||||
|
chmod -R 755 /lbrynet
|
||||||
|
|
||||||
|
## TODO: Consider a config directory for future magic.
|
||||||
|
# chown -R 1000:1000 /etc/lbrynet
|
||||||
|
# chmod -R 755 /etc/lbrynet
|
||||||
|
# rm -f /var/run/lbrynet.pid
|
||||||
|
|
||||||
|
su -c "lbrynet start" lbrynet
|
Loading…
Reference in a new issue