post_install() {
  if ! getent passwd nm-openconnect >/dev/null; then
    useradd -r -U -d / -c 'NetworkManager OpenConnect' -s /usr/bin/nologin nm-openconnect
  fi
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}
