source: trunk/packages/invirt-xen-config/debian/invirt-xen-config.init @ 2936

Last change on this file since 2936 was 2936, checked in by broder, 14 years ago

Actually kill any references to PARENTPACKAGE in invirt-xen-config.

  • Property svn:executable set to *
File size: 895 bytes
RevLine 
[1275]1#!/bin/bash
[1257]2### BEGIN INIT INFO
3# Provides:          invirt-xen-config
4# Required-Start:    $local_fs $remote_fs
5# Required-Stop:     $local_fs $remote_fs
6# Default-Start:     2 3 4 5
7# Default-Stop:      0 1 6
8# Short-Description: Startup script for the Invirt Xen host
9# Description:       
10### END INIT INFO
11
[1261]12PACKAGE=invirt-xen-config
[1275]13NAME="$PACKAGE"
[1280]14DESC="Invirt Xen host"
[2087]15GEN_FILES=(/etc/xen/xend-config.sxp.invirt)
[1257]16
[1261]17dpkg -s "$PACKAGE" >/dev/null 2>/dev/null || exit 0
18
19. /lib/init/gen-files.sh
20. /lib/init/std-init.sh
21
[1275]22do_startup() {
[1261]23    gen_files
24   
[1257]25    echo 1 >/proc/sys/net/ipv4/ip_forward
[1261]26    for i in all default; do
27        echo 1 >/proc/sys/net/ipv4/conf/$i/rp_filter
28        echo 1 >/proc/sys/net/ipv4/conf/$i/proxy_arp
[1257]29    done
[1261]30}
31
[1275]32do_start() {
33    do_startup "start"
[2857]34    xm sched-credit -d 0 -w 512
[1275]35}
36
[1261]37do_reload() {
[1275]38    do_startup "reload"
[1261]39}
40
41do_stop() {
[2936]42    :
[1261]43}
44
45std_init "$1"
Note: See TracBrowser for help on using the repository browser.