~ubuntu-branches/debian/squeeze/irqbalance/squeeze

« back to all changes in this revision

Viewing changes to debian/irqbalance.config

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2005-03-11 01:10:43 UTC
  • Revision ID: james.westby@ubuntu.com-20050311011043-gg40dmpjnyaa837k
Tags: 0.12-2
debian/po/cs.po: Czech debconf translation from Miroslav
Kure. (Closes: #298320)

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