18 lines
725 B
Bash
Executable file
18 lines
725 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" -}}
|
|
{{ if or (eq .chezmoi.osRelease.id "fedora") (eq .chezmoi.osRelease.id "fedora-asahi-remix") -}}
|
|
{{ .chezmoi.homeDir }}/install-fedora.sh
|
|
{{ else -}}
|
|
echo "keine Änderungen für diese Distribution eingetragen"
|
|
{{ end -}}
|
|
{{ else if eq .chezmoi.os "darwin" -}}
|
|
{{ .chezmoi.homeDir }}/install-macos.sh
|
|
{{ else -}}
|
|
echo "keine Änderungen für diese Distribution eingetragen"
|
|
{{ end -}}
|