softmaker.textmakerviewer/builder-targets-cb.sh

31 lines
1.1 KiB
Bash
Raw Normal View History

2012-01-27 19:56:01 +01:00
##############################################################################
# This optional file "builder-targets-cb.sh" will be called by builder.sh
2012-01-28 22:35:35 +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
# cb_package_makeproductfile
2012-01-27 19:56:01 +01:00
#
2012-01-28 22:35:35 +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:
2012-01-27 19:56:01 +01:00
# target order: config, prepare, retrieve, create, package, publish, commit, cleanup
2012-01-28 22:35:35 +01:00
# callbacks: <none>
2012-01-27 19:56:01 +01:00
#
##############################################################################
function cleanup() {
2013-03-18 15:31:57 +01:00
echo "Cleanup"
2012-02-06 20:19:22 +01:00
builder_cleanup
2012-01-27 19:56:01 +01:00
}
2013-03-18 15:31:57 +01:00
function create() {
echo "Create"
builder_create
cp $INST_DIR/CLIENT_DATA/opsi-${PN}.ini $INST_DIR/CLIENT_DATA/tmv10config.ini
}