10 lines
141 B
Bash
Executable File
10 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run everything in start.d
|
|
find /start.d -type f -executable -exec {} \;
|
|
|
|
chown nexus /data
|
|
|
|
# start services
|
|
exec supervisord
|