There is a condition expression at line 99 of /etc/init.d/openser that
tests if $HOMEDIR exists, and if not, create it. But the condition
misses the ! (negation) operator. I changed as follows and it works
fine.

  # /var/run can be a tmpfs
  if [ ! -d $HOMEDIR ]; then
      mkdir -p $HOMEDIR
  fi

Regards.

-- 
Openser fails at the init.d startup
https://bugs.launchpad.net/bugs/132656
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to