Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 95729 - net-misc/rdate init script patch
Summary: net-misc/rdate init script patch
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High trivial (vote)
Assignee: Robin Johnson
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-10 16:00 UTC by antoine marmignon
Modified: 2005-07-03 11:32 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
rdate-initd.patch (rdate-initd.patch,446 bytes, patch)
2005-06-10 16:00 UTC, antoine marmignon
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.