forked from ungleich-public/cdist
begin cleanup
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
bc6201102e
commit
f5c2ae3049
4 changed files with 0 additions and 166 deletions
|
@ -1,39 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# 2010 Nico Schottelius (nico-cdist at schottelius.org)
|
|
||||||
#
|
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# Let's build a cconfig tree from a configuration
|
|
||||||
# And save it into the cache tree
|
|
||||||
#
|
|
||||||
|
|
||||||
. cdist-config
|
|
||||||
[ $# -eq 1 ] || __cdist_usage "<target host>"
|
|
||||||
set -u
|
|
||||||
|
|
||||||
__cdist_target_host="$1"; shift
|
|
||||||
|
|
||||||
# Create base to move into
|
|
||||||
mkdir -p "${__cdist_local_base_cache_dir}"
|
|
||||||
|
|
||||||
# Now determine absolute path
|
|
||||||
__cdist_ddir="$(__cdist_host_cache_dir "$__cdist_target_host")"
|
|
||||||
|
|
||||||
__cdist_echo info "Saving cache to $__cdist_ddir "
|
|
||||||
rm -rf "$__cdist_ddir"
|
|
||||||
mv "$__cdist_local_base_dir" "$__cdist_ddir"
|
|
|
@ -1,51 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
|
|
||||||
#
|
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# Push a directory to a target, both sides have the same name (i.e. explorers)
|
|
||||||
# or
|
|
||||||
# Pull a directory from a target, both sides have the same name (i.e. explorers)
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
. cdist-config
|
|
||||||
[ $# -eq 4 ] || __cdist_usage "<push|pull> <target host> <src dir> <dst dir>"
|
|
||||||
set -ue
|
|
||||||
|
|
||||||
__cdist_action="$1"; shift
|
|
||||||
__cdist_target_host="$1"; shift
|
|
||||||
__cdist_src_dir="$1"; shift
|
|
||||||
__cdist_dst_dir="$1"; shift
|
|
||||||
|
|
||||||
# This will be the destination directory, so no subdirectories
|
|
||||||
# of the same name are created, if the directory is already existing
|
|
||||||
__cdist_top_dir="${__cdist_dst_dir%/*}"
|
|
||||||
|
|
||||||
if [ "$__cdist_action" = "push" ]; then
|
|
||||||
ssh "${__cdist_remote_user}@${__cdist_target_host}" \
|
|
||||||
"mkdir -p \"${__cdist_dst_dir}\""
|
|
||||||
scp -qr "$__cdist_src_dir" \
|
|
||||||
"${__cdist_remote_user}@${__cdist_target_host}:${__cdist_top_dir}"
|
|
||||||
elif [ "$__cdist_action" = "pull" ]; then
|
|
||||||
mkdir -p "${__cdist_dst_dir}"
|
|
||||||
scp -qr "${__cdist_remote_user}@${__cdist_target_host}:${__cdist_src_dir}" \
|
|
||||||
"${__cdist_top_dir}"
|
|
||||||
else
|
|
||||||
__cdist_exit_err "Unknown action $__cdist_action"
|
|
||||||
fi
|
|
|
@ -1,33 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
|
|
||||||
#
|
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# Run a cdist binary on the remote side
|
|
||||||
#
|
|
||||||
|
|
||||||
. cdist-config
|
|
||||||
[ $# -ge 2 ] || __cdist_usage "<target_host> <binary> [opts]"
|
|
||||||
set -ue
|
|
||||||
|
|
||||||
__cdist_target_host="$1"; shift
|
|
||||||
|
|
||||||
ssh "${__cdist_remote_user}@${__cdist_target_host}" \
|
|
||||||
"export PATH=\"${__cdist_remote_bin_dir}:\$PATH\";" \
|
|
||||||
"export __cdist_out_object_dir=\"$__cdist_remote_out_object_dir\";" \
|
|
||||||
"$@"
|
|
|
@ -1,43 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# 2010-2011 Nico Schottelius (nico-cdist at schottelius.org)
|
|
||||||
#
|
|
||||||
# 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/>.
|
|
||||||
#
|
|
||||||
# Build pseudo binaries for type emulation
|
|
||||||
#
|
|
||||||
|
|
||||||
. cdist-config
|
|
||||||
[ $# -eq 1 ] || __cdist_usage "<out dir>"
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
__cdist_output_dir="$1"; shift
|
|
||||||
|
|
||||||
__cdist_type_emulator="$__cdist_abs_mydir/cdist-type-emulator"
|
|
||||||
|
|
||||||
if [ ! -d "${__cdist_type_dir}" ]; then
|
|
||||||
__cdist_exit_err "$__cdist_type_dir must exist and contain available types"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Get Types
|
|
||||||
cd "${__cdist_type_dir}"
|
|
||||||
ls -1 > "${__cdist_tmp_file}"
|
|
||||||
|
|
||||||
# Create binaries
|
|
||||||
mkdir -p "${__cdist_output_dir}"
|
|
||||||
while read type; do
|
|
||||||
ln -sf "${__cdist_type_emulator}" "${__cdist_output_dir}/${type}"
|
|
||||||
done < "${__cdist_tmp_file}"
|
|
Loading…
Reference in a new issue