X-Git-Url: http://git.onelab.eu/?p=plstackapi.git;a=blobdiff_plain;f=opencloud.spec;h=0bbf9a6f34ccec06410f4e34958c9b6cdb6c02cf;hp=066f92635dcc656d716f2851f99ca8a0f4f736de;hb=HEAD;hpb=231df4c980f390f884a56873b762c4a7fe8c0236 diff --git a/opencloud.spec b/opencloud.spec index 066f926..0bbf9a6 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,7 +1,7 @@ Summary: OpenCloud core services Name: opencloud -Version: 1.0.25 -Release: 6 +Version: 1.0.29 +Release: 3 License: GPL+ Group: Development/Tools Source0: %{_tmppath}/%{name}-%{version}.tar.gz @@ -18,7 +18,7 @@ requires: tar requires: gcc requires: python-httplib2 requires: GeoIP -requires: python-keyczar +requires: wget %description %{summary} @@ -30,8 +30,8 @@ requires: python-keyczar # Empty section. %pre -#pip-python install django==1.5 -pip-python install djangorestframework +pip-python install django==1.7 +pip-python install djangorestframework==2.4.4 pip-python install markdown # Markdown support for the browseable API. pip-python install pyyaml # YAML content-type support. pip-python install django-filter # Filtering support @@ -48,12 +48,21 @@ 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 +pip-python install python-keystoneclient +pip-python install python-novaclient +pip-python install python-neutronclient +pip-python install python-glanceclient +pip-python install python-ceilometerclient + 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.* @@ -96,6 +105,7 @@ comm -13 %{_tmppath}/config-files.sorted %{_tmppath}/tmp-filelist.sorted > %{_tm cp %{_tmppath}/tmp-filelist /tmp/tmp-filelist + %clean rm -rf %{buildroot} @@ -103,18 +113,35 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %config /opt/planetstack/plstackapi_config %config /opt/planetstack/deployment_auth.py +%config /opt/planetstack/model-deps %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" + # scripts/opencloud will choose evolve or migrate depending on django version + echo "UPGRADE - doing evolution/migration" /opt/planetstack/scripts/opencloud evolvedb fi + +# Clone ansible with latest openstack modules +git clone --recursive git://github.com/ansible/ansible.git /opt/ansible +mkdir -p /etc/ansible +echo > /etc/ansible/hosts << "EOF" +[localhost] +127.0.0.1 +EOF + + # start the server /opt/planetstack/scripts/opencloud runserver