registry/scripts/jumpserver_deploy.sh
U-DESKTOP-Q82J13B\wxz 01bc3762b2 wxz-zgc-pc (#86)
Reviewed-on: #86
Reviewed-by: ryanyu <ryy23@mails.tsinghua.edu.cn>
Co-authored-by: U-DESKTOP-Q82J13B\wxz <wang-xz22@mails.tsinghua.edu.cn>
Co-committed-by: U-DESKTOP-Q82J13B\wxz <wang-xz22@mails.tsinghua.edu.cn>
2024-10-10 09:47:43 +08:00

26 lines
577 B
Bash
Executable File

#!/bin/bash
set -ex
THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" && pwd )
adduser \
--disabled-password \
--home /home/ssh \
--gecos "jumpserver user ssh" \
ssh
usermod -p '*' ssh
insert_if_not_exist()
{
filename=$1
line=$2
if [ ! -f "$filename" ]; then
touch $filename
fi
grep -qxF -- "$line" "$filename" || echo "$line" >> "$filename"
}
insert_if_not_exist "/etc/crontabs/root" "*/5 * * * * cd \"$THIS_DIR\" && git pull && \"$THIS_DIR\"/jumpserver_cron.sh"
"$THIS_DIR"/jumpserver_cron.sh