in theory, finish __file/gencode (with debug)

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/1.0
Nico Schottelius 14 years ago
parent 45429c2ca0
commit 918bb8bb5a
  1. 53
      conf/type/__file/gencode

@ -40,22 +40,43 @@ if ! $(echo "$destination" | grep -q ^/); then
exit 1
fi
# FIXME: Add file copying part here
case "$type" in
directory)
echo mkdir \"$destination\"
;;
file)
echo touch \"$destination\"
;;
*)
echo "Unsupported type: \"$type\"" >&2
exit 1
;;
esac
# 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
directory)
echo mkdir \"$destination\"
;;
file)
echo touch \"$destination\"
;;
*)
echo "Unsupported type: \"$type\"" >&2
exit 1
;;
esac
fi
if [ -f "$__object/parameter/mode" ]; then
mode="$(cat "$__object/parameters/mode")"

Loading…
Cancel
Save