2011-02-23 14:32:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2011-02-23 14:42:14 +00:00
|
|
|
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
|
2011-02-23 14:32:17 +00:00
|
|
|
#
|
|
|
|
# This file is 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/>.
|
|
|
|
#
|
|
|
|
#
|
2011-02-23 14:42:14 +00:00
|
|
|
# Push a directory to a target, both sides have the same name (i.e. explorers)
|
2011-02-23 14:50:33 +00:00
|
|
|
# or
|
|
|
|
# Pull a directory from a target, both sides have the same name (i.e. explorers)
|
2011-02-23 14:32:17 +00:00
|
|
|
#
|
|
|
|
|
2011-06-13 22:17:31 +00:00
|
|
|
__cdist_dir()
|
|
|
|
{
|
2011-06-13 22:28:08 +00:00
|
|
|
[ $# -eq 3 ] || __cdist_usage "<push|pull> <src dir> <dst dir>"
|
2011-02-23 14:32:17 +00:00
|
|
|
|
2011-08-10 14:03:12 +00:00
|
|
|
# ${3%/*} will be the destination directory, so no subdirectories
|
2011-06-13 22:17:31 +00:00
|
|
|
# of the same name are created, if the directory is already existing
|
2011-02-23 14:32:17 +00:00
|
|
|
|
2011-08-10 14:03:12 +00:00
|
|
|
if [ "$1" = "push" ]; then
|
|
|
|
# FIXME: add error handling with __cdist_run_remote_... or so
|
2011-06-13 22:17:31 +00:00
|
|
|
ssh "${__cdist_remote_user}@${__cdist_target_host}" \
|
2011-08-10 14:03:12 +00:00
|
|
|
"mkdir -p \"$3\""
|
|
|
|
scp -qr "$2" \
|
|
|
|
"${__cdist_remote_user}@${__cdist_target_host}:${3%/*}"
|
|
|
|
elif [ "$1" = "pull" ]; then
|
|
|
|
mkdir -p "$3"
|
|
|
|
scp -qr "${__cdist_remote_user}@${__cdist_target_host}:$2" \
|
|
|
|
"${3%/*}"
|
2011-06-13 22:17:31 +00:00
|
|
|
else
|
2011-08-10 14:03:12 +00:00
|
|
|
__cdist_exit_err "Unknown action $1"
|
2011-06-13 22:17:31 +00:00
|
|
|
fi
|
|
|
|
}
|