From 85859125e54e10e0aaa9cf769daecfce5c3aa696 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Thu, 1 Oct 2015 14:34:08 +0000 Subject: [PATCH] Add "arguments" to the list of available directives for keywords files, introduced in pkg 1.6. Reviewed by: brd, wblock Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3755 --- .../books/porters-handbook/plist/chapter.xml | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml index 5ecbbd88ac..4766940049 100644 --- a/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml @@ -794,6 +794,33 @@ etc/orbit.conf-dist + + arguments + + + If set to true, adds argument + handling, splitting the whole line, %@, + into numbered arguments, %1, + %2, and so on. For example, for this + line: + + @foo some.content other.content + + %1 and %2 + will contain: + + some.content +other.content + + It also affects how the action + entry works. When there is more than one argument, the + argument number must be specified. For example: + + actions: [file(1)] + + + pre-install post-install