~ubuntu-branches/ubuntu/vivid/oss-preserve/vivid

« back to all changes in this revision

Viewing changes to debian/init.d

  • Committer: Bazaar Package Importer
  • Author(s): Chris Hanson
  • Date: 2002-02-07 16:00:30 UTC
  • Revision ID: james.westby@ubuntu.com-20020207160030-0jo8dw67nb27qj6p
Tags: 1.1-2
Add "Conflicts: aumix" to resolve interaction problems.
(closes: Bug#132795)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# $Id: init.d,v 1.5 2001/04/12 15:32:55 cph Exp $
 
4
#
 
5
# Copyright (c) 2001 Hewlett-Packard Company
 
6
#
 
7
# This program is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2 of the License, or (at
 
10
# your option) any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful, but
 
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
# General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program; if not, write to the Free Software
 
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 
20
# USA.
 
21
 
 
22
set -e
 
23
 
 
24
OSSCTL="/usr/lib/oss-preserve/ossctl"
 
25
FIXED="/etc/default/oss-preserve"
 
26
PREVIOUS="/var/state/oss-preserve/settings"
 
27
 
 
28
[ -x "${OSSCTL}" ] || exit 0
 
29
 
 
30
case "$1" in
 
31
start)
 
32
    SETTINGS=""
 
33
    if [ -s "${FIXED}" ]; then
 
34
        SETTINGS="${FIXED}"
 
35
    elif [ -s "${PREVIOUS}" ]; then
 
36
        SETTINGS="${PREVIOUS}"
 
37
    fi
 
38
    if [ -n "${SETTINGS}" ]; then
 
39
        echo -n "Restoring OSS mixer settings..."
 
40
        "${OSSCTL}" restore < "${SETTINGS}"
 
41
        echo "done."
 
42
    fi
 
43
    ;;
 
44
stop)
 
45
    echo -n "Saving OSS mixer settings..."
 
46
    "${OSSCTL}" save > "${PREVIOUS}"
 
47
    echo "done."
 
48
    ;;
 
49
restart|force-reload)
 
50
    $0 stop
 
51
    $0 start
 
52
    ;;
 
53
*)
 
54
    echo "Usage: $0 {start|stop|restart|force-reload}"
 
55
    exit 1
 
56
    ;;
 
57
esac
 
58
 
 
59
exit 0