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 160150 Details for
Bug 249894
Yum-updatesd memory leak (10GB)
[?]
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.
/etc/rc.d/init.d/yum
yum (text/plain), 1.01 KB, created by
Nicholas, Crawford
on 2007-07-28 01:42:26 UTC
(
hide
)
Description:
/etc/rc.d/init.d/yum
Filename:
MIME Type:
Creator:
Nicholas, Crawford
Created:
2007-07-28 01:42:26 UTC
Size:
1.01 KB
patch
obsolete
>#!/bin/bash ># ># yum This shell script enables the automatic use of YUM ># ># Author: Seth Vidal <skvidal@phy.duke.edu> ># ># chkconfig: - 50 01 ># ># description: Enable daily run of yum, a program updater. ># processname: yum ># config: /etc/yum.conf ># > ># source function library >. /etc/rc.d/init.d/functions > >lockfile=/var/lock/subsys/yum > >RETVAL=0 > >start() { > echo -n $"Enabling nightly yum update: " > touch "$lockfile" && success || failure > RETVAL=$? > echo >} > >stop() { > echo -n $"Disabling nightly yum update: " > rm -f "$lockfile" && success || failure > RETVAL=$? > echo >} > >restart() { > stop > start >} > >case "$1" in > start) > start > ;; > stop) > stop > ;; > restart|force-reload) > restart > ;; > reload) > ;; > condrestart) > [ -f "$lockfile" ] && restart > ;; > status) > if [ -f $lockfile ]; then > echo $"Nightly yum update is enabled." > RETVAL=0 > else > echo $"Nightly yum update is disabled." > RETVAL=3 > fi > ;; > *) > echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}" > exit 1 >esac > >exit $RETVAL
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 249894
: 160150 |
160151