#!/bin/sh

if [ -z "$1" ]
then    systemctl list-unit-files --state=enabled
else    for f
        do      systemctl stop $f
                systemctl disable $f
        done
fi
