53 lines
1.6 KiB
Bash
53 lines
1.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# 2014-2020 ungleich GmbH (cdist at ungleich.ch)
|
|
# 2017-2020 ungleich glarus ag (cdist at ungleich.ch)
|
|
#
|
|
# This file is part of cdist.
|
|
#
|
|
# cdist is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# cdist is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
|
|
user="$__object_id"
|
|
state=$(cat "$__object/parameter/state")
|
|
|
|
|
|
################################################################################
|
|
# not at ungleich (anymore)
|
|
#
|
|
set --
|
|
for key in dave henk tobias carlos moep kamila kamila-phone \
|
|
youngjin balazs; do
|
|
keyfile="$__type/files/${key}.pub"
|
|
set -- "$@" --key
|
|
set -- "$@" "$(echo $(cat "$keyfile"))"
|
|
done
|
|
|
|
__ssh_authorized_keys "ungleich-staff-absent-$user" \
|
|
--owner "$user" --state absent "$@"
|
|
|
|
################################################################################
|
|
# currently at ungleich
|
|
#
|
|
set --
|
|
for key in jinguk nico dominique poljakowski timothee; do
|
|
keyfile="$__type/files/${key}.pub"
|
|
|
|
set -- "$@" --key
|
|
set -- "$@" "$(echo $(cat "$keyfile"))"
|
|
done
|
|
|
|
__ssh_authorized_keys "ungleich-staff-$user" \
|
|
--owner "$user" --state "$state" "$@"
|