Document @{pre,post}[un]exec in CHANGES

This commit is contained in:
Baptiste Daroussin 2015-09-26 00:17:08 +00:00
parent 55fd615a28
commit 3b24535f04
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=397911

12
CHANGES
View File

@ -10,6 +10,18 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
20150926
AUTHOR: bapt@FreeBSD.org
New keywords are supported in pkg since 1.5.x:
@preexec <command>: execute the <command> during pre-install scripts
@postexec <command>: execute the <command> during post-install scripts
@preunexec <command>: execute the <command> during pre-deinstall scripts
@postunexec <command>: execute the <command> during post-deinstall scripts
@exec does not specify when if should be executed and is now considered as
deprecated.
20150914:
AUTHOR: mat@FreeBSD.org