~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to examples/config/usrmgt-server.init

  • Committer: mattgiuca
  • Date: 2008-01-31 01:44:30 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:345
Global CSS change: ivlebody no longer has 1em of padding (it has none).
This is because most apps were disabling it (and it had to change anyway for
other reasons -- see below).

Hence, all apps which WERE disabling the padding have had that removed, and
just work by default. (console, browser, tutorial)
All apps which WEREN'T disabling the padding (very few) now have to manually
include an extra div. This has been done on all such apps, and has been
heavily documented (both in the CSS file and doc/app_howto). (help, dummy,
debuginfo).

media/common/ivle.css: 
    The real change here (which isn't yet being used) is that ivlebody is now
    positioned absolutely and takes up all the space on the canvas. This is
    to be used for full-page layouts in console and browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
 
3
 
# Works for Ubuntu. Check before using on other distributions
4
 
 
5
 
### BEGIN INIT INFO
6
 
# Provides:          usrmgt-server
7
 
# Required-Start:    $syslog $networking $urandom
8
 
# Required-Stop:     $syslog
9
 
# Default-Start:     2 3 4 5
10
 
# Default-Stop:      1
11
 
# Short-Description: IVLE user management server
12
 
# Description:       Daemon connecting to the IVLE user management database.
13
 
### END INIT INFO
14
 
 
15
 
PATH=/sbin:/bin:/usr/sbin:/usr/bin
16
 
DESC="IVLE user management server"
17
 
NAME=usrmgt-server
18
 
DAEMON=/usr/local/share/ivle/services/$NAME
19
 
SCRIPTNAME=/etc/init.d/usrmgt-server
20
 
 
21
 
test -f $DAEMON || exit 0
22
 
 
23
 
. /lib/lsb/init-functions
24
 
 
25
 
case "$1" in
26
 
  start)
27
 
        log_daemon_msg "Starting $DESC" "$NAME"
28
 
        start_daemon $DAEMON
29
 
        log_end_msg $?
30
 
    ;;
31
 
  stop)
32
 
        log_daemon_msg "Stopping $DESC" "$NAME"
33
 
        killproc $DAEMON
34
 
        log_end_msg $?
35
 
    ;;
36
 
  force-reload|restart)
37
 
    $0 stop
38
 
    $0 start
39
 
    ;;
40
 
  status)
41
 
    status_of_proc $DAEMON usrmgt-server && exit 0 || exit $?
42
 
    ;;
43
 
  *)
44
 
    echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}"
45
 
    exit 1
46
 
    ;;
47
 
esac
48
 
 
49
 
exit 0