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: |
b4e23b21af776436dda7586c134b6e13 |
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
Modified smartd.service
from [b95945ce0e]
to [c65ba8547d].
1 2 3 4 5 6 7 | # 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 | | | | 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 ; } \ |