BTS

Issue275

Title provide initscript for kqemu
Priority wish Status wont-fix
Superseder Nosy List formorer, mika
Assigned To mika Topics

Created on 2007-09-01.20:20:56 by mika, last changed 2010-02-27.23:26:23 by mika.

Messages
msg3032 (view) Author: mika Date: 2010-02-27.23:26:23
kqemu is kind of deprecated nowadays, so closing this issue with "won't fix".
msg756 (view) Author: mika Date: 2007-09-01.20:20:55
Thanks for the feature request on the grml-mailinglist, Tong.

Something like the following (but use lsb-infrastructure instead of echo):

#!/bin/sh
case "$1" in
start)
  echo "Starting kqemu: "
  /sbin/modprobe kqemu major=0          load the kernel module
  mknod /dev/kqemu c 250 0              # create the device
  chmod 666 /dev/kqemu /dev/net/tun     # adjust permissions
  ;;
stop)
  echo "Stopping kqemu: "
  /sbin/rmmod kqemu
  ;;
restart)
  /sbin/modprobe kqemu major=0
  ;;
*)
  ;;
esac
History
Date User Action Args
2010-02-27 23:26:23mikasetstatus: in-progress -> wont-fix
nosy: formorer, mika
messages: + msg3032
2007-10-06 13:49:57mikasetassignedto: formorer -> mika
nosy: formorer, mika
2007-09-01 20:25:05formorersetstatus: unread -> in-progress
assignedto: formorer
nosy: + formorer
2007-09-01 20:20:56mikacreate