freenetis-github/application/vendors/deb/debianization.sh @ c2e44ab0
8baed187 | Michal Kliment | #!/bin/bash
|
|
################################################################################
|
|||
# Script for debianization of FreenetIS
|
|||
# (c) Ondrej Fibich, 2012
|
|||
#
|
|||
# Takes one or two arguments (version of package and package - if empty do it all)
|
|||
# and it generates all FreenetIS packages to directory deb_packages.
|
|||
#
|
|||
################################################################################
|
|||
if [ $# -lt 1 ]; then
|
|||
echo "Wrong arg count.. Terminating"
|
|||
exit 1
|
|||
fi
|
|||
NAMES=(freenetis freenetis-monitoring freenetis-redirection freenetis-ulogd freenetis-ssh-keys)
|
|||
c2e44ab0 | Michal Kliment | DEBIANS=(lenny squeeze wheezy)
|
|
8baed187 | Michal Kliment | VERSION=$1
|
|
c2e44ab0 | Michal Kliment | if [ $# -eq 2 ] || [ $# -eq 3 ]; then
|
|
8baed187 | Michal Kliment | NAMES=($2)
|
|
fi
|
|||
c2e44ab0 | Michal Kliment | if [ $# -eq 3 ]; then
|
|
DEBIANS=($3)
|
|||
fi
|
|||
8baed187 | Michal Kliment | # functions ####################################################################
|
|
function red_echo() {
|
|||
echo -e "\e[01;31m$1\e[0m"
|
|||
}
|
|||
function green_echo() {
|
|||
echo -e "\e[01;32m$1\e[0m"
|
|||
}
|
|||
# create dirs ##################################################################
|
|||
rm -rf deb_packages
|
|||
mkdir deb_packages
|
|||
# call all debianization utils #################################################
|
|||
for name in ${NAMES[*]}
|
|||
do
|
|||
c2e44ab0 | Michal Kliment | for debian in ${DEBIANS[*]}
|
|
do
|
|||
8baed187 | Michal Kliment | deb_sh=./$name/debianization.sh
|
|
if [ -f "$deb_sh" ]; then
|
|||
c2e44ab0 | Michal Kliment | ./$deb_sh "$VERSION" "$debian"
|
|
8baed187 | Michal Kliment | ||
if [ $? -eq 0 ]; then
|
|||
c2e44ab0 | Michal Kliment | green_echo ">>>> [$name+$debian] debianized"
|
|
8baed187 | Michal Kliment | else
|
|
c2e44ab0 | Michal Kliment | red_echo ">>>> [$name+$debian] an error occured during debianization"
|
|
8baed187 | Michal Kliment | fi
|
|
else
|
|||
c2e44ab0 | Michal Kliment | red_echo ">>>> [$name+$debian] not debianized (debianization utility is missing)"
|
|
8baed187 | Michal Kliment | fi
|
|
done
|
|||
c2e44ab0 | Michal Kliment | done
|