diff options
author | gjb <gjb@FreeBSD.org> | 2016-01-21 18:19:33 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2016-01-21 18:19:33 +0000 |
commit | 3d734e058354008f679d1e871ad09d4ded6716b7 (patch) | |
tree | 45ad64baf52534bd4eb3065ee8ed5a7a88673fa7 /etc | |
parent | 00d9a083c4deb8bce5aee0ce7ce12b013abb2236 (diff) | |
download | FreeBSD-src-3d734e058354008f679d1e871ad09d4ded6716b7.zip FreeBSD-src-3d734e058354008f679d1e871ad09d4ded6716b7.tar.gz |
Create a package for amd(8) and related tools.
While here, fix accounting rc script installation.
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile index 2163118..1f658aa 100644 --- a/etc/rc.d/Makefile +++ b/etc/rc.d/Makefile @@ -135,7 +135,8 @@ FILES= DAEMON \ zvol .if ${MK_ACCT} != "no" -FILES+= accounting +FILESGROUPS+= ACCT +ACCT+= accounting .endif .if ${MK_ACPI} != "no" @@ -148,7 +149,8 @@ FILES+= powerd .endif .if ${MK_AMD} != "no" -FILES+= amd +FILESGROUPS+= AMD +AMD+= amd .endif .if ${MK_APM} != "no" @@ -300,6 +302,10 @@ ACPIDIR= /etc/rc.d ACPIMODE= ${BINMODE} ACPIPACKAGE= acpi +AMDDIR= /etc/rc.d +AMDMODE= ${BINMODE} +AMDPACKAGE= amd + SSHDIR= /etc/rc.d SSHMODE= ${BINMODE} SSHPACKAGE= ssh @@ -312,4 +318,8 @@ JAILDIR= /etc/rc.d JAILMODE= ${BINMODE} JAILPACKAGE= jail +ACCTDIR= /etc/rc.d +ACCTMODE= ${BINMODE} +ACCTPACKAGE= acct + .include <bsd.prog.mk> |