fs

morpheus filesystem files
git clone git://git.2f30.org/fs
Log | Files | Refs

commit 98f97ca0e5b2fdea02f657c1795b7e7ccbbf160c
parent 282394359a9fdf4c0d780faf1184e3fe0f3bfee0
Author: sin <sin@2f30.org>
Date:   Thu, 13 Feb 2014 12:40:32 +0000

Remove rc.d

Diffstat:
Dbin/rc.d/dropbear | 19-------------------
Dbin/rc.d/network | 21---------------------
2 files changed, 0 insertions(+), 40 deletions(-)

diff --git a/bin/rc.d/dropbear b/bin/rc.d/dropbear @@ -1,19 +0,0 @@ -#!/bin/sh - -. /etc/rc.conf - -case "$1" in - -s) - dropbear -B - ;; - -k) - pkill dropbear - ;; - -r) - pkill dropbear - dropbear -B - ;; - *) - echo "usage: $0 [-s|-k|-r]" -esac -exit 0 diff --git a/bin/rc.d/network b/bin/rc.d/network @@ -1,21 +0,0 @@ -#!/bin/sh - -. /etc/rc.conf - -case "$1" in - -s) - ifconfig $INTERFACE up && sdhcp $INTERFACE - ;; - -k) - pkill sdhcp - ifconfig $INTERFACE down - ;; - -r) - pkill sdhcp - ifconfig $INTERFACE down - ifconfig $INTERFACE up && sdhcp $INTERFACE - ;; - *) - echo "usage: $0 [-s|-k|-r]" -esac -exit 0