8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-18 16:43:11 +00:00

Fix install script

This commit is contained in:
Maël Kervella 2018-05-15 18:48:56 +00:00
parent d610ac6d93
commit d797f18ace
3 changed files with 23 additions and 1 deletions

View file

@ -240,7 +240,7 @@ install_base=$(dialog --clear \
echo "Installation des paquets de base"
apt-get -y install python3-django python3-dateutil texlive-latex-base texlive-fonts-recommended python3-djangorestframework python3-django-reversion python3-pip libsasl2-dev libldap2-dev libssl-dev python3-crypto python3-git
pip3 install django-bootstrap3
pip3 install django-ldapdb
pip3 install django-ldapdb==0.9.0
pip3 install django-macaddress
if [ $sql_bdd_type == 1 ]

View file

@ -11,6 +11,7 @@ class Migration(migrations.Migration):
dependencies = [
('machines', '0062_extension_origin_v6'),
('reversion', '0001_squashed_0004_auto_20160611_1202')
]
operations = [

View file

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-05-15 18:34
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('machines', '0080_auto_20180502_2334'),
]
operations = [
migrations.AlterField(
model_name='extension',
name='soa',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='machines.SOA'),
),
]