View Single Post
  #1   (View Single Post)  
Old 4th November 2010
shep shep is offline
Real Name: Scott
Arp Constable
 
Join Date: May 2008
Location: Dry and Dusty
Posts: 1,503
Default Current Gnome 2.32 rc.d Startup scripts

It looks like the startup scripts for cups, gdm etc have been modified but I can not find any documentation on how to implement the script.

Quote:
2010-10-29 06:54:44 by Antoine Jacoutot | Files touched by this commit (28)

Log message:
Add RCS IDs to rc scripts.

2010-10-28 06:15:13 by Steven Mestdagh | Files touched by this commit (1)

Log message:
add comment indicating reason for gnu libtool

2010-10-28 05:01:18 by Antoine Jacoutot | Files touched by this commit (4)

Log message:
Add an rc script for gdm.
ok robert@
In Slackware one makes the script executable in /etc/rc.d. In FreeBSD one enables the script in rc.conf

Anyone have insight into how to enable avahi, cups, dbus and gdm?

This is the new, modified rc.local script
Quote:
# $OpenBSD: rc.local,v 1.40 2010/10/26 20:56:03 robert Exp $

# Site-specific startup actions, daemons, and other things which
# can be done AFTER your system goes into securemode. For actions
# which should be done BEFORE your system has gone into securemode
# please see /etc/rc.securelevel.

echo -n 'starting local daemons:'

for _r in $rc_scripts; do
[ -x /etc/rc.d/${_r} ] && /etc/rc.d/${_r} start && echo -n " ${_r}"
done
It looks like it reads the string rc_scripts which I cannot find in /etc

The entries in /etc/rc.d
Quote:
# cd /etc/rc.d
# less
Missing filename ("less --help" for help)
# ls
avahi_daemon cupsd gdm rc.subr saslauthd
avahi_dnsconfd dbus_daemon mpd saned

Thanks in advance

Last edited by shep; 4th November 2010 at 11:05 PM. Reason: added more info
Reply With Quote