mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
39042f9736
zpool and zed place scripts in subdirectories of libexecdir. Some distributions locate architecture independent scripts in other locations (e.g. Debian). To avoid these paths getting out of sync, centralize the definitions. Build zfs-test's default.cfg by Makefile. Use the new directory logic building tests/zfs-tests/include/default.cfg.in. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Antonio Russo <antonio.e.russo@gmail.com> Closes #7597
102 lines
2.2 KiB
Makefile
102 lines
2.2 KiB
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
EXTRA_DIST = zed.d/README \
|
|
zed.d/history_event-zfs-list-cacher.sh.in
|
|
|
|
sbin_PROGRAMS = zed
|
|
|
|
ZED_SRC = \
|
|
zed.c \
|
|
zed.h \
|
|
zed_conf.c \
|
|
zed_conf.h \
|
|
zed_disk_event.c \
|
|
zed_disk_event.h \
|
|
zed_event.c \
|
|
zed_event.h \
|
|
zed_exec.c \
|
|
zed_exec.h \
|
|
zed_file.c \
|
|
zed_file.h \
|
|
zed_log.c \
|
|
zed_log.h \
|
|
zed_strings.c \
|
|
zed_strings.h
|
|
|
|
FMA_SRC = \
|
|
agents/zfs_agents.c \
|
|
agents/zfs_agents.h \
|
|
agents/zfs_diagnosis.c \
|
|
agents/zfs_mod.c \
|
|
agents/zfs_retire.c \
|
|
agents/fmd_api.c \
|
|
agents/fmd_api.h \
|
|
agents/fmd_serd.c \
|
|
agents/fmd_serd.h
|
|
|
|
zed_SOURCES = $(ZED_SRC) $(FMA_SRC)
|
|
|
|
zed_LDADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libuutil/libuutil.la \
|
|
$(top_builddir)/lib/libzfs/libzfs.la
|
|
|
|
zed_LDADD += -lrt
|
|
zed_LDFLAGS = -pthread
|
|
|
|
zedconfdir = $(sysconfdir)/zfs/zed.d
|
|
|
|
dist_zedconf_DATA = \
|
|
zed.d/zed-functions.sh \
|
|
zed.d/zed.rc
|
|
|
|
zedexecdir = $(zfsexecdir)/zed.d
|
|
|
|
dist_zedexec_SCRIPTS = \
|
|
zed.d/all-debug.sh \
|
|
zed.d/all-syslog.sh \
|
|
zed.d/data-notify.sh \
|
|
zed.d/generic-notify.sh \
|
|
zed.d/resilver_finish-notify.sh \
|
|
zed.d/scrub_finish-notify.sh \
|
|
zed.d/statechange-led.sh \
|
|
zed.d/statechange-notify.sh \
|
|
zed.d/vdev_clear-led.sh \
|
|
zed.d/vdev_attach-led.sh \
|
|
zed.d/pool_import-led.sh \
|
|
zed.d/resilver_finish-start-scrub.sh
|
|
|
|
nodist_zedexec_SCRIPTS = zed.d/history_event-zfs-list-cacher.sh
|
|
|
|
$(nodist_zedexec_SCRIPTS): %: %.in
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
zedconfdefaults = \
|
|
all-syslog.sh \
|
|
data-notify.sh \
|
|
resilver_finish-notify.sh \
|
|
scrub_finish-notify.sh \
|
|
statechange-led.sh \
|
|
statechange-notify.sh \
|
|
vdev_clear-led.sh \
|
|
vdev_attach-led.sh \
|
|
pool_import-led.sh \
|
|
resilver_finish-start-scrub.sh
|
|
|
|
install-data-hook:
|
|
$(MKDIR_P) "$(DESTDIR)$(zedconfdir)"
|
|
for f in $(zedconfdefaults); do \
|
|
test -f "$(DESTDIR)$(zedconfdir)/$${f}" -o \
|
|
-L "$(DESTDIR)$(zedconfdir)/$${f}" || \
|
|
ln -s "$(zedexecdir)/$${f}" "$(DESTDIR)$(zedconfdir)"; \
|
|
done
|
|
chmod 0600 "$(DESTDIR)$(zedconfdir)/zed.rc"
|