summaryrefslogtreecommitdiff
path: root/nylon/nylon-scripts_cvs.oe
blob: 113470dbc6e6a1308e8963d7c71545d33fb88747 (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
DESCRIPTION = "This package provides the mtx specific init and configuration scripts."
DEPENDS = "hostap-utils"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
LICENSE = "GPL"
PR = "r1"

SRC_URI = "svn://meshcube.org/svn/scripts;module=${PN}"
S = "${WORKDIR}/${PN}"

do_install() {
	(cd ${S}; tar -c --exclude .svn -f - . ) | tar -C ${D} -xpf -
}

pkg_postinst() {
#!/bin/sh
update-rc.d hostap defaults 15
update-rc.d ipaliases defaults 16
update-rc.d firewall defaults 20
update-rc.d routing defaults 20
update-rc.d dummydate start 50 S . stop 50 0 6 .
update-rc.d emergency-ip defaults 99
}

pkg_postrm() {
#!/bin/sh -e
update-rc.d ipaliases remove
update-rc.d firewall remove
update-rc.d hostap remove
update-rc.d routing remove
update-rc.d dummydate remove
update-rc.d emergency-ip remove
}