码迷,mamicode.com
首页 > 其他好文 > 详细

ansible批量修改sshd_config

时间:2017-09-19 11:43:26      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ansible sshd_config

---
- hosts: all
  gather_facts: true
  remote_user: root
  tasks:
  - name: "修改ssh配置文件的安全选项"
    lineinfile:
      path: /etc/ssh/sshd_config
      regexp: ‘{{ item.regexp }}‘
      line: ‘{{ item.line }}‘
      state: present
    with_items:
      - regexp: "^PasswordAuthentication"
        line: "PasswordAuthentication no"
      - regexp: "^#PermitRootLogin yes"
        line: "PermitRootLogin no"
      - regexp: "^#Port 22"
        line: "Port 2249"
      - regexp: "^GSSAPIAuthentication yes"
        line: "GSSAPIAuthentication no"
    notify:
      - restart sshd
  handlers:
    - name: restart sshd
      service:
        name: sshd
        state: restarted


本文出自 “激情燃烧的岁月” 博客,请务必保留此出处http://liuzhengwei521.blog.51cto.com/4855442/1966503

ansible批量修改sshd_config

标签:ansible sshd_config

原文地址:http://liuzhengwei521.blog.51cto.com/4855442/1966503

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!