mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
5d8dc28060
device names of "sd[bcde]" in addition to "/dev/sd[bcde]". Until recently EC2 hosts all used the latter form, but an increasing number seem to have switched to the former. Submitted by: Luke Marsden
29 lines
594 B
Makefile
29 lines
594 B
Makefile
# Created by: Colin Percival
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ec2-scripts
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://freebsd-ec2-dist.s3.amazonaws.com/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= cperciva@FreeBSD.org
|
|
COMMENT= Startup scripts for FreeBSD/EC2 environment
|
|
|
|
NO_BUILD= YES
|
|
NO_INSTALL= YES
|
|
|
|
RC_SCRIPTS= ec2_bootmail ec2_ephemeralswap ec2_fetchkey \
|
|
ec2_firstboot ec2_loghostkey panicmail
|
|
|
|
.for i in ${RC_SCRIPTS}
|
|
PLIST_FILES+= etc/rc.d/$i
|
|
.endfor
|
|
|
|
post-install:
|
|
@for i in ${RC_SCRIPTS}; do \
|
|
${INSTALL_SCRIPT} ${WRKSRC}/$${i} ${PREFIX}/etc/rc.d/$${i}; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|