head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2005.07.07.02.50.48;	author tcheun1;	state Exp;
branches;
next	;


desc
@@


1.1
log
@FC4 booyo-services
@
text
@#!/bin/bash
# /etc/rc.d/booyp-services

SERVICES="network apmd lm_sensors acpid iiim xfs messagebus haldaemon"

for subsys in $SERVICES ; do
        [ -f /var/lock/subsys/$subsys -o -f /var/lock/subsys/$subsys.init ] \
                && continue

        # If we're in confirmation mode, get user confirmation
        if [ -f /var/run/confirm ]; then
                confirm $subsys
                test $? = 1 && continue
        fi
	/etc/init.d/$subsys start
done
rm -f /var/run/confirm
@
