Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
* added tmp directory for php
* fix process of updating RISH
  • Loading branch information
progreccor committed Sep 11, 2024
1 parent f7f6678 commit 3c660ff
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions ri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,23 @@ OpenFirewall() {
Up
fi
}
process_ssh_config_file() {
local config_file=$1

# Резервное копирование файла конфигурации
cp "$config_file" "${config_file}.bak"

# Удаление всех строк с PasswordAuthentication
sed -i '/^#\?PasswordAuthentication/d' "$config_file"

# Добавление строки с отключением аутентификации по паролю перед первым блоком Match
awk '/^Match/ && !done {print "PasswordAuthentication no"; done=1} 1' "$config_file" >"${config_file}.tmp" && mv "${config_file}.tmp" "$config_file"

# Если строка PasswordAuthentication no не была добавлена, добавить её в конец файла
if ! grep -q "^PasswordAuthentication no" "$config_file"; then
echo "PasswordAuthentication no" >>"$config_file"
fi
}
# shellcheck disable=SC2120
CreateUser() {
local NAME
Expand Down Expand Up @@ -1064,25 +1080,6 @@ EOF
mark_step_completed "$STEP"
fi


process_ssh_config_file() {
local config_file=$1

# Резервное копирование файла конфигурации
cp "$config_file" "${config_file}.bak"

# Удаление всех строк с PasswordAuthentication
sed -i '/^#\?PasswordAuthentication/d' "$config_file"

# Добавление строки с отключением аутентификации по паролю перед первым блоком Match
awk '/^Match/ && !done {print "PasswordAuthentication no"; done=1} 1' "$config_file" >"${config_file}.tmp" && mv "${config_file}.tmp" "$config_file"

# Если строка PasswordAuthentication no не была добавлена, добавить её в конец файла
if ! grep -q "^PasswordAuthentication no" "$config_file"; then
echo "PasswordAuthentication no" >>"$config_file"
fi
}

STEP="Отключение авторизации по паролю для SSH."
if ! check_step "$STEP"; then
echo
Expand Down

0 comments on commit 3c660ff

Please sign in to comment.