Skip to content

Commit

Permalink
Merge pull request #9 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Ignore systemd templates
  • Loading branch information
andyone authored Jul 11, 2020
2 parents 194b8c7 + 7afdd49 commit 5cb74d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
// App info
const (
APP = "bop"
VER = "1.1.2"
VER = "1.1.3"
DESC = "Utility for generating formal bibop tests for RPM packages"
)

Expand Down
4 changes: 4 additions & 0 deletions generator/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ func genServicesCheck(info *data.Info, services []string) string {
continue
}

if strings.Contains(service, "@") {
continue
}

switch i {
case 0:
data += genServiceStartCheck(service, osVersion)
Expand Down

0 comments on commit 5cb74d4

Please sign in to comment.