X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=opencloud.spec;h=e877ff4c4959ee574fe82f955b5e35c4820c8809;hb=e3bbcf622e692f93fcc62ff7be7f49a206249b6c;hp=54aa962269a06eb59c0a621c3b7ed649005cc252;hpb=c00bbfcc54b06ffaa419ecbd51d480028402330f;p=plstackapi.git diff --git a/opencloud.spec b/opencloud.spec index 54aa962..e877ff4 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,7 +1,7 @@ Summary: OpenCloud core services Name: opencloud Version: 1.0.10 -Release: 1 +Release: 4 License: GPL+ Group: Development/Tools Source0: %{_tmppath}/%{name}-%{version}.tar.gz @@ -59,6 +59,11 @@ if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then gzip -d /usr/share/GeoIP/GeoLiteCity*.gz fi +if [ "$1" == 2 ] ; then + echo "UPGRADE - saving current state" + /opt/planetstack/scripts/opencloud dumpdata +fi + %install rm -rf %{buildroot} mkdir -p %{buildroot} @@ -67,20 +72,30 @@ install -d %{buildroot}/opt/planetstack # in builddir 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 %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