forked from snxraven/autoinstallers
27 lines
441 B
Plaintext
27 lines
441 B
Plaintext
|
#!/bin/sh
|
||
|
export CID=$(basename $(cat /proc/1/cpuset))
|
||
|
service ssh start
|
||
|
sh /var/tools/getsystemctl.sh
|
||
|
|
||
|
#DISCORD-LINUX AUTOINSTALLER
|
||
|
#DONOTREMOVE
|
||
|
#webmin
|
||
|
#osjs
|
||
|
#wp
|
||
|
#ENDDONOTREMOVE
|
||
|
|
||
|
#ADD ANY SERVICES YOU NEED TO BOOT ON START UP BELOW
|
||
|
#DO NOT ADD ANY LINES BELOW THE TAIL -F /DEV/NULL
|
||
|
#DOING SO WILL BREAK YOUR CONTAINER.
|
||
|
|
||
|
#CUSTOM SERVICES START
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#CUSTOM SERVICES END
|
||
|
|
||
|
#DONOTREMOVEEVER
|
||
|
tail -f /dev/null
|
||
|
#DONOTPUTANYTHINGBELOWTHISLINEEVER
|