Fix pkgs-to-install path

pkgs-to-install is written to /tmp/pkgs-to-install not
~/tmp/pkgs-to-install/.

From nodepool logs:
2015-02-26 14:24:11,465 INFO nodepool.image.build.devstack-trusty:
/tmp/in_target.d/install.d/50-download-pkgs:
 line 28: /root/tmp/pkgs-to-install: No such file or directory

Change-Id: If367be96bbc2761faa9bd4b4bb173a3ecbe9b406
This commit is contained in:
Joe Gordon 2015-03-04 15:16:15 -08:00
parent cdcc0b38cc
commit fb74bd0d38
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ while read line ; do
yum install -y --downloadonly $line
fi
done < ~/tmp/pkgs-to-install
done < /tmp/pkgs-to-install
rm /tmp/pkgs-to-install