diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-01-14 22:52:13 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-01-14 22:52:13 +0800 |
commit | a9f4789af1c3d8e4c09914922198ecb12bc4f588 (patch) | |
tree | 932b4fe2545325550c353ef040774c335b1c01d4 /print | |
parent | bf8eb7cdd711ac86c8f8feb42243e0e2ea73a2c9 (diff) | |
download | freebsd-ports-graphics-a9f4789af1c3d8e4c09914922198ecb12bc4f588.tar.gz freebsd-ports-graphics-a9f4789af1c3d8e4c09914922198ecb12bc4f588.tar.zst freebsd-ports-graphics-a9f4789af1c3d8e4c09914922198ecb12bc4f588.zip |
- escape shell names
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-base/files/cupsd.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/print/cups-base/files/cupsd.in b/print/cups-base/files/cupsd.in index 81c2e8f1dad..b5e426d0a94 100644 --- a/print/cups-base/files/cupsd.in +++ b/print/cups-base/files/cupsd.in @@ -13,13 +13,13 @@ . /etc/rc.subr -name=cupsd -rcvar=cupsd_enable +name="cupsd" +rcvar="cupsd_enable" -start_precmd=${name}_prestart +start_precmd="${name}_prestart" -command=%%PREFIX%%/sbin/cupsd -extra_commands=reload +command="%%PREFIX%%/sbin/cupsd" +extra_commands="reload" cupsd_prestart() { |