PortValhalla/scripts/Common/OS/users.fish

38 lines
1 KiB
Fish
Raw Normal View History

2024-07-19 22:46:02 +00:00
#!/bin/env fish
set -l dir (status dirname)
source "$dir/../Scripts/config.fish"
set -l users (getUsers)
2024-07-19 22:46:02 +00:00
for name in (echo "$users" | jq '.[]' --raw-output0 | string split0)
2024-09-12 19:47:50 +00:00
function getUserConfig -V name -a config
2024-09-12 19:48:05 +00:00
getConfig "valhalla.linux.users.$name.$config" $argv[2..]
2024-07-19 22:46:02 +00:00
end
2024-09-12 19:47:50 +00:00
set -l groups (getUserConfig groups --apply 'builtins.concatStringsSep ","');
2024-07-19 22:46:02 +00:00
set -l displayName (getUserConfig displayName --json)
set -l shell (getUserConfig displayName --json)
2024-07-19 22:46:02 +00:00
2024-07-19 22:59:11 +00:00
sudo useradd --create-home (
2024-07-19 22:46:02 +00:00
if [ displayName != "null" ]
echo "--comment"
echo "$displayName" | jq --raw-output
end
2024-09-12 19:47:50 +00:00
) (
if [ -n "$groups" ]
echo "--groups"
echo "$groups"
end
) "$name"
2024-07-19 22:46:02 +00:00
if echo "$shell" | jq --exit-status > /dev/null
sudo chsh "$name" --shell "$shell"
end
2024-07-19 23:03:20 +00:00
echo "Please Choose a New Password for User `$name`"
2024-07-19 22:46:02 +00:00
2024-07-19 22:59:11 +00:00
while ! sudo passwd "$name"
2024-07-19 22:46:02 +00:00
echo "An error occurred! Please try again."
end
end