Skip to content
Snippets Groups Projects
init.sls 426 B
Newer Older
  • Learn to ignore specific revisions
  • skorpy's avatar
    skorpy committed
      pkg.latest:
    
    skorpy's avatar
    skorpy committed
    {%- if grains['osmajorrelease'] >= 9 and grains['osmajorrelease'] <= 12 %}
    
    skorpy's avatar
    skorpy committed
        - fromrepo: {{ grains['oscodename'] }}-backports
    
    skorpy's avatar
    skorpy committed
    {%- endif %}
    
    skorpy's avatar
    skorpy committed
        - pkgs:
          - systemd
    
          - libpam-systemd
    
    skorpy's avatar
    skorpy committed
          - systemd-coredump
    
    skorpy's avatar
    skorpy committed
    
    dbus:
      pkg.installed
    
    
    # systemctl daemon-reload if anything changed
    service.systemctl_reload:
      module.run:
        - onchanges:
          - file: /etc/systemd/system/*
    
    skorpy's avatar
    skorpy committed
      - apt