cdist/cdist/conf/type/__package_dpkg/gencode-local

58 lines
1.9 KiB
Plaintext
Raw Normal View History

2014-08-18 17:09:19 +00:00
#!/bin/sh
#
# 2013 Tomas Pospisek (tpo_deb sourcepole.ch)
#
# This file is based on cdist's __file/gencode-local and part of cdist.
#
# cdist is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cdist 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
#
# This __package_dpkg type does not check whether a *.deb package is
# allready installed. It just copies the *.deb package over to the
# destination and installs it. We could use __package_apt to check
# whether a *.deb package is allready installed and only install it
# if we're given a --force argument or similar (would be clever not
# to conflict with dpkg's --force options). But currently we don't
# do any checks or --force'ing.
#
local_package_path=$( cat "$__object/parameter/install" )
package=$( basename "$local_package_path" )
if [ ! -f "$local_package_path" ]; then
echo "Package \"$local_package_path\" does not exist." >&2
exit 1
fi
# upload package to temp directory
temp_dir="cdist.XXXXXXXXXX"
cat << DONE
destination_dir="\$($__remote_exec $__target_host "mktemp -d $temp_dir")"
DONE
cat << DONE
$__remote_copy $local_package_path ${__target_host}:\$destination_dir
DONE
# install package
echo "3" >&2
cat << DONE
$__remote_exec $__target_host "dpkg -i \"\$destination_dir/$package\""
DONE
# clean up: remove tmp_dir and contents on remote host
cat << DONE
$__remote_exec $__target_host "rm -rf \"\$destination_dir\""
DONE