写点什么

ansible 安装 httpd

作者:ghostwritten
  • 2022 年 5 月 10 日
  • 本文字数:330 字

    阅读完需:约 1 分钟

ansible 安装 httpd

httpd.yaml


- hosts: webservers  vars:    http_port: 80    max_clients: 200  remote_user: root  tasks:  - name: ensure apache is at the latest version    yum: pkg=httpd state=latest  - name: write the apache config file    template: src=/srv/httpd.j2 dest=/etc/httpd.conf    notify:    - restart apache  - name: ensure apache is running    service: name=httpd state=started  - name: ensure apache is running enable    service: name=httpd state=started enabled=yes  handlers:    - name: restart apache      service: name=httpd state=restarted
复制代码


发布于: 刚刚阅读数: 3
用户头像

ghostwritten

关注

还未添加个人签名 2018.11.14 加入

还未添加个人简介

评论

发布
暂无评论
ansible 安装 httpd_ansible_ghostwritten_InfoQ写作社区