removed unused function

This commit is contained in:
Gregory Kurtzer
2022-01-24 01:31:27 +00:00
parent b068c187af
commit 1bc1d7e34f

View File

@@ -5,28 +5,10 @@ import (
"net/http"
"os"
"strconv"
"strings"
"github.com/hpcng/warewulf/internal/pkg/node"
"github.com/pkg/errors"
)
func getSanity(req *http.Request) (node.NodeInfo, error) {
url := strings.Split(req.URL.Path, "/")
hwaddr := strings.ReplaceAll(url[2], "-", ":")
nodeobj, err := GetNode(hwaddr)
if err != nil {
var ret node.NodeInfo
return ret, errors.New("Could not find node by HW address: " + req.URL.Path)
}
daemonLogf("REQ: %15s: %s\n", nodeobj.Id.Get(), req.URL.Path)
return nodeobj, nil
}
func sendFile(w http.ResponseWriter, filename string, sendto string) error {
fd, err := os.Open(filename)
if err != nil {