Пожалуйста, включите JavaScript.
Главная
Обзор
Помощь
Регистрация
Вход
ExternalMirrors
/
old-salt-formula
зеркало из
https://github.com/saltstack-formulas/salt-formula
Следить
1
В избранное
0
Форкнуть
1
Код
Задачи
0
Релизы
69
Вики
Активность
Saltstack Official Salt Formula
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
198
коммитов
3
Ветки
Дерево:
cde11bc1e8
dependabot/bundler/activesupport-7.0.4.3
master
pre-commit-ci-update-config
v1.13.0
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 }
из 'cde11bc1e8'
${ noResults }
old-salt-formula
/
salt
/
pkgrepo
/
init.sls
init.sls
92B
Исходник
Normal View
История
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 %}