-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UID/GIDを指定できるようにしてほしい #37
Comments
TODO: |
こうなるので先にグループを作る必要がありそう?
|
GIDがUIDと同じで良ければ出来そう
|
既にgroupがあれば通る
|
|
if ! grep "^[^:]*:x:gid:$" /etc/group >/dev/null; then
groupadd -g gid username
fi
useradd -m -s /bin/bash -p "" -u uid -g gid username |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
複数ノードを使う場合に合わせたいことがあるので、例えば
create NodeA 1006 1006
とかするとUID=1006, GID=1006で作られるあたりだけでもあるとありがたいです。
The text was updated successfully, but these errors were encountered: