d35ae777f2
program allows users in the operator group to take filesystem snapshots. Its first use will be in support of `dump -L'. Approved by: Technical Review Board <trb@FreeBSD.org> Sponsored by: DARPA & NAI Labs.
15 lines
161 B
Makefile
15 lines
161 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mksnap_ffs
|
|
MAN= mksnap_ffs.8
|
|
|
|
.if defined(NOSUID)
|
|
BINMODE=550
|
|
.else
|
|
BINMODE=4550
|
|
BINOWN= root
|
|
.endif
|
|
BINGRP= operator
|
|
|
|
.include <bsd.prog.mk>
|