Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 95729

Summary: net-misc/rdate init script patch
Product: Gentoo Linux Reporter: antoine marmignon <antoine.marmignon>
Component: New packagesAssignee: Robin Johnson <robbat2>
Status: RESOLVED INVALID    
Severity: trivial    
Priority: High    
Version: unspecified   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: rdate-initd.patch

Description antoine marmignon 2005-06-10 16:00:11 UTC
Trivial patch to correct an error in the current rdate init script.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 antoine marmignon 2005-06-10 16:00:41 UTC
Created attachment 61024 [details, diff]
rdate-initd.patch
Comment 2 Robin Johnson archtester Gentoo Infrastructure gentoo-dev Security 2005-07-03 11:32:50 UTC
no, your patch is wrong.
I want to background this entire task:
(sleep 30s ; kill ) &
NOT this:
( sleep 30s; kill & )

as that would cause a 30 second delay in the startup, and then background the 
kill only.