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:
@@ -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))
|
||||
|
Reference in New Issue
Block a user