12 lines
479 B
Bash
Executable file
12 lines
479 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# executable_install-fedora.sh hash: {{ include "executable_install-fedora.sh" | sha256sum }}
|
|
# executable_install-macos.sh hash: {{ include "executable_install-macos.sh" | sha256sum }}
|
|
|
|
echo "Packetinstallation hat begonnen, bitte das sudo Passwort nach Bedarf eingeben!!!"
|
|
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
{{ .chezmoi.sourceDir }}/executable_install-fedora.sh
|
|
{{ else if eq .chezmoi.os "darwin" -}}
|
|
{{ .chezmoi.sourceDir }}/executable_install-macos.sh
|
|
{{ end -}}
|