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
Line 
1#!/bin/bash
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
12PACKAGE=invirt-xen-config
13NAME="$PACKAGE"
14DESC="Invirt Xen host"
15GEN_FILES=(/etc/xen/xend-config.sxp.invirt)
16
17dpkg -s "$PACKAGE" >/dev/null 2>/dev/null || exit 0
18
19. /lib/init/gen-files.sh
20. /lib/init/std-init.sh
21
22do_startup() {
23    gen_files
24   
25    echo 1 >/proc/sys/net/ipv4/ip_forward
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
29    done
30}
31
32do_start() {
33    do_startup "start"
34    xm sched-credit -d 0 -w 512
35}
36
37do_reload() {
38    do_startup "reload"
39}
40
41do_stop() {
42    :
43}
44
45std_init "$1"
Note: See TracBrowser for help on using the repository browser.