mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 21:45:00 +03:00
21 lines
450 B
Bash
21 lines
450 B
Bash
#!/bin/bash
|
||
|
||
# 参考:https://programwiz.org/2022/03/22/how-to-write-shell-script-for-option-parsing/
|
||
|
||
set -eu
|
||
|
||
# 実行ユーザ作成
|
||
USER_ID=${LOCAL_UID:-9001}
|
||
GROUP_ID=${LOCAL_GID:-9001}
|
||
|
||
echo ""
|
||
echo "アプリケーション開始... (内部ユーザー [UID : $USER_ID, GID: $GROUP_ID])"
|
||
useradd -u $USER_ID -o -m user
|
||
groupmod -g $GROUP_ID user
|
||
|
||
#su user
|
||
# echo "parameter: $@"
|
||
exec /usr/sbin/gosu user /bin/bash exec.sh "$@"
|
||
#/bin/bash
|
||
|