~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to utopic/etc/init.d/showfsck

  • Committer: Dimitri John Ledkov
  • Date: 2014-05-06 18:45:46 UTC
  • Revision ID: dimitri.ledkov@canonical.com-20140506184546-5toyx56xxrue0f0v
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This file was automatically customized by debmake on Sun, 23 Nov 2003 19:02:50 +0100
 
4
#
 
5
# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
 
6
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.org>.
 
7
# Modified for Debian by Christoph Lameter <clameter@debian.org>
 
8
 
 
9
PATH=/bin:/usr/bin:/sbin:/usr/sbin
 
10
DAEMON=/usr/sbin/showfsck
 
11
# The following value is extracted by debstd to figure out how to generate
 
12
# the postinst script. Edit the field to change the way the script is
 
13
# registered through update-rc.d (see the manpage for update-rc.d!)
 
14
FLAGS="defaults 95"
 
15
 
 
16
test -f $DAEMON || exit 0
 
17
 
 
18
case "$1" in
 
19
  start|stop|restart|force-reload)
 
20
    $DAEMON
 
21
    ;;
 
22
  *)
 
23
    echo "Usage: /etc/init.d/showfsck {start|stop|restart|force-reload}"
 
24
    exit 1
 
25
    ;;
 
26
esac
 
27
 
 
28
exit 0