Update .local/share/chezmoi/software.yml, .local/share/chezmoi/home/dot_local/bin/executable_install-program
This commit is contained in:
parent
dfdf18f3b7
commit
9f52042a03
2 changed files with 8 additions and 5 deletions
|
@ -645,8 +645,11 @@ async function installPackageList(packageManager, packages) {
|
||||||
console.log(packages)
|
console.log(packages)
|
||||||
for (let pkg of packages) {
|
for (let pkg of packages) {
|
||||||
console.log(pkg)
|
console.log(pkg)
|
||||||
//execSync('gum spin --spinner dot --title "Installing ' + pkg + ' via Ansible" -- ansible localhost --skip-tags brew -m setup -m include_role -a name=' + pkg + ' -e ansible_user=' + process.env.USER, {stdio: 'inherit', shell: true})
|
try {
|
||||||
await $`ansible localhost --skip-tags brew -m setup -m include_role -a name=${pkg} -e ansible_user=${process.env.USER}`
|
execSync(`gum spin --spinner dot --title "Installing ${pkg} via Ansible" -- ansible localhost -m setup -m include_role -a name=${pkg} -e ansible_user=${process.env.USER} -e include_homebrew_install=false, {stdio: 'inherit', shell: true})
|
||||||
|
} catch (e) {
|
||||||
|
await $`ansible localhost -m setup -m include_role -a name=${pkg} -e ansible_user=${process.env.USER} -e include_homebrew_install=false`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (packageManager === 'apk') {
|
} else if (packageManager === 'apk') {
|
||||||
for (let pkg of packages) {
|
for (let pkg of packages) {
|
||||||
|
|
|
@ -2390,7 +2390,7 @@ softwarePackages:
|
||||||
_service: null
|
_service: null
|
||||||
go: github.com/lingrino/glen@latest
|
go: github.com/lingrino/glen@latest
|
||||||
glow:
|
glow:
|
||||||
_bin: null
|
_bin: glow
|
||||||
_desc: Glow is a terminal based markdown reader designed from the ground up to bring out the beauty—and power—of the CLI
|
_desc: Glow is a terminal based markdown reader designed from the ground up to bring out the beauty—and power—of the CLI
|
||||||
_docs: null
|
_docs: null
|
||||||
_github: https://github.com/charmbracelet/glow
|
_github: https://github.com/charmbracelet/glow
|
||||||
|
@ -2571,7 +2571,7 @@ softwarePackages:
|
||||||
_service: null
|
_service: null
|
||||||
pipx: gphotos-sync
|
pipx: gphotos-sync
|
||||||
gping:
|
gping:
|
||||||
_bin: null
|
_bin: gping
|
||||||
_desc: '[gping](https://github.com/orf/gping) is like the regular ping command except it also displays a chart labeled with response timing statistics.'
|
_desc: '[gping](https://github.com/orf/gping) is like the regular ping command except it also displays a chart labeled with response timing statistics.'
|
||||||
_docs: null
|
_docs: null
|
||||||
_github: https://github.com/orf/gping
|
_github: https://github.com/orf/gping
|
||||||
|
@ -2633,7 +2633,7 @@ softwarePackages:
|
||||||
port: grype
|
port: grype
|
||||||
yay: grype-bin
|
yay: grype-bin
|
||||||
gtop:
|
gtop:
|
||||||
_bin: null
|
_bin: gtop
|
||||||
_desc: null
|
_desc: null
|
||||||
_docs: null
|
_docs: null
|
||||||
_github: null
|
_github: null
|
||||||
|
|
Loading…
Reference in a new issue