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

Commit

Permalink
Fix a bug installing the packages for the thin-client UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Moore committed Sep 27, 2013
1 parent 0805dd4 commit fb7eaa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-sh/pc-thinclient/pc-thinclient
Expand Up @@ -256,9 +256,9 @@ rpcbind : ALL : deny|" /etc/hosts.allow
check_webui() {
echo "PC-ThinClient includes a web-interface for client management."
echo "Would you like to install the Apache / PHP packages required?"
echo -e "(Y/y)\c";
echo -e "default: (y)\c";
read ans
if [ $ans != "y" -o "$ans" != "Y" ] ; then return; fi
if [ "$ans" != "y" -a "$ans" != "Y" ] ; then return; fi

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

0 comments on commit fb7eaa9

Please sign in to comment.