gpt4 book ai didi

unix - Ansible更新sshd配置文件

转载 作者:行者123 更新时间:2023-12-02 14:59:45 24 4
gpt4 key购买 nike

我正在编写一个 Ansible play 以在 100 多个 Unix 服务器中自动创建新用户。我在创建用户和分配密码的地方找到了正确的部分。但是我们的组织强化策略要求,无论何时添加新用户,都必须在 sshd_config 文件的“AllowUsers”参数中更新用户名。我是 Ansible 的新手,不知道如何完成这项工作。

这是 sshd_config 文件的“AllowUsers”部分。

AllowUsers root user1 user2 user2

这是添加新用户“testuser”后的样子

AllowUsers root user1 user2 testuser

最佳答案

如果用户已经在列表中,我会搜索不执行任何操作的解决方案。这就是它在 Ansible 中的工作方式。我的解决方案首先搜索用户,只有当用户不在列表中时才会添加。

tasks:
- name: Check if bamboo user already is in SSHD AllowUsers list
command: grep -P '^[ \t]*AllowUsers[ \t]+([-\w ]+[ \t]+)*bamboo([ \t]+.+)*$' /etc/ssh/sshd_config
register: allow_users_exists
changed_when: no
ignore_errors: yes

- name: Allow bamboo user SSH login
lineinfile:
regexp: ^[ \t]*AllowUsers([ \t]+.*)$
line: AllowUsers bamboo\1
dest: /etc/ssh/sshd_config
backrefs: yes
validate: sshd -t -f %s
when: allow_users_exists.rc != 0
notify:
- reload sshd

handlers:
- name: reload sshd
service:
name: sshd
state: reloaded

在这种特殊情况下,我正在搜索静态用户“bamboo”。您可以像这样使用变量:

command: grep -P '^[ \t]*AllowUsers[ \t]+([-\w ]+[ \t]+)*{{ username | regex_escape() }}([ \t]+.+)*$' /etc/ssh/sshd_config

line: AllowUsers {{ username }}\1

结果

在:

AllowUsers ubuntu #sdfd

输出:

AllowUsers bamboo ubuntu #sdfd

在:

AllowUsers ubuntu

输出:

AllowUsers bamboo ubuntu

在:

AllowUsers ubuntu bamboo

输出:

AllowUsers ubuntu bamboo

关于unix - Ansible更新sshd配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50638944/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com