func (s *ServiceSystemd) Running() (bool, error) {
    if invalidService(s.service) {
        return false, nil
    }
    cmd := util.NewCommand("systemctl", "-q", "is-active", s.service)