2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-08-24 12:10:25 +00:00

Fix tcons interaction with filename globbing

Filename globbing strings are not good to happen
to noderanges.  Use quotes to avoid it in script.
Caller still needs to be careful to quote/escape
on their end.
This commit is contained in:
Jarrod Johnson
2016-08-12 15:57:11 -04:00
parent 76ed1ab158
commit 22fe457bc1

View File

@@ -1,7 +1,7 @@
#!/bin/sh
f=1
p=0
for i in `nodels $1`; do
for i in `nodels "$1"`; do
if [ "$f" = 1 ]; then
f=0
qdate=$((`date +%s`+5))