diff options
author | Matt Martz <matt@sivel.net> | 2021-10-19 14:24:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 14:24:57 -0500 |
commit | 66a83314b9d30c6a139de960e6da8d5554c28544 (patch) | |
tree | 88b110f697b43addcbe82de8d1a824467130ac50 /bin | |
parent | 43d09710c81f36113fec8d68e650a6b6d82dca05 (diff) | |
download | ansible-66a83314b9d30c6a139de960e6da8d5554c28544.zip |
Modernize install (#76021)
Co-authored-by: Matt Clay <matt@mystile.com>
Co-authored-by: Matt Davis <mrd@redhat.com>
Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
Diffstat (limited to 'bin')
l--------- | bin/ansible | 2 | ||||
l--------- | bin/ansible-config | 2 | ||||
l--------- | bin/ansible-console | 2 | ||||
l--------- | bin/ansible-doc | 2 | ||||
l--------- | bin/ansible-galaxy | 2 | ||||
l--------- | bin/ansible-inventory | 2 | ||||
l--------- | bin/ansible-playbook | 2 | ||||
l--------- | bin/ansible-pull | 2 | ||||
l--------- | bin/ansible-vault | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/bin/ansible b/bin/ansible index 1acbe23019..1f096cc4cb 120000 --- a/bin/ansible +++ b/bin/ansible @@ -1 +1 @@ -../lib/ansible/cli/scripts/ansible_cli_stub.py
\ No newline at end of file +../lib/ansible/cli/adhoc.py
\ No newline at end of file diff --git a/bin/ansible-config b/bin/ansible-config index cabb1f519a..d451b210b5 120000 --- a/bin/ansible-config +++ b/bin/ansible-config @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/config.py
\ No newline at end of file diff --git a/bin/ansible-console b/bin/ansible-console index cabb1f519a..7f5789e2ab 120000 --- a/bin/ansible-console +++ b/bin/ansible-console @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/console.py
\ No newline at end of file diff --git a/bin/ansible-doc b/bin/ansible-doc index cabb1f519a..23d4e3912d 120000 --- a/bin/ansible-doc +++ b/bin/ansible-doc @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/doc.py
\ No newline at end of file diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index cabb1f519a..3771430a1a 120000 --- a/bin/ansible-galaxy +++ b/bin/ansible-galaxy @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/galaxy.py
\ No newline at end of file diff --git a/bin/ansible-inventory b/bin/ansible-inventory index cabb1f519a..989f06a2d8 120000 --- a/bin/ansible-inventory +++ b/bin/ansible-inventory @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/inventory.py
\ No newline at end of file diff --git a/bin/ansible-playbook b/bin/ansible-playbook index cabb1f519a..3a25cc8216 120000 --- a/bin/ansible-playbook +++ b/bin/ansible-playbook @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/playbook.py
\ No newline at end of file diff --git a/bin/ansible-pull b/bin/ansible-pull index cabb1f519a..f0c87d47fb 120000 --- a/bin/ansible-pull +++ b/bin/ansible-pull @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/pull.py
\ No newline at end of file diff --git a/bin/ansible-vault b/bin/ansible-vault index cabb1f519a..1a166e8fe5 120000 --- a/bin/ansible-vault +++ b/bin/ansible-vault @@ -1 +1 @@ -ansible
\ No newline at end of file +../lib/ansible/cli/vault.py
\ No newline at end of file |