mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 00:45:17 -04:00
12 lines
134 B
Text
12 lines
134 B
Text
|
|
#!/bin/sh
|
||
|
|
echon "$1 (y/n) [$2] ? "
|
||
|
|
X=""
|
||
|
|
read X
|
||
|
|
if [ "$X" = "" ]; then
|
||
|
|
X="$2"
|
||
|
|
fi
|
||
|
|
case "$X" in
|
||
|
|
[yY]*) exit 0;;
|
||
|
|
*) exit 1;;
|
||
|
|
esac
|