mirror of
https://github.com/kubesphere/kubekey.git
synced 2026-01-01 00:59:24 +00:00
12 lines
351 B
Bash
12 lines
351 B
Bash
#!/bin/sh
|
|
set -x
|
|
|
|
# ensure $HOME exists and is accessible by group 0 (we don't know what the runtime UID will be)
|
|
echo "${USER_NAME}:x:${USER_UID}:0:${USER_NAME} user:${HOME}:/sbin/nologin" >> /etc/passwd
|
|
mkdir -p "${HOME}"
|
|
chown "${USER_UID}:0" "${HOME}"
|
|
chmod ug+rwx "${HOME}"
|
|
|
|
# no need for this script to remain in the image after running
|
|
rm "$0"
|