X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=opencloud.spec;h=4d72a55b8e3e77697364b5fc0c791e20a148d9a9;hb=c9460f7a95b275ca482e57f3d6bb2a9780a4976d;hp=e877ff4c4959ee574fe82f955b5e35c4820c8809;hpb=8e672994e36488438962554ce5a3529e34818e9d;p=plstackapi.git diff --git a/opencloud.spec b/opencloud.spec index e877ff4..4d72a55 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,7 +1,7 @@ Summary: OpenCloud core services Name: opencloud -Version: 1.0.10 -Release: 4 +Version: 1.0.25 +Release: 8 License: GPL+ Group: Development/Tools Source0: %{_tmppath}/%{name}-%{version}.tar.gz @@ -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. @@ -46,12 +46,16 @@ pip-python install django-suit pip-python install django-evolution pip-python install django-bitfield pip-python install django-ipware +pip-python install django-encrypted-fields +pip-python install python-keyczar easy_install django_evolution easy_install python_gflags 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 +if [ ! -f /usr/lib/python2.7/site-packages/suit/static/suit/js/jquery-1.9.1.min.js ]; then + wget -P /usr/lib/python2.7/site-packages/suit/static/suit/js http://code.jquery.com/jquery-1.9.1.min.js +fi if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then rm -f /usr/share/GeoIP/GeoLiteCity.* @@ -60,19 +64,38 @@ if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then fi if [ "$1" == 2 ] ; then - echo "UPGRADE - saving current state" - /opt/planetstack/scripts/opencloud dumpdata + if [[ -e /opt/planetstack/scripts/opencloud ]]; then + echo "UPGRADE - saving current state" + /opt/planetstack/scripts/opencloud dumpdata + fi fi %install rm -rf %{buildroot} mkdir -p %{buildroot} install -d %{buildroot}/opt/planetstack +install -d %{buildroot}/etc/init.d # in builddir -cp -rp ./planetstack %{buildroot}/opt/. + + +# don't copy symbolic links (they are handled in %post) +rsync -rptgoD ./planetstack %{buildroot}/opt/. +cp observer-initscript %{buildroot}/etc/init.d/plstackobserver find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +echo /etc/init.d/plstackobserver >> %{_tmppath}/tmp-filelist + +# remove config files from the file list (see %config below) +cat > %{_tmppath}/config-files << "EOF" +/opt/planetstack/plstackapi_config +/opt/planetstack/deployment_auth.py +EOF + +sort %{_tmppath}/tmp-filelist > %{_tmppath}/tmp-filelist.sorted +sort %{_tmppath}/config-files > %{_tmppath}/config-files.sorted +comm -13 %{_tmppath}/config-files.sorted %{_tmppath}/tmp-filelist.sorted > %{_tmppath}/tmp-filelist + cp %{_tmppath}/tmp-filelist /tmp/tmp-filelist %clean @@ -81,15 +104,27 @@ rm -rf %{buildroot} %files -f %{_tmppath}/tmp-filelist %defattr(-,root,root,-) %config /opt/planetstack/plstackapi_config +%config /opt/planetstack/deployment_auth.py %post +ln -s ec2_observer /opt/planetstack/observer +ln -s config-opencloud.py /opt/planetstack/syndicate_observer/syndicatelib_config/config.py + +if [ ! -e /opt/planetstack/public_keys ]; then + cd /opt/planetstack + scripts/opencloud genkeys +fi + if [ "$1" == 1 ] ; then echo "NEW INSTALL - initializing database" /opt/planetstack/scripts/opencloud initdb else echo "UPGRADE - doing evolution" /opt/planetstack/scripts/opencloud evolvedb + #echo "UPGRADE - doing migration" + #/opt/planetstack/scripts/opencloud migratedb fi + # start the server /opt/planetstack/scripts/opencloud runserver