From 42a859525652decb08bba47ffaceb769d394175e Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Mon, 2 Dec 2013 08:21:28 +0000 Subject: Please welcome casperd daemon. It (and its services) will be responsible for giving access to functionality that is not available in capability mode sandbox. The functionality can be precisely restricted. Start with the following services: - system.dns - provides API compatible to: - gethostbyname(3), - gethostbyname2(3), - gethostbyaddr(3), - getaddrinfo(3), - getnameinfo(3), - system.grp - provides getgrent(3)-compatible API, - system.pwd - provides getpwent(3)-compatible API, - system.random - allows to obtain entropy from /dev/random, - system.sysctl - provides sysctlbyname(3-compatible API. Sponsored by: The FreeBSD Foundation --- libexec/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libexec/Makefile') diff --git a/libexec/Makefile b/libexec/Makefile index cf5c12016c04f..e4781b82a7e91 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -6,6 +6,7 @@ SUBDIR= ${_atf} \ ${_atrun} \ bootpd \ + ${_casper} \ ${_comsat} \ fingerd \ ftpd \ @@ -38,6 +39,10 @@ SUBDIR= ${_atf} \ _atrun= atrun .endif +.if ${MK_CASPER} != "no" +_casper= casper +.endif + .if ${MK_MAIL} != "no" _comsat= comsat .endif -- cgit v1.3