#!/bin/sh
# vim: ts=4 sw=4 et smarttab

set -e

if [ -x /etc/init.d/nginx ]; then
    invoke-rc.d nginx restart;
fi
