aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/files
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/files')
-rwxr-xr-xpackage/busybox/files/cron12
-rwxr-xr-xpackage/busybox/files/httpd13
-rwxr-xr-xpackage/busybox/files/telnet10
3 files changed, 35 insertions, 0 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
new file mode 100755
index 0000000000..e78d02332c
--- /dev/null
+++ b/package/busybox/files/cron
@@ -0,0 +1,12 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start () {
+ mkdir -p /var/spool/cron
+ [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
+ crond -c /etc/crontabs
+}
+
+stop() {
+ killall crond
+}
diff --git a/package/busybox/files/httpd b/package/busybox/files/httpd
new file mode 100755
index 0000000000..e4f5f48e9c
--- /dev/null
+++ b/package/busybox/files/httpd
@@ -0,0 +1,13 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+ include /lib/network
+ scan_interfaces
+ config_get ifname wan hostname
+ [ -d /www ] && httpd -p 80 -h /www -r ${hostname:-OpenWrt}
+}
+
+stop() {
+ killall httpd
+}
diff --git a/package/busybox/files/telnet b/package/busybox/files/telnet
new file mode 100755
index 0000000000..c994c6052f
--- /dev/null
+++ b/package/busybox/files/telnet
@@ -0,0 +1,10 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+ if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null && [ -x /usr/sbin/dropbear ]; then telnetd -l /bin/login; fi
+}
+
+stop() {
+ killall telnetd
+}