#!/bin/sh set -e case "$1" in upgrade) # If the service is running, restart it. /etc/init.d/jobarchived condrestart || true ;; *) ;; esac exit 0