aboutsummaryrefslogtreecommitdiff
path: root/zabbix/flags.go
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-23 16:51:22 +0200
committerJulien Dessaux2021-04-23 16:51:22 +0200
commit38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 (patch)
treed3f7167fae6388f4db35a63e660d1816c9c2943e /zabbix/flags.go
parentFixed wrongfully hardcoded path in tests. (diff)
downloadbareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.gz
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.bz2
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.zip
Updated for go 1.16 modules1.2
Diffstat (limited to 'zabbix/flags.go')
-rw-r--r--zabbix/flags.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/zabbix/flags.go b/zabbix/flags.go
deleted file mode 100644
index 3e95321..0000000
--- a/zabbix/flags.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package zabbix
-
-import (
- "flag"
-)
-
-var (
- stateFileName string
- workDir string
-)
-
-func processFlags() (err error) {
- flag.StringVar(&stateFileName, "f", "", "Force the state file to use, defaults to "+bareosStateFile+" if it exists else "+baculaStateFile+".")
- flag.StringVar(&workDir, "w", "", "Force the work directory to use, defaults to "+bareosWorkDir+" if it exists else "+baculaWorkDir+".")
- flag.Parse()
- err = checkWorkDir()
- if err == nil {
- err = checkStateFile()
- }
- return
-}