Update OpenBSD sources

This commit is contained in:
Aoran Zeng 2025-07-31 16:35:28 +08:00
parent 851bb508b1
commit 013c95386c
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

View File

@ -5,23 +5,28 @@
* | Aoran Zeng <ccmywish@qq.com>
* Contributors : Nil Null <nil@null.org>
* Created On : <2023-09-03>
* Last Modified : <2024-09-14>
* Last Modified : <2025-07-31>
* ------------------------------------------------------------*/
/**
* @update 2024-09-14
* @update 2025-07-31
*/
static Source_t os_openbsd_sources[] =
{
{&UpstreamProvider, NULL},
{&Ali, "https://mirrors.aliyun.com/OpenBSD/"},
{&Bfsu, "https://mirrors.bfsu.edu.cn/OpenBSD/"},
{&Ustc, "https://mirrors.ustc.edu.cn/OpenBSD/"},
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/"},
{&Tencent, "https://mirrors.tencent.com/OpenBSD/"},
// {&Tencent_Intra, "https://mirrors.tencentyun.com/OpenBSD/"},
{&Netease, "https://mirrors.163.com/OpenBSD/"},
{&Sohu, "https://mirrors.sohu.com/OpenBSD/"}
{&UpstreamProvider, NULL, NULL},
{&MirrorZ, "https://mirrors.cernet.edu.cn/OpenBSD/", DelegateToMirror},
{&Bfsu, "https://mirrors.bfsu.edu.cn/OpenBSD/", DelegateToMirror},
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/", DelegateToMirror},
{&Nju, "https://mirror.nju.edu.cn/OpenBSD/", DelegateToMirror},
{&Nyist, "https://mirror.nyist.edu.cn/OpenBSD/", DelegateToMirror},
{&Sjtug_Siyuan, "https://mirror.sjtu.edu.cn/OpenBSD/", DelegateToMirror},
{&Iscas, "https://mirror.iscas.ac.cn/OpenBSD/", DelegateToMirror},
{&Cqupt, "https://mirrors.cqupt.edu.cn/openbsd/", DelegateToMirror},
{&Ali, "https://mirrors.aliyun.com/OpenBSD/", DelegateToMirror},
{&Tencent, "https://mirrors.tencent.com/OpenBSD/", DelegateToMirror},
// {&Tencent_Intra, "https://mirrors.tencentyun.com/OpenBSD/", DelegateToMirror},
{&Netease, "https://mirrors.163.com/OpenBSD/", DelegateToMirror},
{&Sohu, "https://mirrors.sohu.com/OpenBSD/", DelegateToMirror}
};
def_sources_n(os_openbsd);
@ -33,7 +38,7 @@ os_openbsd_getsrc (char *option)
}
/**
*
* @consult
* 1. https://mirrors.tuna.tsinghua.edu.cn/help/openbsd/
* 2. https://book.bsdcn.org/di-26-zhang-openbsd/di-26.2-jie-pei-zhi.html
*/
@ -47,7 +52,7 @@ os_openbsd_setsrc (char *option)
chsrc_backup ("/etc/installurl");
chsrc_overwrite_file (source.url, "/etc/installurl");
chsrc_determine_chgtype (ChgType_Untested);
chsrc_determine_chgtype (ChgType_Auto);
chsrc_conclude (&source);
}