diff options
author | Ben Kohler <bkohler@gentoo.org> | 2019-09-08 13:06:37 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2019-09-08 13:07:09 -0500 |
commit | b3e776ba071471f8af0067fcc71bba43492b9139 (patch) | |
tree | 68ef6bbaf7f9bb4ceb7092e3320bf3fea0cb0345 /eclass/tmpfiles.eclass | |
parent | udev.eclass: minor @USAGE fixes (diff) | |
download | gentoo-b3e776ba071471f8af0067fcc71bba43492b9139.tar.gz gentoo-b3e776ba071471f8af0067fcc71bba43492b9139.tar.bz2 gentoo-b3e776ba071471f8af0067fcc71bba43492b9139.zip |
tmpfiles.eclass: fix @USAGE to not include function names
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'eclass/tmpfiles.eclass')
-rw-r--r-- | eclass/tmpfiles.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass index 68478ffbcd69..360c5e3b816f 100644 --- a/eclass/tmpfiles.eclass +++ b/eclass/tmpfiles.eclass @@ -63,7 +63,7 @@ esac RDEPEND="virtual/tmpfiles" # @FUNCTION: dotmpfiles -# @USAGE: dotmpfiles <tmpfiles.d_file> ... +# @USAGE: <tmpfiles.d_file> ... # @DESCRIPTION: # Install one or more tmpfiles.d files into /usr/lib/tmpfiles.d. dotmpfiles() { @@ -84,7 +84,7 @@ dotmpfiles() { } # @FUNCTION: newtmpfiles -# @USAGE: newtmpfiles <old-name> <new-name>.conf +# @USAGE: <old-name> <new-name>.conf # @DESCRIPTION: # Install a tmpfiles.d file in /usr/lib/tmpfiles.d under a new name. newtmpfiles() { @@ -102,7 +102,7 @@ newtmpfiles() { } # @FUNCTION: tmpfiles_process -# @USAGE: tmpfiles_process <filename> <filename> ... +# @USAGE: <filename> <filename> ... # @DESCRIPTION: # Call a tmpfiles.d implementation to create new volatile and temporary # files and directories. |