Search found 1 match

by vijvis
Mon May 11, 2015 1:06 am
Forum: Help and Support
Topic: [Tutorial] Installing UMS 4.4.0 on Ubuntu Server 14.04.1
Replies: 27
Views: 66811

Re: [Tutorial] Installing UMS 4.4.0 on Ubuntu Server 14.04.1

To have it start on boot, I had to make the additional changes to the /etc/init.d/ums script:

if [[ -f “/etc/default/$NAME” ]] ; then
becomes
if [ -f “/etc/default/$NAME” ] ; then

and
[[ $UMS_START = 1 ]] || exit 1
becomes
[ $UMS_START = 1 ] || exit 1

Cheers.