freebsd-dev/sbin/mksnap_ffs/Makefile
Kirk McKusick d35ae777f2 Add the mksnap_ffs command to the sbin directory. This setuid root
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.
2003-03-02 01:50:33 +00:00

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>