service: go fmt

This commit is contained in:
Daniel Theophanes
2020-11-17 11:30:05 -06:00
parent 41add7e3c9
commit 18c957a3dc
4 changed files with 10 additions and 11 deletions
+4 -4
View File
@@ -134,9 +134,9 @@ func (s *solarisService) Install() error {
}
var to = &struct {
*Config
Prefix string
Prefix string
Display string
Path string
Path string
}{
s.Config,
s.Prefix,
@@ -150,7 +150,7 @@ func (s *solarisService) Install() error {
}
// import service
err = run("svcadm", "restart", "manifest-import" )
err = run("svcadm", "restart", "manifest-import")
if err != nil {
return err
}
@@ -171,7 +171,7 @@ func (s *solarisService) Uninstall() error {
}
// unregister service
err = run("svcadm", "restart", "manifest-import" )
err = run("svcadm", "restart", "manifest-import")
if err != nil {
return err
}