add host
This commit is contained in:
parent
ff79e2a767
commit
064b401da1
1 changed files with 21 additions and 0 deletions
21
host/host.go
Normal file
21
host/host.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package host
|
||||
|
||||
import (
|
||||
"context"
|
||||
"os/exec"
|
||||
)
|
||||
|
||||
// GetFQDN returns the fully qualified hostname of the current host
|
||||
func GetFQDN(ctx context.Context) (string, error) {
|
||||
cmd := exec.CommandContext(ctx, "hostname", "--fqdn")
|
||||
if err := cmd.Run(); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
b, err := cmd.Output()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
return string(b), nil
|
||||
}
|
Loading…
Reference in a new issue