18 lines
420 B
SYSTEMD
18 lines
420 B
SYSTEMD
|
[Unit]
|
||
|
Description=Import ZFS pools by device scanning
|
||
|
Documentation=man:zpool(8)
|
||
|
DefaultDependencies=no
|
||
|
Requires=systemd-udev-settle.service
|
||
|
After=systemd-udev-settle.service
|
||
|
After=cryptsetup.target
|
||
|
Before=zfs-import.target
|
||
|
ConditionPathExists=!/usr/local/etc/zfs/zpool.cache
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStart=/usr/local/sbin/zpool import -aN -o cachefile=none
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=zfs-import.target
|