Bug 143935

Summary: cups-config-daemon running during anaconda
Product: [Fedora] Fedora Reporter: Warren Togami <wtogami>
Component: hal-cups-utilsAssignee: John (J5) Palmieri <johnp>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: jkeck
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-03-19 00:25:38 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Warren Togami 2005-01-01 23:23:29 UTC
Description of problem:
I noticed that cups-config-daemon was running during anaconda.  This
is only a minor problem in using system resources (mainly RAM), and it
is useless while running during installation.

%post
/sbin/chkconfig --add cups-config-daemon

if [ $1 -eq 1 ]; then
        /sbin/service cups-config-daemon start > /dev/null 2>&1
else
        /sbin/service cups-config-daemon condrestart > /dev/null 2>&1
fi

It really shouldn't start the service here.  Other services don't work
this way.  They should be added using chkconfig, and it will start
automatically during boot.

Comment 1 Warren Togami 2005-03-19 00:25:38 UTC
Doh, you fixed this last month.