cdist/lib/types/file/manifest

14 lines
204 B
Plaintext
Raw Normal View History

#!/bin/sh
case "$__arg_type" in
directory)
if [ "$__arg_mode" ]; then
echo mkdir -m \"$__arg_mode\" \"$__arg_path\"
else
echo mkdir \"$__arg_path\"
fi
;;
esac