Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 702508 | Differences between
and this patch

Collapse All | Expand All

(-)a/ebuild-writing/users-and-groups/text.xml (-11 / +12 lines)
Lines 34-42 and must not be used for new packages. Link Here
34
<body>
34
<body>
35
35
36
<p>
36
<p>
37
Group ebuilds are placed in <c>acct-group</c> category, with the package name
37
Group ebuilds are placed in <c>acct-group</c> category, with the
38
matching the group name.  The following can be used as a template for writing
38
package name matching the group name.  The following ebuild for
39
group ebuilds:
39
<c>acct-group/suricata</c> can be used as a template for writing group
40
ebuilds:
40
</p>
41
</p>
41
42
42
<pre>
43
<pre>
Lines 47-54 EAPI=7 Link Here
47
48
48
inherit acct-group
49
inherit acct-group
49
50
50
DESCRIPTION="Meaningful description of the group"
51
DESCRIPTION="Group for Suricata IDS"
51
ACCT_GROUP_ID=123456
52
ACCT_GROUP_ID=477
52
</pre>
53
</pre>
53
54
54
<p>
55
<p>
Lines 63-71 ACCT_GROUP_ID=123456 Link Here
63
<body>
64
<body>
64
65
65
<p>
66
<p>
66
User ebuilds are placed in <c>acct-user</c> category, with the package name
67
User ebuilds are placed in <c>acct-user</c> category, with the package
67
matching the user name.  The following can be used as a template for writing
68
name matching the user name.  The following ebuild for
68
user ebuilds:
69
<c>acct-user/suricata</c> can be used as a template for writing user
70
ebuilds:
69
</p>
71
</p>
70
72
71
<pre>
73
<pre>
Lines 76-83 EAPI=7 Link Here
76
78
77
inherit acct-user
79
inherit acct-user
78
80
79
DESCRIPTION="Meaningful description of the user"
81
DESCRIPTION="User for Suricata IDS"
80
ACCT_USER_ID=123456
82
ACCT_USER_ID=477
81
ACCT_USER_GROUPS=( "${PN}" )
83
ACCT_USER_GROUPS=( "${PN}" )
82
84
83
acct-user_add_deps
85
acct-user_add_deps
84
- 

Return to bug 702508