Skip to content

Commit 018d189

Browse files
authored
extract first boot portion of script (DefectDojo#11468)
* extract first boot portion of script * added first boot script * needs space
1 parent 7ecef22 commit 018d189

5 files changed

+40
-34
lines changed

.dryrunsecurity.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ sensitiveCodepaths:
5252
- 'docker/entrypoint-celery-beat.sh'
5353
- 'docker/entrypoint-celery-worker.sh'
5454
- 'docker/entrypoint-initializer.sh'
55+
- 'docker/entrypoint-first-boot.sh'
5556
- 'docker/entrypoint-nginx.sh'
5657
- 'docker/entrypoint-uwsgi.sh'
5758
- 'docker/wait-for-it.sh'

Dockerfile.django-alpine

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ COPY \
6868
docker/entrypoint-celery-beat.sh \
6969
docker/entrypoint-celery-worker.sh \
7070
docker/entrypoint-initializer.sh \
71+
docker/entrypoint-first-boot.sh \
7172
docker/entrypoint-uwsgi.sh \
7273
docker/entrypoint-uwsgi-dev.sh \
7374
docker/entrypoint-unit-tests.sh \

Dockerfile.django-debian

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ COPY \
7171
docker/entrypoint-celery-beat.sh \
7272
docker/entrypoint-celery-worker.sh \
7373
docker/entrypoint-initializer.sh \
74+
docker/entrypoint-first-boot.sh \
7475
docker/entrypoint-uwsgi.sh \
7576
docker/entrypoint-uwsgi-dev.sh \
7677
docker/entrypoint-unit-tests.sh \

docker/entrypoint-first-boot.sh

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/bash
2+
# called from entrypoint-initializer.sh when no admin user exists (first boot)
3+
cat <<EOD | python manage.py shell
4+
import os
5+
from django.contrib.auth.models import User
6+
User.objects.create_superuser(
7+
os.getenv('DD_ADMIN_USER'),
8+
os.getenv('DD_ADMIN_MAIL'),
9+
os.getenv('DD_ADMIN_PASSWORD'),
10+
first_name=os.getenv('DD_ADMIN_FIRST_NAME'),
11+
last_name=os.getenv('DD_ADMIN_LAST_NAME')
12+
)
13+
EOD
14+
15+
# load surveys all at once as that's much faster
16+
echo "Importing fixtures all at once"
17+
python3 manage.py loaddata system_settings initial_banner_conf product_type test_type \
18+
development_environment benchmark_type benchmark_category benchmark_requirement \
19+
language_type objects_review regulation initial_surveys role sla_configurations
20+
21+
echo "UPDATE dojo_system_settings SET jira_webhook_secret='$DD_JIRA_WEBHOOK_SECRET'" | python manage.py dbshell
22+
23+
echo "Importing extra fixtures"
24+
# If there is extra fixtures, load them
25+
for i in $(find dojo/fixtures/extra_*.json | sort -n 2>/dev/null) ; do
26+
echo "Loading $i"
27+
python3 manage.py loaddata "${i%.*}"
28+
done
29+
30+
echo "Installing watson search index"
31+
python3 manage.py installwatson
32+
33+
# surveys fixture needs to be modified as it contains an instance dependant polymorphic content id
34+
echo "Migration of textquestions for surveys"
35+
python3 manage.py migrate_textquestions

docker/entrypoint-initializer.sh

+2-34
Original file line numberDiff line numberDiff line change
@@ -138,40 +138,8 @@ fi
138138

139139
if [ -z "${ADMIN_EXISTS}" ]
140140
then
141-
cat <<EOD | python manage.py shell
142-
import os
143-
from django.contrib.auth.models import User
144-
User.objects.create_superuser(
145-
os.getenv('DD_ADMIN_USER'),
146-
os.getenv('DD_ADMIN_MAIL'),
147-
os.getenv('DD_ADMIN_PASSWORD'),
148-
first_name=os.getenv('DD_ADMIN_FIRST_NAME'),
149-
last_name=os.getenv('DD_ADMIN_LAST_NAME')
150-
)
151-
EOD
152-
153-
# load surveys all at once as that's much faster
154-
echo "Importing fixtures all at once"
155-
python3 manage.py loaddata system_settings initial_banner_conf product_type test_type \
156-
development_environment benchmark_type benchmark_category benchmark_requirement \
157-
language_type objects_review regulation initial_surveys role sla_configurations
158-
159-
echo "UPDATE dojo_system_settings SET jira_webhook_secret='$DD_JIRA_WEBHOOK_SECRET'" | python manage.py dbshell
160-
161-
echo "Importing extra fixtures"
162-
# If there is extra fixtures, load them
163-
for i in $(find dojo/fixtures/extra_*.json | sort -n 2>/dev/null) ; do
164-
echo "Loading $i"
165-
python3 manage.py loaddata "${i%.*}"
166-
done
167-
168-
echo "Installing watson search index"
169-
python3 manage.py installwatson
170-
171-
# surveys fixture needs to be modified as it contains an instance dependant polymorphic content id
172-
echo "Migration of textquestions for surveys"
173-
python3 manage.py migrate_textquestions
174-
141+
. /entrypoint-first-boot.sh
142+
175143
create_announcement_banner
176144
initialize_data
177145
fi

0 commit comments

Comments
 (0)