mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-14 00:38:42 +00:00
10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
USERNAME="r2"
|
|
|
|
echo "Cutter: Starting with UID:GID $LOCAL_USER_ID:$LOCAL_GROUP_ID"
|
|
usermod -u $LOCAL_USER_ID $USERNAME
|
|
usermod -g $LOCAL_GROUP_ID $USERNAME
|
|
export HOME=/home/$USERNAME
|
|
|
|
exec su-exec $USERNAME "/opt/cutter/build/Cutter" $@
|