Comment 9 for bug 250400

Revision history for this message
Colin Watson (cjwatson) wrote : Re: package ssl-cert 1.0.14-0ubuntu2.1 failed to install/upgrade:

Perhaps something like this somewhere in make-ssl-cert:

  if [ ! -d "$HOME" ]; then
      temphome="$(mktemp -d)"
      cleanup () {
          rm -rf "$temphome"
      }
      trap cleanup EXIT HUP INT QUIT TERM
      export HOME="$temphome"
  fi