From 6f447d09dfa4c4ee2321f327c5b62e79db3f9173 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 22 Nov 2006 23:06:40 +0000 Subject: move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5620 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/default/etc/init.d/cron | 12 ------------ package/base-files/default/etc/init.d/httpd | 13 ------------- package/base-files/default/etc/init.d/telnet | 10 ---------- 3 files changed, 35 deletions(-) delete mode 100755 package/base-files/default/etc/init.d/cron delete mode 100755 package/base-files/default/etc/init.d/httpd delete mode 100755 package/base-files/default/etc/init.d/telnet (limited to 'package/base-files/default/etc/init.d') diff --git a/package/base-files/default/etc/init.d/cron b/package/base-files/default/etc/init.d/cron deleted file mode 100755 index e78d02332..000000000 --- a/package/base-files/default/etc/init.d/cron +++ /dev/null @@ -1,12 +0,0 @@ -#!/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/base-files/default/etc/init.d/httpd b/package/base-files/default/etc/init.d/httpd deleted file mode 100755 index e4f5f48e9..000000000 --- a/package/base-files/default/etc/init.d/httpd +++ /dev/null @@ -1,13 +0,0 @@ -#!/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/base-files/default/etc/init.d/telnet b/package/base-files/default/etc/init.d/telnet deleted file mode 100755 index c994c6052..000000000 --- a/package/base-files/default/etc/init.d/telnet +++ /dev/null @@ -1,10 +0,0 @@ -#!/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 -} -- cgit v1.2.3