adobe.flashplayer/builder-targets-cb.sh

26 lines
963 B
Bash
Raw Permalink Normal View History

2012-03-15 14:22:16 +01:00
##############################################################################
# This optional file "builder-targets-cb.sh" will be called by builder.sh
#
2012-03-20 19:10:14 +01:00
# The targets will be called from thde opsi-builder using the following
# order: config, prepare, retrieve, create, package, publish, commit, cleanup
# You can overwrite the target functions in builder-targets-cb.sh
#
# You can define callback functions. The functions are called from
# opsi-builder within processing a target
2012-03-15 14:22:16 +01:00
# cb_package_makeproductfile
#
2012-03-20 19:10:14 +01:00
# You can use every variable defined in any configuration file or by
# the defined builder script itself. Also, calling the predefined
# targets builder_<targetname> is possible.
#
# Abstract:
# target order: config, prepare, retrieve, create, package, publish, commit, cleanup
# callbacks: <none>
#
2012-03-15 14:22:16 +01:00
##############################################################################
function cleanup() {
2012-03-20 19:10:14 +01:00
echo "Cleanup"
2012-03-15 14:22:16 +01:00
builder_cleanup
}