fix bashism conditionals in vps-net_add

bashism conditionals, like

if [ "txt" == "txt" ]; do

should be changed to :

if [ "txt" = "txt" ]; do

http://bugzilla.openvz.org/594
1 file changed