fix copy/paste error

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-04 22:56:24 +02:00
parent 9fd74acfac
commit 20241a0c5c

View file

@ -18,20 +18,20 @@
# along with cdist. If not, see <http://www.gnu.org/licenses/>. # along with cdist. If not, see <http://www.gnu.org/licenses/>.
# #
device="(cat "$__object/parameter/device")" device="$(cat "$__object/parameter/device")"
type="(cat "$__object/parameter/type")" type="$(cat "$__object/parameter/type")"
if [ "$type" = "swap" ]; then if [ "$type" = "swap" ]; then
echo "mkswap $device" echo "mkswap $device"
else else
command="mkfs -t $type" command="mkfs -t $type"
if [ -f "$__object/parameter/options" ]; then if [ -f "$__object/parameter/options" ]; then
options="(cat "$__object/parameter/options")" options="$(cat "$__object/parameter/options")"
command="$command -o '$options'" command="$command -o '$options'"
fi fi
command="$command $device" command="$command $device"
if [ -f "$__object/parameter/blocks" ]; then if [ -f "$__object/parameter/blocks" ]; then
blocks="(cat "$__object/parameter/blocks")" blocks="$(cat "$__object/parameter/blocks")"
command="$command $blocks" command="$command $blocks"
fi fi
echo "$command" echo "$command"