in theory, finish __file/gencode (with debug)
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
45429c2ca0
commit
918bb8bb5a
1 changed files with 34 additions and 13 deletions
|
@ -40,8 +40,28 @@ if ! $(echo "$destination" | grep -q ^/); then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# FIXME: Add file copying part here
|
# Copy source if existing
|
||||||
|
if [ -f "$__object/parameter/source" ]; then
|
||||||
|
source="$(cat "$__object/parameter/source")"
|
||||||
|
|
||||||
|
exec 3>&1
|
||||||
|
exec 1>&2
|
||||||
|
|
||||||
|
set -x
|
||||||
|
md5sum="$(md5sum "$source")"
|
||||||
|
remote_md5sum="$(cat "$__object/explorer/md5sum")"
|
||||||
|
|
||||||
|
# Is md5sum the right approach?
|
||||||
|
if [ "$md5sum" != "$remote_md5sum" ]; then
|
||||||
|
# FIXME: This is ugly and hardcoded, replace after 1.0!
|
||||||
|
# Probably a better aproach is to have the user configured
|
||||||
|
# ~/.ssh/config to contain the right username
|
||||||
|
# Probably describe it in cdist-quickstart...
|
||||||
|
scp "$source" "root@${__target_host}:${destination}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# No source? Create empty file/dir
|
||||||
|
else
|
||||||
case "$type" in
|
case "$type" in
|
||||||
directory)
|
directory)
|
||||||
echo mkdir \"$destination\"
|
echo mkdir \"$destination\"
|
||||||
|
@ -56,6 +76,7 @@ case "$type" in
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f "$__object/parameter/mode" ]; then
|
if [ -f "$__object/parameter/mode" ]; then
|
||||||
mode="$(cat "$__object/parameters/mode")"
|
mode="$(cat "$__object/parameters/mode")"
|
||||||
|
|
Loading…
Reference in a new issue