Parcourir la source

refactor(linux): align to template-formula (plus fixes)

tags/v0.58.3
N il y a 5 ans
Parent
révision
71b4d8abb8
Aucun compte lié à l'adresse e-mail de l'auteur
16 fichiers modifiés avec 83 ajouts et 52 suppressions
  1. +3
    -4
      docs/README.rst
  2. +0
    -11
      salt/pkgrepo/debian/absent.sls
  3. +1
    -0
      salt/pkgrepo/debian/absent.sls
  4. +13
    -0
      salt/pkgrepo/debian/clean.sls
  5. +4
    -11
      salt/pkgrepo/debian/init.sls
  6. +14
    -0
      salt/pkgrepo/debian/install.sls
  7. +0
    -3
      salt/pkgrepo/redhat/absent.sls
  8. +1
    -0
      salt/pkgrepo/redhat/absent.sls
  9. +6
    -0
      salt/pkgrepo/redhat/clean.sls
  10. +4
    -11
      salt/pkgrepo/redhat/init.sls
  11. +14
    -0
      salt/pkgrepo/redhat/install.sls
  12. +0
    -3
      salt/pkgrepo/suse/absent.sls
  13. +1
    -0
      salt/pkgrepo/suse/absent.sls
  14. +6
    -0
      salt/pkgrepo/suse/clean.sls
  15. +4
    -9
      salt/pkgrepo/suse/init.sls
  16. +12
    -0
      salt/pkgrepo/suse/install.sls

+ 3
- 4
docs/README.rst Voir le fichier

@@ -107,13 +107,12 @@ For EL distributions, pygit is installed from packages from `EPEL <https://githu
``salt.pkgrepo``
^^^^^^^^^^^^^^^^

Enable the official saltstack package repository in order to always
benefit from the latest version. This state currently only works on Debian, Ubuntu, RHEL 6/7 and aims to implement the `installation recommendations of the official documentation <http://docs.saltstack.com/en/latest/topics/installation/index.html#platform-specific-installation-instructions>`_.
It is recommended to use SaltStack repository for Debian, RedHat, and SuSE, to benefit from the latest stable salt release. Refer to official documentation at <http://docs.saltstack.com/en/latest/topics/installation/index.html#platform-specific-installation-instructions>`_.

``salt.pkgrepo.absent``
``salt.pkgrepo.clean``
^^^^^^^^^^^^^^^^^^^^^^^

Undo the effects of ``salt.pkgrepo``.
Undo the effects of ``salt.pkgrepo`` on Debian, RedHat, and SuSE.

``salt.formulas``
^^^^^^^^^^^^^^^^^

+ 0
- 11
salt/pkgrepo/debian/absent.sls Voir le fichier

@@ -1,11 +0,0 @@
{% from "salt/map.jinja" import salt_settings with context %}

drop-saltstack-pkgrepo:
pkgrepo.absent:
- name: {{ salt_settings.pkgrepo }}
file.absent:
- name: /etc/apt/sources.list.d/saltstack.list

drop-saltstack-apt-key:
file.absent:
- name: /etc/apt/trusted.gpg.d/saltstack.gpg

+ 1
- 0
salt/pkgrepo/debian/absent.sls Voir le fichier

@@ -0,0 +1 @@
clean.sls

+ 13
- 0
salt/pkgrepo/debian/clean.sls Voir le fichier

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# vim: ft=sls
{% from "salt/map.jinja" import salt_settings with context %}

salt-pkgrepo-clean-saltstack-debian:
pkgrepo.absent:
- name: {{ salt_settings.pkgrepo }}
file.absent:
- name: /etc/apt/sources.list.d/saltstack.list

salt-pkgrepo-clean-saltstack-debian-apt-key:
file.absent:
- name: /etc/apt/trusted.gpg.d/saltstack.gpg

+ 4
- 11
salt/pkgrepo/debian/init.sls Voir le fichier

@@ -1,12 +1,5 @@
{% from "salt/map.jinja" import salt_settings with context %}
# -*- coding: utf-8 -*-
# vim: ft=sls

saltstack-pkgrepo:
pkgrepo.managed:
- humanname: SaltStack Debian Repo
- name: {{ salt_settings.pkgrepo }}
- file: /etc/apt/sources.list.d/saltstack.list
- key_url: {{ salt_settings.key_url }}
- clean_file: True
# Order: 1 because we can't put a require_in on "pkg: salt-{master,minion}"
# because we don't know if they are used.
- order: 1
include:
- .install

+ 14
- 0
salt/pkgrepo/debian/install.sls Voir le fichier

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# vim: ft=sls
{% from "salt/map.jinja" import salt_settings with context %}

salt-pkgrepo-install-saltstack-debian:
pkgrepo.managed:
- humanname: SaltStack Debian Repo
- name: {{ salt_settings.pkgrepo }}
- file: /etc/apt/sources.list.d/saltstack.list
- key_url: {{ salt_settings.key_url }}
- clean_file: True
# Order: 1 because we can't put a require_in on "pkg: salt-{master,minion}"
# because we don't know if they are used.
- order: 1

+ 0
- 3
salt/pkgrepo/redhat/absent.sls Voir le fichier

@@ -1,3 +0,0 @@
drop-saltstack-pkgrepo:
pkgrepo.absent:
- name: saltstack-pkgrepo

+ 1
- 0
salt/pkgrepo/redhat/absent.sls Voir le fichier

@@ -0,0 +1 @@
clean.sls

+ 6
- 0
salt/pkgrepo/redhat/clean.sls Voir le fichier

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# vim: ft=sls

salt-pkgrepo-clean-saltstack-redhat:
pkgrepo.absent:
- name: saltstack

+ 4
- 11
salt/pkgrepo/redhat/init.sls Voir le fichier

@@ -1,12 +1,5 @@
{% from "salt/map.jinja" import salt_settings with context %}
# -*- coding: utf-8 -*-
# vim: ft=sls

{%- if grains['os']|lower not in ('amazon', 'fedora') %}
saltstack-pkgrepo:
pkgrepo.managed:
- name: saltstack
- humanname: SaltStack repo for RHEL/CentOS $releasever
- baseurl: {{ salt_settings.pkgrepo }}
- enabled: 1
- gpgcheck: 1
- gpgkey: {{ salt_settings.key_url }}
{% endif %}
include:
- .install

+ 14
- 0
salt/pkgrepo/redhat/install.sls Voir le fichier

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# vim: ft=sls
{% from "salt/map.jinja" import salt_settings with context %}

{%- if grains['os']|lower not in ('amazon', 'fedora') %}
salt-pkgrepo-install-saltstack-redhat:
pkgrepo.managed:
- name: saltstack
- humanname: SaltStack repo for RHEL/CentOS $releasever
- baseurl: {{ salt_settings.pkgrepo }}
- enabled: 1
- gpgcheck: 1
- gpgkey: {{ salt_settings.key_url }}
{% endif %}

+ 0
- 3
salt/pkgrepo/suse/absent.sls Voir le fichier

@@ -1,3 +0,0 @@
drop-saltstack-pkgrepo:
pkgrepo.absent:
- name: saltstack-pkgrepo

+ 1
- 0
salt/pkgrepo/suse/absent.sls Voir le fichier

@@ -0,0 +1 @@
clean.sls

+ 6
- 0
salt/pkgrepo/suse/clean.sls Voir le fichier

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# vim: ft=sls

salt-pkgrepo-clean-saltstack-suse:
pkgrepo.absent:
- name: systemsmanagement_saltstack_products

+ 4
- 9
salt/pkgrepo/suse/init.sls Voir le fichier

@@ -1,10 +1,5 @@
{% from "salt/map.jinja" import salt_settings with context %}
# -*- coding: utf-8 -*-
# vim: ft=sls

saltstack-pkgrepo:
pkgrepo.managed:
- name: systemsmanagement_saltstack_products
- humanname: SaltStack repo for Opensuse 42.3
- baseurl: {{ salt_settings.pkgrepo }}
- enabled: 1
- gpgcheck: 1
- gpgkey: {{ salt_settings.key_url }}
include:
- .install

+ 12
- 0
salt/pkgrepo/suse/install.sls Voir le fichier

@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# vim: ft=sls
{% from "salt/map.jinja" import salt_settings with context %}

salt-pkgrepo-install-saltstack-suse:
pkgrepo.managed:
- name: systemsmanagement_saltstack_products
- humanname: SaltStack repo for Opensuse 42.3
- baseurl: {{ salt_settings.pkgrepo }}
- enabled: 1
- gpgcheck: 1
- gpgkey: {{ salt_settings.key_url }}

Chargement…
Annuler
Enregistrer