You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
349 B
24 lines
349 B
#!/bin/sh
|
|
|
|
mkdir -p /var/log/heat
|
|
mkdir -p /etc/heat
|
|
|
|
pushd etc
|
|
for f in *
|
|
do
|
|
if [ -d $f ] ; then
|
|
#ignore
|
|
s=0
|
|
elif [ -f $f ] ; then
|
|
echo not coping over /etc/heat/$f
|
|
diff -u /etc/heat/$f $f
|
|
else
|
|
cp $f /etc/heat/
|
|
fi
|
|
done
|
|
popd
|
|
|
|
./setup.py install --root=/ >/dev/null
|
|
rm -rf build heat.egg-info
|
|
|