mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
73 lines
2.0 KiB
Plaintext
73 lines
2.0 KiB
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if grains['os_family']|lower == 'debian' -%}
|
|
{% if not salt['file.file_exists']('/usr/share/whonix/marker') -%}
|
|
{% for repo in salt['file.find']('/etc/apt/sources.list.d/', name='*(list|sources)') -%}
|
|
{{ repo }}_baseurl:
|
|
file.replace:
|
|
- name: {{ repo }}
|
|
- pattern: 'https://'
|
|
- repl: 'http://HTTPS///'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
{% endfor -%}
|
|
|
|
/etc/apt/sources.list:
|
|
file.replace:
|
|
- name: /etc/apt/sources.list
|
|
- pattern: 'https:'
|
|
- repl: 'http://HTTPS/'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
{% endif -%}
|
|
|
|
{% 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: 'https:'
|
|
- repl: 'http://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(.*)https://'
|
|
- repl: 'baseurl\1http://HTTPS///'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
{{ repo }}_metalink:
|
|
file.replace:
|
|
- name: {{ repo }}
|
|
- pattern: 'metalink=https://(.*)'
|
|
- repl: 'metalink=http://HTTPS///\1'
|
|
- flags: [ 'IGNORECASE', 'MULTILINE' ]
|
|
- backup: False
|
|
|
|
{% endfor -%}
|
|
{% for repo in salt['file.find']('/etc/yum.repos.d/', name='rpmfusion*repo*') -%}
|
|
{{ repo }}_uncomment:
|
|
file.uncomment:
|
|
- name: {{ repo }}
|
|
- regex : '.*baseurl(.*)'
|
|
- backup: False
|
|
{{ repo }}_comment:
|
|
file.comment:
|
|
- name: {{ repo }}
|
|
- regex: '^metalink=http(.*)'
|
|
- ignore_missing: True
|
|
- backup: False
|
|
|
|
{% endfor -%}
|
|
{% endif -%}
|