#!/bin/bash
for n in $(zypper ps | egrep "^[0-9]" | cut -f6 -d\| | sort -u); do systemctl restart $n; done
