This website works better with JavaScript.
首頁
探索
說明
註冊
登入
ExternalMirrors
/
apache-formula
镜像来自
https://github.com/saltstack-formulas/apache-formula.git
關註
1
收藏
0
複製
1
程式碼
問題管理
0
版本發佈
31
Wiki
Activity
瀏覽代碼
Added basic formula to install Apache
tags/v0.37.4
Seth House
11 年之前
父節點
0e86fb8c9d
當前提交
053c3443d7
共有
1 個文件被更改
,包括
13 次插入
和
0 次删除
分割檢視
顯示文件統計
+13
-0
apache/init.sls
+ 13
- 0
apache/init.sls
查看文件
@@ -0,0 +1,13 @@
{% set pkg = salt['grains.filter_by']({
'Debian': {'name': 'apache2'},
'RedHat': {'name': 'httpd'},
}) %}
apache:
pkg:
- installed
- name: {{ pkg.name }}
service:
- running
- name: {{ pkg.name }}
- enable: True
Write
Preview
Loading…
取消
儲存