Skip to content

Commit

Permalink
Fix conf and logs paths in containers
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Jun 20, 2024
1 parent 62efea3 commit 53a52dd
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ca-container-existing-certs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/certs/server.p12 \
--password Secret.123 \
--password Secret.123
- name: Export admin cert and key
run: |
Expand All @@ -208,7 +208,7 @@ jobs:
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/certs/admin.p12 \
--password Secret.123 \
--password Secret.123
- name: Set up CA container
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kra-container-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,14 +313,14 @@ jobs:
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/kra/certs/server.p12 \
--password Secret.123 \
--password Secret.123
# export admin cert and key
docker exec client cp $SHARED/ca/conf/certs/admin.p12 $SHARED/kra/certs
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/kra/certs/admin.p12 \
--password Secret.123 \
--password Secret.123
ls -la kra/certs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ocsp-container-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,14 +293,14 @@ jobs:
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/ocsp/certs/server.p12 \
--password Secret.123 \
--password Secret.123
# export admin cert and key
docker exec client cp $SHARED/ca/conf/certs/admin.p12 $SHARED/ocsp/certs
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/ocsp/certs/admin.p12 \
--password Secret.123 \
--password Secret.123
ls -la ocsp/certs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tps-container-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ jobs:
docker exec client pki pkcs12-cert-find \
--pkcs12 $SHARED/kra/certs/admin.p12 \
--password Secret.123 \
--password Secret.123
ls -la kra/certs
Expand Down
4 changes: 2 additions & 2 deletions base/ocsp/bin/pki-ocsp-run
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ echo "INFO: Creating OCSP Responder"
# with existing database user, without security manager,
# and without systemd service.
pkispawn \
--conf /data/conf \
--logs /data/logs \
--conf /conf \
--logs /logs \
-f /usr/share/pki/server/examples/installation/ocsp.cfg \
-s OCSP \
-D pki_group=root \
Expand Down
4 changes: 2 additions & 2 deletions base/tks/bin/pki-tks-run
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ echo "INFO: Creating TKS"
# with existing database user, without security manager,
# and without systemd service.
pkispawn \
--conf /data/conf \
--logs /data/logs \
--conf /conf \
--logs /logs \
-f /usr/share/pki/server/examples/installation/tks.cfg \
-s TKS \
-D pki_group=root \
Expand Down
4 changes: 2 additions & 2 deletions base/tps/bin/pki-tps-run
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ echo "INFO: Creating TPS"
# with existing database user, without security manager,
# and without systemd service.
pkispawn \
--conf /data/conf \
--logs /data/logs \
--conf /conf \
--logs /logs \
-f /usr/share/pki/server/examples/installation/tps.cfg \
-s TPS \
-D pki_group=root \
Expand Down

0 comments on commit 53a52dd

Please sign in to comment.