mirror of
https://github.com/openwrt/packages.git
synced 2026-07-12 22:44:28 +04:00
d824c1fc90
handle dalias/calias config currectly by dns challenge hook so it won't break uacme when given Signed-off-by: Seo Suchan <tjtncks@gmail.com>
11 lines
127 B
Bash
Executable File
11 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"uacme")
|
|
uacme -V 2>&1 | grep "$2"
|
|
;;
|
|
"uacme-ualpn")
|
|
ualpn -V 2>&1 | grep "$2"
|
|
;;
|
|
esac
|