#!/bin/sh

post_install() {
  if hash systemd-sysusers &> /dev/null; then
    systemd-sysusers dnsmasq.conf
  fi
}

post_upgrade(){
  if hash systemd-sysusers &> /dev/null; then
    systemd-sysusers dnsmasq.conf
  fi
}
