~ubuntu-server/ubuntu/lucid/irqbalance/0.55

« back to all changes in this revision

Viewing changes to debian/irqbalance.config

  • Committer: Chuck Short
  • Date: 2009-11-26 15:40:38 UTC
  • Revision ID: zulcss@ubuntu.com-20091126154038-l6qk8s7xfwlserm7
Inital irqbalance import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
. /usr/share/debconf/confmodule
 
4
db_version 2.0
 
5
 
 
6
CONF=/etc/default/irqbalance
 
7
 
 
8
if test -e $CONF; then
 
9
    . $CONF || true
 
10
    
 
11
    db_set irqbalance/enable ENABLE
 
12
    db_set irqbalance/oneshot ONESHOT
 
13
fi
 
14
 
 
15
db_input low irqbalance/enable || true
 
16
db_input medium irqbalance/oneshot || true
 
17
db_go || true
 
18
 
 
19
exit 0
 
20