diff options
| author | Jeff Carr <[email protected]> | 2024-01-07 07:21:36 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-07 07:21:36 -0600 |
| commit | d1d5e15cca9e0a3204332632f76fc39e7e5bbee0 (patch) | |
| tree | 4194c9d5780dabb05b091b129b24c7c6c126f6fa /linuxstatus/hostname.go | |
| parent | a811226c53f41b108be5974156ea6459a9764c4d (diff) | |
fix real IPv4 display
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'linuxstatus/hostname.go')
| -rw-r--r-- | linuxstatus/hostname.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/linuxstatus/hostname.go b/linuxstatus/hostname.go index 184e593..2a83eba 100644 --- a/linuxstatus/hostname.go +++ b/linuxstatus/hostname.go @@ -3,7 +3,6 @@ package linuxstatus import ( - "strings" "io/ioutil" "go.wit.com/log" @@ -65,12 +64,6 @@ func (ls *LinuxStatus) setHostShort() { } } -func (ls *LinuxStatus) GetIPv6() []string { - if ! me.Ready() {return nil} - tmp := me.workingIPv6.Get() - return strings.Split(tmp, "\n") -} - func lookupHostname() { if ! me.Ready() {return} var err error |
