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

This commit is contained in:
Brian Zalewski 2022-12-06 20:49:57 +00:00
parent 12a966741e
commit f8d6cb5830
2 changed files with 3 additions and 3 deletions

View file

@ -137,7 +137,7 @@
type = "file"
url = "https://github.com/Townk/ansible-beautiful-output/raw/master/callback_plugins/beautiful_output.py"
refreshPeriod = "{{ $refreshPeriod }}"
[".local/share/ansible/plugins/callback/bitwarden.py"]
[".local/share/ansible/plugins/lookup/bitwarden.py"]
type = "file"
url = "https://github.com/ProfessorManhattan/ansible-modules-bitwarden/raw/master/lookup_plugins/bitwarden.py"
refreshPeriod = "{{ $refreshPeriod }}"

View file

@ -543,7 +543,7 @@ async function beforeInstall(packageManager) {
);
await $`echo "$(whoami) ALL=(ALL:ALL) NOPASSWD: ALL # TEMPORARY FOR ANSIBLE INSTALL" | sudo tee -a`;
log('info', logStage, 'Running Ansible setup task so facts are cached')
await $`ansible 127.0.0.1 -e '{ ansible_connection: "local", ansible_user: "${process.env.USER}", install_homebrew: False }' -m setup`;
await $`ansible 127.0.0.1 -vv -e '{ ansible_connection: "local", ansible_user: "${process.env.USER}", install_homebrew: False }' -m setup`;
} else if (packageManager === "apk") {
await $`sudo apk update`;
} else if (packageManager === "apt") {
@ -988,7 +988,7 @@ async function installPackageList(packageManager, packages) {
} else if (packageManager === "ansible") {
for (let pkg of packages) {
try {
await $`ansible 127.0.0.1 -e '{ ansible_connection: "local", ansible_user: "${process.env.USER}", install_homebrew: False }' -m include_role -a name=${pkg}`;
await $`ansible 127.0.0.1 -vv -e '{ ansible_connection: "local", ansible_user: "${process.env.USER}", install_homebrew: False }' -m include_role -a name=${pkg}`;
} catch (e) {
log(
"error",