saltstack安装httpd并更新文件

  • 介绍
    有时我们需要安装软件同时同步配置文件,或者我们只需要更新配置文件。

  • 主配置文件

# salt '*' state.sls xes.elk.test
include:
  - xes.elk.httpd-install

# 同步httpd的配置文件
/etc/httpd/conf/httpd.conf:
  file.managed:
    - source: salt://xes/elk/files/httpd.conf
    - user: root
    - group: root
    - mode: 644
    - require:# 需要include中文件的apache-install生效才执行这个同步文件的步骤
      - pkg: apache-install

/var/www/html/index.html:
  file.managed:
    - source: salt://xes/elk/files/index.html
    - user: root
    - group: root
    - mode: 644
    - require:
      - pkg: apache-install

# httpd服务状态控制
httpd:
  service.running:
    - enable: True# 开机启动
    - watch:# 同时监听下面两个文件,有变化就重新启动httpd
      - file: /etc/httpd/conf/httpd.conf
      - file: /var/www/html/index.html
  • include文件
    • 安装apache
apache-install:
  pkg.installed:
    - pkgs:
      - httpd
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值