Check-in [b4e23b21af]
Logged in as anonymous
Overview
Comment:fix test and prevent service start
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b4e23b21af776436dda7586c134b6e1364bf6a172c443e58f1373f6c0de07779
User & Date: arcade on 2019-10-20 12:27:57.215
Other Links: manifest | tags
Context
2019-10-20
12:28
add module loading check-in: b9bb8f0f8e user: arcade tags: trunk
12:27
fix test and prevent service start check-in: b4e23b21af user: arcade tags: trunk
12:27
rewrite file check-in: 3e8f3b3326 user: arcade tags: trunk
Changes
1
2
3
4
5
6
7
8
9
10
# vim:ft=make:

DAEMON_smartd_COMMAND?=/usr/local/sbin/smartd
DAEMON_smartd_ENABLE?=no
DAEMON_smartd_FLAGS?=-c /usr/local/etc/smartd.conf -n

smartd: _daemon
	test -d /usr/local/etc/smartd.conf || { \
	  echo smartd requires config file to start. ; \
	  exit 0 ; }







|

|
1
2
3
4
5
6
7
8
9
10
# vim:ft=make:

DAEMON_smartd_COMMAND?=/usr/local/sbin/smartd
DAEMON_smartd_ENABLE?=no
DAEMON_smartd_FLAGS?=-c /usr/local/etc/smartd.conf -n

smartd: _daemon
	test -f /usr/local/etc/smartd.conf || { \
	  echo smartd requires config file to start. ; \
	  exit 0 ; } \