forked from ungleich-public/cdist
finish conf/types/__file/explorers/md5sum
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
0c0209e83b
commit
2e266cfe3a
1 changed files with 6 additions and 30 deletions
|
@ -18,44 +18,20 @@
|
|||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
# __file is a very basic type and should be able to be used as an
|
||||
# example for typewrites later
|
||||
# Retrieve the md5sum of a file to be created, if it is already existing.
|
||||
#
|
||||
|
||||
################################################################################
|
||||
# New code
|
||||
#
|
||||
|
||||
exit 1
|
||||
################################################################################
|
||||
# Old code
|
||||
#
|
||||
|
||||
type="$(cat type)"
|
||||
|
||||
# If destination was specified, do not use the id
|
||||
if [ -f destination ]; then
|
||||
destination="$(cat destination)"
|
||||
if [ -f parameters/destination ]; then
|
||||
destination="$(cat parameters/destination)"
|
||||
else
|
||||
destination="$1"
|
||||
fi
|
||||
|
||||
case "$type" in
|
||||
directory)
|
||||
echo mkdir \"$destination\"
|
||||
;;
|
||||
|
||||
file)
|
||||
echo touch \"$destination\"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unsupported type: \"$type\"" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -f mode ]; then
|
||||
mode="$(cat mode)"
|
||||
echo chmod \"$mode\" \"$destination\"
|
||||
# No output if file does not exist - does definitely not match the md5sum :-)
|
||||
if [ -e "$destination" ]; then
|
||||
md5sum "$destination"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue