使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
ExternalMirrors
/
old-salt-formula
镜像自地址
https://github.com/saltstack-formulas/salt-formula
关注
1
点赞
0
派生
1
代码
工单
0
版本发布
68
百科
动态
Saltstack Official Salt Formula
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
209
提交
3
分支
目录树:
86c7b0a3e5
dependabot/bundler/activesupport-7.0.4.3
master
pre-commit-ci-update-config
v1.12.0
v1.11.0
v1.10.3
v1.10.2
v1.10.1
v1.10.0
v1.9.10
v1.9.9
v1.9.8
v1.9.7
v1.9.6
v1.9.5
v1.9.4
v1.9.3
v1.9.2
v1.9.1
v1.9.0
v1.8.5
v1.8.4
v1.8.3
v1.8.2
v1.8.1
v1.8.0
v1.7.5
v1.7.4
v1.7.3
v1.7.2
v1.7.1
v1.7.0
v1.6.0
v1.5.2
v1.5.1
v1.5.0
v1.4.6
v1.4.5
v1.4.4
v1.4.3
v1.4.2
v1.4.1
v1.4.0
v1.3.4
v1.3.3
v1.3.2
v1.3.1
v1.3.0
v1.2.0
v1.1.3
v1.1.2
v1.1.1
v1.1.0
v1.0.0
v0.59.9
v0.59.8
v0.59.7
v0.59.6
v0.59.5
v0.59.4
v0.59.3
v0.59.2
v0.59.1
v0.59.0
v0.58.4
v0.58.3
v0.58.2
v0.58.1
v0.58.0
v0.57.1
v0.57.0
分支列表
标签列表
${ item.name }
创建分支
${ searchTerm }
从 '86c7b0a3e5'
${ noResults }
old-salt-formula
/
salt
/
pkgrepo
/
init.sls
init.sls
92B
原始文件
普通视图
文件历史
don't try to load pkgrepo on non-Debian distros fixes #83 by wrapping contents of pkgrepo/init.sls in an {% if %}. Change-Id: I8260fdf5cf802c0b28197516da374add6c3002a2
10 年前
Add new “salt.pkgrepo” state This state enables the official saltstack package repository in order to always benefit from the latest version. This state currently only works on Debian and Ubuntu, and aims to implement the installation recommendations of the official documentation: http://docs.saltstack.com/en/latest/topics/installation/index.html
10 年前
don't try to load pkgrepo on non-Debian distros fixes #83 by wrapping contents of pkgrepo/init.sls in an {% if %}. Change-Id: I8260fdf5cf802c0b28197516da374add6c3002a2
10 年前
1
2
3
4
{% if grains['os_family'] == 'Debian' %}
include:
- .{{ grains['os']|lower }}
{% endif %}