aboutsummaryrefslogtreecommitdiffstats
path: root/src/testdinit
blob: a650099133f2ec841d206c4cf4ba57d7c6e6054e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
#
# lpd           This shell script takes care of starting and stopping
#               lpd (printer daemon).
#

# Source function library.
. /etc/init.d/functions

# See how we were called.
case "$1" in
  start)
        # Start daemons.
        echo -n $"Starting testd: "
        testd &
        echo
        touch /var/lock/subsys/testd
        ;;
  stop)
        # Stop daemons.
        echo -n $"Shutting down testd: "
	killproc testd
        echo
        rm -f /var/lock/subsys/testd
        ;;
  status)
	# Am I alive?
	status testd
	exit $?
        ;;
  restart)
	echo -n $"Shutting down testd: "
	killproc testd
	echo
	echo -n $"Starting testd: "
	testd &
	echo
	;;
  *)
        echo $"Usage: testd {start|stop|status|restart}"
        exit 1
esac

exit 0
og/perl-install/interactive.pm'>
path: root/perl-install/interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-22 13:11:58 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-22 13:11:58 +0000
commita355859ef5e310f497853b17f514c89df1e2a637 (patch)
treeef051ceb69560979a9e1ad1f88abad906fa83600 /perl-install/interactive.pm
parent820f0817e6936790511d37405ebff6766be47be9 (diff)
downloaddrakx-a355859ef5e310f497853b17f514c89df1e2a637.tar
drakx-a355859ef5e310f497853b17f514c89df1e2a637.tar.gz
drakx-a355859ef5e310f497853b17f514c89df1e2a637.tar.bz2
drakx-a355859ef5e310f497853b17f514c89df1e2a637.tar.xz
drakx-a355859ef5e310f497853b17f514c89df1e2a637.zip
(create_widgets_block) add support for new 'do_not_expand' parameter
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r--perl-install/interactive.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index 0fc9a4b55..529d5b29a 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -45,6 +45,7 @@ use do_pkgs;
#- validate => function called when "Ok" is pressed. If it returns false, this entry is focused, otherwise it quits
#- disabled => function returning wether it should be disabled (grayed)
#- focus => function returning wether it should be focused
+#- do_not_expand => do not eat all horizontal space
#- gtk => gtk preferences
#- type =>
#- button => (with clicked or clicked_may_quit)