Commit 479afc65 authored by Igor Pecovnik's avatar Igor Pecovnik
Browse files

Removing Tvheadend installation from menu for Debian.

parent 7f3605a3
...@@ -22,8 +22,10 @@ LIST+=( "Samba" "Windows compatible file sharing" "$SAMBA_STATUS" ) ...@@ -22,8 +22,10 @@ LIST+=( "Samba" "Windows compatible file sharing" "$SAMBA_STATUS" )
CUPS_STATUS="$(check_if_installed cups && echo "on" || echo "off" )" CUPS_STATUS="$(check_if_installed cups && echo "on" || echo "off" )"
LIST+=( "CUPS" "Common UNIX Printing System (CUPS)" "$CUPS_STATUS" ) LIST+=( "CUPS" "Common UNIX Printing System (CUPS)" "$CUPS_STATUS" )
# tvheadend # tvheadend
TVHEADEND_STATUS="$(check_if_installed tvheadend && echo "on" || echo "off" )" if [[ "$family" == "Ubuntu" ]]; then
LIST+=( "TV headend" "TV streaming / proxy" "$TVHEADEND_STATUS" ) TVHEADEND_STATUS="$(check_if_installed tvheadend && echo "on" || echo "off" )"
LIST+=( "TV headend" "TV streaming / proxy" "$TVHEADEND_STATUS" )
fi
# synthing # synthing
SYNCTHING_STATUS="$(check_if_installed syncthing && echo "on" || echo "off" )" SYNCTHING_STATUS="$(check_if_installed syncthing && echo "on" || echo "off" )"
LIST+=( "Syncthing" "Personal cloud @syncthing.net" "$SYNCTHING_STATUS" ) LIST+=( "Syncthing" "Personal cloud @syncthing.net" "$SYNCTHING_STATUS" )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment