X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=opencloud.spec;h=3b9d35aee75669fa2b042c5897b521f77bc8d3de;hb=8ccabb929b07c8fabac475b2eca14c20c64efc78;hp=3420bdf8ddfed51df205def212fd71ff4566e34f;hpb=628caa3c178c90b99151b54aed1449eee936cd3a;p=plstackapi.git diff --git a/opencloud.spec b/opencloud.spec index 3420bdf..3b9d35a 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,6 +1,6 @@ Summary: OpenCloud core services Name: opencloud -Version: 1.0.7 +Version: 1.0.20 Release: 1 License: GPL+ Group: Development/Tools @@ -29,7 +29,7 @@ requires: GeoIP # Empty section. %pre -pip-python install django==1.5 +#pip-python install django==1.5 pip-python install djangorestframework pip-python install markdown # Markdown support for the browseable API. pip-python install pyyaml # YAML content-type support. @@ -53,9 +53,18 @@ easy_install google_api_python_client wget -P /usr/lib/python2.7/site-packages/suit/static/suit/js http://code.jquery.com/jquery-1.9.1.min.js -rm -f /usr/share/GeoIP/GeoLiteCity* -wget -P /usr/share/GeoIP http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz -gzip -d /usr/share/GeoIP/GeoLiteCity*.gz +if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then + rm -f /usr/share/GeoIP/GeoLiteCity.* + wget -P /usr/share/GeoIP http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz + gzip -d /usr/share/GeoIP/GeoLiteCity*.gz +fi + +if [ "$1" == 2 ] ; then + if [[ -e /opt/planetstack/scripts/opencloud ]]; then + echo "UPGRADE - saving current state" + /opt/planetstack/scripts/opencloud dumpdata + fi +fi %install rm -rf %{buildroot} @@ -63,22 +72,33 @@ mkdir -p %{buildroot} install -d %{buildroot}/opt/planetstack # in builddir -cp -rp /opt/plstackapi/planetstack %{buildroot}/opt/. +cp -rp ./planetstack %{buildroot}/opt/. -find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +cp %{_tmppath}/tmp-filelist /tmp/tmp-filelist %clean rm -rf %{buildroot} %files -f %{_tmppath}/tmp-filelist %defattr(-,root,root,-) +%config /opt/planetstack/plstackapi_config +%config /opt/planetstack/deployment_auth.py %post -/opt/planetstack/scripts/opencloud initdb +if [ "$1" == 1 ] ; then + echo "NEW INSTALL - initializing database" + /opt/planetstack/scripts/opencloud initdb +else + echo "UPGRADE - doing evolution" + /opt/planetstack/scripts/opencloud evolvedb +fi +# start the server +/opt/planetstack/scripts/opencloud runserver %preun if [ "$1" = 0 ] ; then - echo "doing preuninstall" + echo "UNINSTALL - destroying planetstack" rm -rf /opt/planetstack fi