summaryrefslogtreecommitdiff
path: root/debian/runq
diff options
context:
space:
mode:
authorRichard Nelson <cowboy@debian.org>1998-06-23 10:00:00 -0500
committerAndreas Beckmann <debian@abeckmann.de>2012-10-01 19:58:37 +0200
commit6202a816311c5e56f71ecd358850b1e6d8cd7065 (patch)
treede47ad4f657df101b6f36a07a6c6e19191be7de9 /debian/runq
parent6c193ce1dd1d07ebdc1372e38bc4908ab1c37705 (diff)
downloadsendmail-debian/8.8.8-20.tar.gz
Imported Debian patch 8.8.8-20debian/8.8.8-20
Diffstat (limited to 'debian/runq')
-rw-r--r--debian/runq26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/runq b/debian/runq
new file mode 100644
index 0000000..b68b35a
--- /dev/null
+++ b/debian/runq
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+usage="Usage: $0 [OPTION]...
+Run the sendmail queue (sendmail -q)
+
+ --help display this help and exit
+ --version output version information and exit
+
+Report bugs to submit@bugs.debian.org"
+
+case $# in
+ 1 )
+ case "z${1}" in
+ z--help )
+ echo "$usage"; exit 0 ;;
+ z--version )
+ echo -n "runq (Debian GNU/Linux) 1.00. ";
+ echo "Copyright (c) 1997 Johnie Ingram. >= GNU GPL 2."
+ exit 0 ;;
+ * ) ;;
+ esac
+ ;;
+ * ) ;;
+esac
+
+exec /usr/sbin/sendmail -q $*