mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
8df0bde321
Change enforced shell type from `dash` to `sh` and excluded `SC2039` and `SC3043` by default. `local` keyword is accepted by all POSIX shells from practical point of view. There is no need anymore to enforce dash so `local` is accepted. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: szubersk <szuberskidamian@gmail.com> Closes #13020
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
include $(top_srcdir)/config/Rules.am
|
|
include $(top_srcdir)/config/Substfiles.am
|
|
include $(top_srcdir)/config/Shellcheck.am
|
|
|
|
EXTRA_DIST += README
|
|
|
|
zedconfdir = $(sysconfdir)/zfs/zed.d
|
|
|
|
dist_zedconf_DATA = \
|
|
zed-functions.sh \
|
|
zed.rc
|
|
|
|
SHELLCHECKSCRIPTS = zed-functions.sh zed.rc
|
|
SHELLCHECK_SHELL = sh
|
|
|
|
zedexecdir = $(zfsexecdir)/zed.d
|
|
|
|
dist_zedexec_SCRIPTS = \
|
|
all-debug.sh \
|
|
all-syslog.sh \
|
|
data-notify.sh \
|
|
generic-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 \
|
|
trim_finish-notify.sh
|
|
|
|
nodist_zedexec_SCRIPTS = history_event-zfs-list-cacher.sh
|
|
|
|
SUBSTFILES += $(nodist_zedexec_SCRIPTS)
|
|
|
|
zedconfdefaults = \
|
|
all-syslog.sh \
|
|
data-notify.sh \
|
|
history_event-zfs-list-cacher.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"
|
|
|
|
# False positive: 1>&"${ZED_FLOCK_FD}" looks suspiciously similar to a >&filename bash extension
|
|
CHECKBASHISMS_IGNORE = -e 'should be >word 2>&1' -e '&"$${ZED_FLOCK_FD}"'
|