mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-03-26 21:33:32 +00:00
15 lines
338 B
Bash
Executable File
15 lines
338 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail -eux
|
|
|
|
echo "${PATH/\~/${HOME}}"
|
|
echo "${HOME}"
|
|
command -v ansible
|
|
|
|
pip install --upgrade --user pip
|
|
pip install --upgrade --user ansible-lint
|
|
|
|
PATH="${PATH/\~/${HOME}}" ansible-lint \
|
|
--exclude changelogs/ \
|
|
--profile=production
|