Re: remove bloatware
Posted: Tue Jul 17, 2018 10:06 pm
				
				I did it more the systemd way, lets see if its enough.
			Code: Select all
tv-schlafzimmer~ # cat $SYSROOT/etc/init.d/02_tvplus_disable.init
#!/bin/sh
#
#       (c) 2017        setti @ SamyGO
#
case $1 in
        start)
        systemctl stop tvplus-service.path tvplus-service.service
        ;;
        stop)
        systemctl start tvplus-service.path tvplus-service.service
        ;;
        restart)
        $0 stop ; sleep 1 ; $0 start
        ;;
        status)
        systemctl status tvplus-service.path tvplus-service.service
        ;;
        *)
        echo "Usage: $0 {start|stop|restart|status}" >&2 && exit 1
        ;;
esac