8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
usermod -u $UID velocity
|
|
groupmod -g $GID velocity
|
|
chown -R velocity:velocity /velocity
|
|
|
|
exec sudo -E -u velocity configure_and_start "$@"
|