forked from opnsense/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Framework: add keyword support for sample/shadow like in core
- Loading branch information
Showing
3 changed files
with
119 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# MAINTAINER: [email protected] | ||
# | ||
# @sample etc/somefile.conf.sample | ||
# or | ||
# @sample file1 file2 | ||
# | ||
# Where file1 is considered as a sample file and file2 the target file | ||
# | ||
# This will install the somefile.conf.sample and automatically copy to | ||
# somefile.conf if it doesn't exist. On deinstall it will remove the | ||
# somefile.conf if it still matches the sample, otherwise it is | ||
# kept. | ||
# | ||
# This replaces the old pattern: | ||
# @unexec if cmp -s %D/etc/pkgtools.conf %D/etc/pkgtools.conf.sample; then rm -f %D/etc/pkgtools.conf; fi | ||
# etc/pkgtools.conf.sample | ||
# @exec [ -f %B/pkgtools.conf ] || cp %B/%f %B/pkgtools.conf | ||
|
||
actions: [file(1)] | ||
arguments: true | ||
post-install: <<EOD | ||
case "%1" in | ||
/*) sample_file="%1" ;; | ||
*) sample_file="%D/%1" ;; | ||
esac | ||
target_file="${sample_file%.sample}" | ||
set -- %@ | ||
if [ $# -eq 2 ]; then | ||
target_file=${2} | ||
fi | ||
case "${target_file}" in | ||
/*) target_file="${target_file}" ;; | ||
*) target_file="%D/${target_file}" ;; | ||
esac | ||
if ! [ -f "${target_file}" ]; then | ||
/bin/cp -p "${sample_file}" "${target_file}" | ||
fi | ||
EOD | ||
pre-deinstall: <<EOD | ||
case "%1" in | ||
/*) sample_file="%1" ;; | ||
*) sample_file="%D/%1" ;; | ||
esac | ||
target_file="${sample_file%.sample}" | ||
set -- %@ | ||
if [ $# -eq 2 ]; then | ||
set -- %@ | ||
target_file=${2} | ||
fi | ||
case "${target_file}" in | ||
/*) target_file="${target_file}" ;; | ||
*) target_file="%D/${target_file}" ;; | ||
esac | ||
if cmp -s "${target_file}" "${sample_file}"; then | ||
rm -f "${target_file}" | ||
fi | ||
EOD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# MAINTAINER: [email protected] | ||
# | ||
# @shadow etc/somefile.conf.sample | ||
# or | ||
# @shadow file1 file2 | ||
# | ||
# Where file1 is considered as a sample file and file2 the target file | ||
# | ||
# This will install the somefile.conf.sample and automatically copy to | ||
# somefile.conf if it doesn't exist. On deinstall it will be removed. | ||
|
||
actions: [file(1)] | ||
arguments: true | ||
post-install: <<EOD | ||
case "%1" in | ||
/*) sample_file="%1" ;; | ||
*) sample_file="%D/%1" ;; | ||
esac | ||
target_file="${sample_file%.sample}" | ||
set -- %@ | ||
if [ $# -eq 2 ]; then | ||
target_file=${2} | ||
fi | ||
case "${target_file}" in | ||
/*) target_file="${target_file}" ;; | ||
*) target_file="%D/${target_file}" ;; | ||
esac | ||
if ! [ -f "${target_file}" ]; then | ||
/bin/cp -p "${sample_file}" "${target_file}" | ||
fi | ||
EOD | ||
pre-deinstall: <<EOD | ||
case "%1" in | ||
/*) sample_file="%1" ;; | ||
*) sample_file="%D/%1" ;; | ||
esac | ||
target_file="${sample_file%.sample}" | ||
set -- %@ | ||
if [ $# -eq 2 ]; then | ||
set -- %@ | ||
target_file=${2} | ||
fi | ||
case "${target_file}" in | ||
/*) target_file="${target_file}" ;; | ||
*) target_file="%D/${target_file}" ;; | ||
esac | ||
rm -f "${target_file}" | ||
EOD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters