diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-07-14 12:56:06 +0000 |
---|---|---|
committer | pmikus <peter.mikus@protonmail.ch> | 2023-07-14 12:56:06 +0000 |
commit | f04617b817436dd45eca973c24455fb9c147b3f2 (patch) | |
tree | 6f849848077646899db1682a33944846410c259a /resources/libraries/bash | |
parent | 6cfd831b241b9711c8573364c9e59d0e9ec2cdad (diff) |
fix(packer): Naming
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I8127beeb6664aa51ef5cb313d658ab2e5638b581
Diffstat (limited to 'resources/libraries/bash')
-rw-r--r-- | resources/libraries/bash/function/ansible.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/bash/function/ansible.sh b/resources/libraries/bash/function/ansible.sh index 64508bda11..a46c782cc0 100644 --- a/resources/libraries/bash/function/ansible.sh +++ b/resources/libraries/bash/function/ansible.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2021 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -28,7 +28,7 @@ function ansible_adhoc () { set -exuo pipefail case "$FLAVOR" in - "aws") + "aws" | "c6in" | "c6gn") INVENTORY_PATH="cloud_inventory" ;; *) @@ -70,7 +70,7 @@ function ansible_playbook () { set -exuo pipefail case "$FLAVOR" in - "aws") + "aws" | "c6in" | "c6gn") INVENTORY_PATH="cloud_inventory" ;; *) |