diff options
author | jlam <jlam> | 2002-10-31 23:33:12 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-10-31 23:33:12 +0000 |
commit | 27e0819948bdc3a34182e97ec2f2a0f103a6d6d0 (patch) | |
tree | d2e4bdccd782d89df3d615ede1a3c8e86130d28f /print/cups | |
parent | 2055368aa1b8cdc27a2b0fc9809205445190330f (diff) | |
download | pkgsrc-27e0819948bdc3a34182e97ec2f2a0f103a6d6d0.tar.gz |
Start cupsd in the background as some of the cups backends take quite
a while to return whether there is a printer available or not during
startup.
Diffstat (limited to 'print/cups')
-rw-r--r-- | print/cups/files/cupsd.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/print/cups/files/cupsd.sh b/print/cups/files/cupsd.sh index 328d7c1061e..5b006d8f283 100644 --- a/print/cups/files/cupsd.sh +++ b/print/cups/files/cupsd.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: cupsd.sh,v 1.13 2002/10/20 08:09:46 jlam Exp $ +# $NetBSD: cupsd.sh,v 1.14 2002/10/31 23:33:12 jlam Exp $ # # Common UNIX Printing System daemon # @@ -15,6 +15,7 @@ fi name="cupsd" rcvar=${name} command="@PREFIX@/sbin/${name}" +command_args="& sleep 2" required_files="@PKG_SYSCONFDIR@/${name}.conf" extra_commands="reload" |