Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 4632 - syntax minor problem in openssh-3.4_p1-r2.ebuild
Summary: syntax minor problem in openssh-3.4_p1-r2.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High trivial (vote)
Assignee: Brandon Low (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-07-06 20:15 UTC by Pau Oliva
Modified: 2003-02-04 19:42 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pau Oliva 2002-07-06 20:15:53 UTC
In line 74:

    useradd -u 22 -g sshd -s /dev/null -d /var/empty -c "sshd" sshd || \
        did "Failed to create sshd user"

should be

    useradd -u 22 -g sshd -s /dev/null -d /var/empty -c "sshd" sshd || \
        die "Failed to create sshd user"

HINT: s/did/die/g
Comment 1 Brandon Low (RETIRED) gentoo-dev 2002-07-08 11:22:57 UTC
thanks