mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2026-02-10 19:50:28 +08:00
fix: request admin privileges for DNS settings on macOS
This commit is contained in:
parent
7634177c5c
commit
85f430f188
@ -977,7 +977,10 @@ async function getOriginDNS(): Promise<void> {
|
|||||||
async function setDNS(dns: string): Promise<void> {
|
async function setDNS(dns: string): Promise<void> {
|
||||||
const service = await getDefaultService()
|
const service = await getDefaultService()
|
||||||
const execPromise = promisify(exec)
|
const execPromise = promisify(exec)
|
||||||
await execPromise(`networksetup -setdnsservers "${service}" ${dns}`)
|
// networksetup 需要 root 权限,通过 osascript 请求管理员权限执行
|
||||||
|
const shell = `networksetup -setdnsservers "${service}" ${dns}`
|
||||||
|
const command = `do shell script "${shell}" with administrator privileges`
|
||||||
|
await execPromise(`osascript -e '${command}'`)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function setPublicDNS(): Promise<void> {
|
async function setPublicDNS(): Promise<void> {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user