We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83bd680 commit 8aba6ffCopy full SHA for 8aba6ff
splunkrc.spec
@@ -5,7 +5,7 @@ host=127.0.0.1
5
port=8089
6
7
# Username to use when logging in
8
-user=admin
+username=admin
9
10
# Password to use when logging in
11
password=changed
@@ -14,4 +14,4 @@ password=changed
14
scheme=https
15
16
# Namespace to use (OPTIONAL)
17
-namespace=*:*
+namespace=*:*
utils/cmdopts.py
@@ -75,6 +75,7 @@ def load(self, filepath):
75
for line in file:
76
if line.startswith("#"): continue # Skip comment
77
line = line.strip()
78
+ if len(line) == 0: continue # Skip blank line
79
if not line.startswith("-"): line = "--" + line
80
argv.append(line)
81
self.parse(argv)
0 commit comments