Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 145178 Details for
Bug 222019
Move X from inittab to a init script.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
dm initscript
dm (text/plain), 1.49 KB, created by
ritz
on 2007-01-09 17:10:39 UTC
(
hide
)
Description:
dm initscript
Filename:
MIME Type:
Creator:
ritz
Created:
2007-01-09 17:10:39 UTC
Size:
1.49 KB
patch
obsolete
>#!/bin/sh >#--------------------------------------------------------------- ># Project : Mandriva Linux ># Module : initscripts ># File : dm ># Version : $Id$ ># Author : Frederic Lepied ># Created On : Wed May 29 22:10:40 2002 >#--------------------------------------------------------------- ># chkconfig: 5 30 09 ># description: This startup script launches the graphical display manager. >#--------------------------------------------------------------- ># >### BEGIN INIT INFO ># Provides: dm ># Required-Start: xfs ># Should-Start: $network harddrake dkms acpid ># Default-Start: 5 ># Short-Description: Launches the graphical display manager ># Description: This startup script launches the graphical display manager. >### END INIT INFO > ># Source function library. >. /etc/rc.d/init.d/functions > >ret=0 > >case $1 in > start) > gprintf "Starting display manager: " > /etc/X11/prefdm & > success "Display manager startup" > ret=$? > echo > if [ $ret = 0 ]; then > touch /var/lock/subsys/dm > fi > ;; > > stop) > gprintf "Stopping display manager: " > killproc dm > ret=$? > if [ $ret = 0 ]; then > success "Display manager shutdown" > rm -f /var/lock/subsys/dm > else > failure "Display manager shutdown" > fi > echo > ;; > > status) > status dm > ;; > > reload) > ;; > > restart) > $0 stop > # give a chance to the X server to stop gracefully > sleep 5 > $0 start > ret=$? > ;; > *) > gprintf "Usage: %s\n" "$(basename $0) {start|stop|restart|status}" > exit 0 > ;; >esac > >exit $ret > ># dm ends here
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 222019
: 145178