nova-dpm/nova_dpm/tests/unit/guest_image_tools/root_dir_default/sbin/ip

20 lines
244 B
Bash
Executable File

#! /bin/bash
# $ip_cmd link set $if_name address $mac
echo "foo"
if ! [[ "$1" == "link" ]]; then
exit 1
fi
if ! [[ "$2" == "set" ]]; then
exit 1
fi
# TODO: Check if_name
if ! [[ "$4" == "address" ]]; then
exit 1
fi
# TODO: check_mac