mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
20 lines
413 B
Bash
20 lines
413 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 "exec with [UID : $USER_ID, GID: $GROUP_ID]"
|
|
useradd -u $USER_ID -o -m user
|
|
groupmod -g $GROUP_ID user
|
|
chmod uog+rwx tmp_dir
|
|
|
|
#su user
|
|
#echo "parameter: $@"
|
|
exec /usr/sbin/gosu user /bin/bash exec.sh "$@"
|
|
#/bin/bash
|
|
|