staticcheck: ignore unused if platform dependent

This commit is contained in:
albertony 2022-06-24 18:34:37 +02:00
parent 1f9560e873
commit 9612ca6110
3 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@ var (
pluginName = "rclone"
pluginScope = "local"
baseDir = "/var/lib/docker-volumes/rclone"
sockDir = "/run/docker/plugins" // location of unix sockets (only relevant on Linux and FreeBSD)
sockDir = "/run/docker/plugins" //lint:ignore U1000 unused when not building linux
defSpecDir = "/etc/docker/plugins"
stateFile = "docker-plugin.state"
socketAddr = "" // TCP listening address or empty string for Unix socket

View File

@ -7,6 +7,7 @@ import (
"os"
)
//lint:ignore U1000 unused when not building linux
func systemdActivationFiles() []*os.File {
return nil
}

View File

@ -184,7 +184,8 @@ func (s *server) serve() error {
return s.srv.ListenAndServe()
}
// serve runs the ftp server
// close stops the ftp server
//lint:ignore U1000 unused when not building linux
func (s *server) close() error {
fs.Logf(s.f, "Stopping FTP on %s", s.srv.Hostname+":"+strconv.Itoa(s.srv.Port))
return s.srv.Shutdown()