mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-05-23 23:37:45 +02:00
cmd: unify unix-specific code
This commit is contained in:
parent
6935d83ab3
commit
e60e770419
3 changed files with 4 additions and 8 deletions
18
cmd/subscribe_unix.go
Normal file
18
cmd/subscribe_unix.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
// +build linux dragonfly freebsd netbsd openbsd
|
||||
|
||||
package cmd
|
||||
|
||||
const (
|
||||
scriptExt = "sh"
|
||||
scriptHeader = "#!/bin/sh\n"
|
||||
clientCommandDescriptionSuffix = `The default config file for all client commands is /etc/ntfy/client.yml (if root user),
|
||||
or ~/.config/ntfy/client.yml for all other users.`
|
||||
)
|
||||
|
||||
var (
|
||||
scriptLauncher = []string{"sh", "-c"}
|
||||
)
|
||||
|
||||
func defaultClientConfigFile() string {
|
||||
return defaultClientConfigFileUnix()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue