diff options
author | Renato Botelho <renato@netgate.com> | 2016-12-22 15:27:11 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-12-22 15:27:30 -0200 |
commit | ba2be30f109cb2d0c83d41dff268b04f085252b4 (patch) | |
tree | bea206dcde30a31b0cbd59877b823d4b3b9f9ef3 | |
parent | 71a6a398370a899117a899a8143f9b3a929d660a (diff) | |
download | FreeBSD-src-ba2be30f109cb2d0c83d41dff268b04f085252b4.zip FreeBSD-src-ba2be30f109cb2d0c83d41dff268b04f085252b4.tar.gz |
Fix button labels
-rwxr-xr-x | release/rc.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/rc.local b/release/rc.local index 3419c60..f92bc9b 100755 --- a/release/rc.local +++ b/release/rc.local @@ -72,7 +72,7 @@ if [ -f /etc/installerconfig ]; then exit fi -dialog --backtitle "pfSense Installer" --title "Welcome" --ok-label "Install" --cancel-label "Rescue Shell" --yesno "Welcome to pfSense! Would you like to begin an installation or use the Rescue Shell?" 0 0 +dialog --backtitle "pfSense Installer" --title "Welcome" --yes-label "Install" --no-label "Rescue Shell" --yesno "Welcome to pfSense! Would you like to begin an installation or use the Rescue Shell?" 0 0 case $? in $DIALOG_OK) # Install |