aboutsummaryrefslogtreecommitdiffstats
path: root/etc/Makefile.am
blob: 7187762d380296981b0c440824676f8e47355816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
sudoersddir = $(sysconfdir)/sudoers.d
sudoersd_DATA = \
	%D%/sudoers.d/zfs

dist_noinst_DATA += $(sudoersd_DATA)


sysconf_zfsdir = $(sysconfdir)/zfs

dist_sysconf_zfs_DATA = \
	%D%/zfs/vdev_id.conf.alias.example \
	%D%/zfs/vdev_id.conf.multipath.example \
	%D%/zfs/vdev_id.conf.sas_direct.example \
	%D%/zfs/vdev_id.conf.sas_switch.example \
	%D%/zfs/vdev_id.conf.scsi.example

sysconf_zfs_DATA = \
	%D%/zfs/zfs-functions

SUBSTFILES          += $(sysconf_zfs_DATA)
SHELLCHECKSCRIPTS   += $(sysconf_zfs_DATA)
$(call SHELLCHECK_OPTS,$(sysconf_zfs_DATA)): SHELLCHECK_SHELL = sh


if BUILD_LINUX
initconf_DATA = \
	%D%/default/zfs

SUBSTFILES          += $(initconf_DATA)
SHELLCHECKSCRIPTS   += $(initconf_DATA)
$(call SHELLCHECK_OPTS,$(initconf_DATA)): SHELLCHECK_SHELL = sh


if INIT_SYSV
dist_noinst_DATA += %D%/init.d/README.md

init_SCRIPTS = \
	%D%/init.d/zfs-import \
	%D%/init.d/zfs-load-key \
	%D%/init.d/zfs-mount \
	%D%/init.d/zfs-share \
	%D%/init.d/zfs-zed

SUBSTFILES        += $(init_SCRIPTS)
SHELLCHECKSCRIPTS += $(init_SCRIPTS)
$(call SHELLCHECK_OPTS,$(init_SCRIPTS)): SHELLCHECK_SHELL = sh
endif


if INIT_SYSTEMD
dist_systemdpreset_DATA = \
	%D%/systemd/system/50-zfs.preset

systemdunit_DATA = \
	%D%/systemd/system/zfs-import-cache.service \
	%D%/systemd/system/zfs-import-scan.service \
	%D%/systemd/system/zfs-import.target \
	%D%/systemd/system/zfs-mount.service \
	%D%/systemd/system/zfs-scrub-monthly@.timer \
	%D%/systemd/system/zfs-scrub-weekly@.timer \
	%D%/systemd/system/zfs-scrub@.service \
	%D%/systemd/system/zfs-trim-monthly@.timer \
	%D%/systemd/system/zfs-trim-weekly@.timer \
	%D%/systemd/system/zfs-trim@.service \
	%D%/systemd/system/zfs-share.service \
	%D%/systemd/system/zfs-volume-wait.service \
	%D%/systemd/system/zfs-volumes.target \
	%D%/systemd/system/zfs-zed.service \
	%D%/systemd/system/zfs.target

SUBSTFILES += $(systemdunit_DATA)

INSTALL_DATA_HOOKS += systemd-install-data-hook
systemd-install-data-hook:
	$(MKDIR_P) "$(DESTDIR)$(systemdunitdir)"
	ln -sf /dev/null "$(DESTDIR)$(systemdunitdir)/zfs-import.service"
	ln -sf /dev/null "$(DESTDIR)$(systemdunitdir)/zfs-load-key.service"


systemdgenerator_PROGRAMS = \
	%D%/systemd/system-generators/zfs-mount-generator

%C%_systemd_system_generators_zfs_mount_generator_SOURCES = \
	%D%/systemd/system-generators/zfs-mount-generator.c

%C%_systemd_system_generators_zfs_mount_generator_LDADD = \
	libzfs.la

%C%_systemd_system_generators_zfs_mount_generator_LDFLAGS = -pthread

CPPCHECKTARGETS += $(systemdgenerator_PROGRAMS)
endif


if WANT_MODULES_LOAD_D
dist_modulesload_DATA = \
	%D%/modules-load.d/zfs.conf
endif
endif