From 29b546584a6971ce8a680c54f02175f5aeb12291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Dubois?= Date: Mon, 23 Jan 2023 16:56:10 +0100 Subject: [PATCH] OpenBSD - check_pkgmirror: fix openbsd mirror --- openbsd/CHANGELOG | 1 + openbsd/evocheck.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/openbsd/CHANGELOG b/openbsd/CHANGELOG index ec4e8fe..989dfad 100644 --- a/openbsd/CHANGELOG +++ b/openbsd/CHANGELOG @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - check_history: escape $HOME variable +- check_pkgmirror: fix openbsd mirror ## [22.11] - 2022-11-28 diff --git a/openbsd/evocheck.sh b/openbsd/evocheck.sh index 8d67daa..8fe7558 100755 --- a/openbsd/evocheck.sh +++ b/openbsd/evocheck.sh @@ -194,7 +194,7 @@ check_wheel(){ fi } check_pkgmirror(){ - grep -qE "^https?://ftp\.evolix\.org/openbsd/" /etc/installurl || failed "IS_PKGMIRROR" "Check whether the right repo is present in the /etc/installurl file" + grep -qE "^https?://ftp\.evolix\.org/openbsd" /etc/installurl || failed "IS_PKGMIRROR" "Check whether the right repo is present in the /etc/installurl file" } check_history(){ file=/root/.profile