Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Update logic to install webui
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Moore committed Sep 27, 2013
1 parent 01f43cb commit 94a17a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-sh/pc-thinclient/pc-thinclient
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ check_webui() {
echo "Would you like to install the Apache / PHP packages required?"
echo -e "default: (y)\c";
read ans
if [ "$ans" != "y" -a "$ans" != "Y" ] ; then return; fi
if [ "$ans" = "n" -o "$ans" = "N" ] ; then return; fi

pkg install apache22 php5-hash php5-session
if [ $? -ne 0 ] ; then
Expand Down

0 comments on commit 94a17a3

Please sign in to comment.