mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-27 07:23:55 +00:00
7 lines
205 B
Bash
7 lines
205 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
find /usr/etc/yum.repos.d/ -name "*.repo" -type f -exec sed -i 's/metalink?/metalink?protocol=https\&/g' {} \;
|