21 lines
516 B
Plaintext
21 lines
516 B
Plaintext
|
# -*- Mode: makefile; indent-tabs-mode: t -*- */
|
||
|
# RPM macros for packages creating system accounts
|
||
|
#
|
||
|
###
|
||
|
#
|
||
|
# When a package creates a system account, it should use the following macros:
|
||
|
#
|
||
|
# add %sysusers_requires in the package section
|
||
|
#
|
||
|
# add "%sysusers_generate_pre <source file> <account>" to build section
|
||
|
#
|
||
|
# add "%pre -f <account>.pre" to spec file
|
||
|
#
|
||
|
###
|
||
|
|
||
|
# This is for systemctl
|
||
|
%sysusers_requires Requires(pre): systemd
|
||
|
|
||
|
%sysusers_generate_pre() \
|
||
|
%{_prefix}/lib/rpm/sysusers-generate-pre "%1" > "%2".pre
|