mirror of
https://github.com/RubyMetric/chsrc
synced 2025-12-26 04:19:47 +08:00
59 lines
1.6 KiB
C
59 lines
1.6 KiB
C
/** ------------------------------------------------------------
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* -------------------------------------------------------------
|
|
* File Authors : Aoran Zeng <ccmywish@qq.com>
|
|
* Contributors : Nil Null <nil@null.org>
|
|
* Created On : <2023-09-24>
|
|
* Last Modified : <2024-08-16>
|
|
* ------------------------------------------------------------*/
|
|
|
|
/**
|
|
* @time 2023-09-24 更新
|
|
*/
|
|
static SourceInfo
|
|
os_void_sources[] = {
|
|
{&Upstream, NULL},
|
|
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/voidlinux"},
|
|
{&Sjtug_Zhiyuan, "https://mirror.sjtu.edu.cn/voidlinux"},
|
|
{&Bfsu, "https://mirrors.bfsu.edu.cn/voidlinux"}
|
|
};
|
|
def_sources_n(os_void);
|
|
|
|
|
|
void
|
|
os_void_getsrc (char *option)
|
|
{
|
|
char* cmd = "xbps-query -L";
|
|
chsrc_run (cmd, RunOpt_No_Last_New_Line);
|
|
}
|
|
|
|
/**
|
|
* 参考: https://help.mirrors.cernet.edu.cn/voidlinux/
|
|
*/
|
|
void
|
|
os_void_setsrc (char *option)
|
|
{
|
|
chsrc_ensure_root (); // HELP: 不确定是否需要root
|
|
|
|
chsrc_yield_source_and_confirm (os_void);
|
|
|
|
chsrc_ensure_dir ("/etc/xbps.d");
|
|
char *cmd = "cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/";
|
|
chsrc_run (cmd, RunOpt_Default);
|
|
|
|
cmd = xy_strjoin (3,
|
|
"sed -i 's|https://repo-default.voidlinux.org|", source.url, "|g' /etc/xbps.d/*-repository-*.conf"
|
|
);
|
|
chsrc_run (cmd, RunOpt_Default);
|
|
|
|
cmd = xy_strjoin (3,
|
|
"sed -i 's|https://alpha.de.repo.voidlinux.org|", source.url, "|g' /etc/xbps.d/*-repository-*.conf"
|
|
);
|
|
|
|
chsrc_note2 ("若报错可尝试使用以下命令:");
|
|
say (cmd);
|
|
chsrc_conclude (&source, SetsrcType_Untested);
|
|
}
|
|
|
|
def_target(os_void);
|