()
| 193 | } |
| 194 | |
| 195 | func isSystemd() bool { |
| 196 | if _, err := os.Stat("/run/systemd/system"); err == nil { |
| 197 | return true |
| 198 | } |
| 199 | return false |
| 200 | } |
| 201 | |
| 202 | func installLinuxService(c *cli.Context) error { |
| 203 | log := logger.CreateLoggerFromContext(c, logger.EnableTerminalLog) |
no outgoing calls
no test coverage detected