The opengee-server RPM's post-install.sh is using an undefined variable to create the geapacheuser and gepguser home directories, causing /.users/geapacheuser and /.users/gepguser/ to be created instead.
Surprisingly, the correct directories (/opt/google/.user/geapacheuser/ and /opt/google/.user/gepguser/) are also created during the install, so the creation here may not be necessary.
The opengee-server RPM's
post-install.sh
is using an undefined variable to create thegeapacheuser
andgepguser
home directories, causing/.users/geapacheuser
and/.users/gepguser/
to be created instead.https://github.com/google/earthenterprise/blob/master/earth_enterprise/rpms/opengee-server/snippets/post-install.sh#L172
Surprisingly, the correct directories (
/opt/google/.user/geapacheuser/
and/opt/google/.user/gepguser/
) are also created during the install, so the creation here may not be necessary.