From 38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 23 Apr 2021 16:51:22 +0200 Subject: Updated for go 1.16 modules --- zabbix/workdir.go | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 zabbix/workdir.go (limited to 'zabbix/workdir.go') diff --git a/zabbix/workdir.go b/zabbix/workdir.go deleted file mode 100644 index 287c80a..0000000 --- a/zabbix/workdir.go +++ /dev/null @@ -1,38 +0,0 @@ -package zabbix - -import ( - "fmt" - "os" - "path/filepath" -) - -const ( - bareosWorkDir = "/var/lib/bareos" - baculaWorkDir = "/var/lib/bacula" -) - -var root = "/" - -// checkWorkDir checks if a work directory is valid -func checkWorkDir() error { - // Determine the work directory to use. - if workDir != "" { - workDir = filepath.Join(root, workDir) - info, err := os.Stat(workDir) - if os.IsNotExist(err) || !info.IsDir() { - return fmt.Errorf("Invalid work directory %s : it does not exist or is not a directory", workDir) - } - } else { - workDir = filepath.Join(root, bareosWorkDir) - info, err := os.Stat(workDir) - if os.IsNotExist(err) || !info.IsDir() { - workDir = filepath.Join(root, baculaWorkDir) - info, err := os.Stat(workDir) - if os.IsNotExist(err) || !info.IsDir() { - return fmt.Errorf("Could not find a suitable work directory. Is bareos or bacula installed?") - } - } - } - workDir = filepath.Clean(workDir) - return nil -} -- cgit v1.2.3