fix var error
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
parent
79b73ea796
commit
efeb3d0666
1 changed files with 3 additions and 3 deletions
|
|
@ -2,16 +2,16 @@
|
|||
|
||||
. ./lib/colors.sh
|
||||
|
||||
BINARY="/opt/two/bin/vpc"
|
||||
BINARY_VPC="/opt/two/bin/vpc"
|
||||
|
||||
function create_vpc {
|
||||
local vpc_name="${1}"
|
||||
"${BINARY}" -action "create" -name "${vpc_name}"
|
||||
"${BINARY_VPC}" -action "create" -name "${vpc_name}"
|
||||
}
|
||||
|
||||
function delete_vpc {
|
||||
local vpc_name="${1}"
|
||||
|
||||
print_in_color "${COLOR_RED}" "Delete ${vpc_name}"
|
||||
"${BINARY}" -action "delete" -name "${vpc_name}"
|
||||
"${BINARY_VPC}" -action "delete" -name "${vpc_name}"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue