summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorScott Moser <smoser@nelson>2010-01-05 23:40:05 -0500
committerScott Moser <smoser@nelson>2010-01-05 23:40:05 -0500
commite6cb87fa2499e4066b3e4959ea903952b4e3723e (patch)
treee4410dd93159aa16d333a0c11624836f2a0004f8 /install.sh
parent48acacce6a964930b78ad4400c5e65aa66e63063 (diff)
downloadvyos-cloud-init-e6cb87fa2499e4066b3e4959ea903952b4e3723e.tar.gz
vyos-cloud-init-e6cb87fa2499e4066b3e4959ea903952b4e3723e.zip
initial re-org, ec2 data source successfully reads from cache if present
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/install.sh b/install.sh
index aa46d5c1..7ddbdc0a 100755
--- a/install.sh
+++ b/install.sh
@@ -16,14 +16,14 @@ destdir=$(readlink -f ${1})
cd $(dirname ${0})
./setup.py install --root=${destdir} ${DEB_PYTHON_INSTALL_ARGS_ALL}
-mkdir -p ${destdir}/usr/lib/pyshared
-for x in ${destdir}/usr/lib/python2.6/dist-packages/*; do
- [ -d "$x" ] || continue
- [ ! -d "${destdir}/usr/lib/pyshared/${x##*/}" ] ||
- rm -Rf "${destdir}/usr/lib/pyshared/${x##*/}"
- mv $x ${destdir}/usr/lib/pyshared
-done
-rm -Rf ${destdir}/usr/lib/python2.6
+#mkdir -p ${destdir}/usr/share/pyshared
+#for x in ${destdir}/usr/lib/python2.6/dist-packages/*; do
+# [ -d "$x" ] || continue
+# [ ! -d "${destdir}/usr/share/pyshared/${x##*/}" ] ||
+# rm -Rf "${destdir}/usr/share/pyshared/${x##*/}"
+# mv $x ${destdir}/usr/share/pyshared
+#done
+#rm -Rf ${destdir}/usr/lib/python2.6
for x in "${destdir}/usr/bin/"*.py; do
[ -f "${x}" ] && mv "${x}" "${x%.py}"