#!/bin/sh
#
# Wrapper around restarting rsyslog restarts so programs
# like newsyslog can do a service restart.

# Exit on any error.
set -e

service rsyslog restart

# Documentation.
DOCS=<<__END_OF_DOCS__

=head1 NAME

rsyslog-restart - Wrapper around restarting rsyslog restart

=head1 SYNOPSIS

B<rsyslog-restart>

=head1 DESCRIPTION

B<rsyslog-restart> Wrapper around restarting rsyslog restart so programs
like newsyslog can do a service restart.

=head1 SEE ALSO

newsyslog(8)

=head1 AUTHOR

Adam H Lewenberg <adamhl@stanford.edu>

=cut

__END_OF_DOCS__
