aboutsummaryrefslogtreecommitdiffstats
path: root/ppp-dialin/ppp-dialin_0.1.oe
blob: cfffad4647aa7fdce7782e4290addefb417a0198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
SECTION = "console/network"
DESCRIPTION = "Enables PPP dial-in through a serial connection"
MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
DEPENDS = "ppp"
RDEPENDS = "ppp"
PR = "r1"

SRC_URI = "file://host-peer \
           file://ppp-dialin"

do_install() {
	install -d ${D}/${sysconfdir}/ppp/peers
	install -m 0644 ${WORKDIR}/host-peer ${D}/${sysconfdir}/ppp/peers/host

	install -d ${D}/${sbindir}
	install -m 0750 ${WORKDIR}/ppp-dialin ${D}/${sbindir}
}

pkg_postinst() {
if test "x$D" != "x"; then
	exit 1
else
	addgroup ppp
	adduser --system --home /dev/null --no-create-home --empty-password --ingroup ppp -s /usr/sbin/ppp-dialin ppp
	chgrp ppp /usr/sbin/ppp-dialin
	chmod u+s /usr/sbin/ppp-dialin
fi
}

pkg_postrm() {
if test "x$D" != "x"; then
	exit 1
else
	deluser ppp
	delgroup ppp
fi
}