diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-02 10:06:26 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-02 10:06:26 -0300 |
commit | de2540a4c1117e8a0a42485c8013b07c48d927c5 (patch) | |
tree | 28e04468eb7ef6cba2fbe5792a923293d2aae6bf /share | |
parent | ab0d6a1d1bccbaeb242168380fb9969169bc1f51 (diff) | |
download | hydra-de2540a4c1117e8a0a42485c8013b07c48d927c5.tar.gz hydra-de2540a4c1117e8a0a42485c8013b07c48d927c5.tar.bz2 |
Fixes hydra_node_files
Diffstat (limited to 'share')
-rwxr-xr-x | share/hydra/nodes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/hydra/nodes b/share/hydra/nodes index cd4920e..eb661c3 100755 --- a/share/hydra/nodes +++ b/share/hydra/nodes @@ -20,7 +20,7 @@ function hydra_node_files { if [ -d "$PUPPET/config/node/" ]; then #FILES="$PUPPET/config/node/*" - FILES="`ls -1 config/node/ | grep -v example.org | xargs`" + FILES="`ls -1 $PUPPET/config/node/ | grep -v example.org | xargs`" fi } |