diff --git a/pandora_agents/unix/ChangeLog b/pandora_agents/unix/ChangeLog index 23df10f649..704a8b0501 100644 --- a/pandora_agents/unix/ChangeLog +++ b/pandora_agents/unix/ChangeLog @@ -1,3 +1,7 @@ +2013-09-19 Ramon Novoa + + * pandora_agent_installer: Changed the bash style == to =. + 2013-09-19 Ramon Novoa * Linux/pandora_agent.conf: The default user should not be pandora. diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 192b0bf260..03f4ee6b37 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -32,7 +32,7 @@ PANDORA_BASE=`echo $2 | sed -e 's/\/$//'` if [ "$3" != "" ] then PANDORA_USER=$3 - if [ "$PANDORA_BASE" == "" ] + if [ "$PANDORA_BASE" = "" ] then echo "When specifying a custom user the agent must be installed to a custom location where that user has write permissions!" exit 1