85 lines
2.4 KiB
Bash
Executable File
85 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Opsi Builder to automate the creation of Opsi packages for the Opsi Systen
|
|
# Copyright (C) 2012 Daniel Schwager
|
|
# Copyright (C) 2014 Mario Fetka
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# enabled debug
|
|
# set -x
|
|
|
|
#####################
|
|
# Controller
|
|
####################
|
|
builder_controller() {
|
|
local result
|
|
|
|
# read config
|
|
call_entry_point result config; (( $result == "0" )) || builder_config
|
|
|
|
# prepare
|
|
call_entry_point result prepare ; (( $result == "0" )) || builder_prepare
|
|
|
|
# download and process dist files
|
|
call_entry_point result retrieve; (( $result == "0" )) || builder_retrieve
|
|
|
|
# Create some special files
|
|
call_entry_point result create; (( $result == "0" )) || builder_create
|
|
|
|
# Start packaging
|
|
call_entry_point result package; (( $result == "0" )) || builder_package
|
|
|
|
# Upload to repos
|
|
call_entry_point result publish; (( $result == "0" )) || builder_publish
|
|
|
|
# git commit
|
|
call_entry_point result commit; (( $result == "0" )) || builder_commit
|
|
|
|
# cleanup
|
|
call_entry_point result cleanup; (( $result == "0" )) || builder_cleanup
|
|
}
|
|
|
|
####################
|
|
# Main
|
|
####################
|
|
# get the 'real' directory this program stored in (resolve symbolic links)
|
|
PRG=$(readlink -f $0)
|
|
BASEDIR=`dirname "$PRG"`
|
|
BASEDIR=`cd "$BASEDIR" && pwd`/..
|
|
|
|
# Parameters
|
|
PRODUCT_DIR=$1
|
|
TARGET=$2
|
|
|
|
# read libraries
|
|
. $BASEDIR/lib/builder-targets.sh
|
|
|
|
# check product directory
|
|
if [ -z ${PRODUCT_DIR} ]; then PRODUCT_DIR="`pwd`" ; fi
|
|
test -d $PRODUCT_DIR
|
|
builder_check_error "no opsi product directory specified: $PRODUCT_DIR"
|
|
|
|
# source additional, product dependent callback (cb) targets
|
|
if [ -f "$PRODUCT_DIR/builder-targets-cb.sh" ] ; then
|
|
. "$PRODUCT_DIR/builder-targets-cb.sh"
|
|
fi
|
|
|
|
# call main
|
|
builder_controller
|
|
|
|
# exit
|
|
exit 0
|
|
|