Update .local/share/chezmoi/home/dot_local/bin/executable_install-program

This commit is contained in:
Brian Zalewski 2022-12-02 18:38:35 +00:00
parent ff8bfefc88
commit e7a3eac240

View file

@ -288,7 +288,8 @@ async function ensureInstalled(bin, callback) {
async function ensurePackageManagerAnsible() { async function ensurePackageManagerAnsible() {
await $`pipx install ansible` await $`pipx install ansible`
await $`pipx inject ansible PyObjC PyObjC-core docker lxml netaddr pexpect python-vagrant pywinrm requests-credssp watchdog` await $`pipx inject ansible PyObjC PyObjC-core docker lxml netaddr pexpect python-vagrant pywinrm requests-credssp watchdog`
await $`touch "$HOME/.cache/megabytelabs/ansible-installed"` await $`mkdir -p "$HOME/.cache/megabyte-labs"`
await $`touch "$HOME/.cache/megabyte-labs/ansible-installed"`
await $`logg info 'Ansible and its supporting packages are now installed via pipx'` await $`logg info 'Ansible and its supporting packages are now installed via pipx'`
} }