#!/bin/sh

set -e

if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then
	id _imunify >/dev/null 2>&1 || useradd --system -U _imunify || true
fi

chsh -s /bin/false _imunify


