diff options
Diffstat (limited to 'static/thesiah.sh')
| -rwxr-xr-x | static/thesiah.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/static/thesiah.sh b/static/thesiah.sh index 9f3a858..3ceeac0 100755 --- a/static/thesiah.sh +++ b/static/thesiah.sh @@ -219,7 +219,11 @@ installationloop() { comment="$(echo "$comment" | sed -E "s/(^\"|\"$)//g")" case "$tag" in "A") aurinstall "$program" "$comment" ;; - "I") initinstall "$program" "$comment" ;; + "I") + case "$(readlink -f /sbin/init)" in + *systemd*) initinstall "$program" "$comment" ;; + esac + ;; "G") gitmakeinstall "$program" "$comment" ;; "P") pipinstall "$program" "$comment" ;; *) maininstall "$program" "$comment" ;; |
