mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
23 lines
495 B
Bash
23 lines
495 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Systemd service for automatic ZFS zpool scrubbing"
|
|
HOMEPAGE="https://github.com/lnicola/systemd-zpool-scrub"
|
|
|
|
EGIT_REPO_URI="https://github.com/lnicola/systemd-zpool-scrub.git"
|
|
|
|
inherit git-r3 systemd
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 arm64 arm mips"
|
|
|
|
RDEPEND="sys-fs/zfs"
|
|
|
|
src_install() {
|
|
systemd_dounit zpool-scrub@.service
|
|
systemd_dounit zpool-scrub@.timer
|
|
}
|