mirror of
https://github.com/unman/shaker.git
synced 2024-10-01 01:25:41 -04:00
3f59aacbad
Closes #8
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
# vim: set syntax=yaml ts=2 sw=2 sts=2 et :
|
|
#
|
|
#
|
|
#
|
|
|
|
{% if grains['os_family']|lower == 'debian' %}
|
|
{% for repo in salt['file.find']('/etc/apt/sources.list.d/', name='*list') %}
|
|
{{ repo }}_baseurl:
|
|
file.replace:
|
|
- name: {{ repo }}
|
|
- pattern: 'http://HTTPS/'
|
|
- repl: 'https:'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
{% endfor %}
|
|
|
|
/etc/apt/sources.list:
|
|
file.replace:
|
|
- name: /etc/apt/sources.list
|
|
- pattern: 'http://HTTPS/'
|
|
- repl: 'https:'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
{% elif grains['os_family']|lower == 'arch' %}
|
|
pacman:
|
|
file.replace:
|
|
- names:
|
|
- /etc/pacman.d/mirrorlist
|
|
- /etc/pacman.d/99-qubes-repository-4.1.conf.disabled
|
|
- pattern: 'http://HTTPS///'
|
|
- repl: 'https://'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
|
|
{% elif grains['os_family']|lower == 'redhat' %}
|
|
{% for repo in salt['file.find']('/etc/yum.repos.d/', name='*repo*') %}
|
|
{{ repo }}_baseurl:
|
|
file.replace:
|
|
- name: {{ repo }}
|
|
- pattern: 'baseurl(.*)http://HTTPS/'
|
|
- repl: 'baseurl\1https:'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
{{ repo }}_metalink:
|
|
file.replace:
|
|
- name: {{ repo }}
|
|
- pattern: 'metalink=http://HTTPS///(.*)basearch&protocol=http'
|
|
- repl: 'metalink=https://\1basearch'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
{% endfor %}
|
|
{% endif %}
|