mirror of
https://github.com/openbsd/src.git
synced 2025-01-03 06:45:37 -08:00
99342bd415
- change -a, -o to &&, || inside [[]] - remove unecessary quoting inside [[]] - remove X"" constructs inside [[]] - remove \ (line continuation) in case of &&, || and pipes - replace backticks with $() discussed with and OK aja@ OK tb
16 lines
183 B
Bash
16 lines
183 B
Bash
#!/bin/ksh
|
|
#
|
|
# $OpenBSD: ldattach,v 1.4 2018/01/11 21:09:26 rpe Exp $
|
|
|
|
daemon="/sbin/ldattach"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_reload=NO
|
|
|
|
rc_pre() {
|
|
[[ -n ${ldattach_flags} ]]
|
|
}
|
|
|
|
rc_cmd $1
|