#!/bin/sh
set -e

if [ "$1" = "purge" ]; then
  rm -rf /var/lib/siraya/printer
  userdel siraya-printer 2>/dev/null || true
fi

exit 0
