Skip to content

Commit

Permalink
fix: force sync to ensure copy occurs (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjferguson21 authored Jun 6, 2024
1 parent 91412ba commit d0cc071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ mkdir -p /opt/keycloak/conf/truststores
mkdir -p /opt/keycloak/themes/theme/

# Copy the files to their respective directories
cp -fvu realm.json /opt/keycloak/data/import/realm.json
cp -fvur theme/* /opt/keycloak/themes/theme/
cp -fvu *.jar /opt/keycloak/providers/
cp -fvu certs/* /opt/keycloak/conf/truststores
cp -fv realm.json /opt/keycloak/data/import/realm.json
cp -fvr theme/* /opt/keycloak/themes/theme/
cp -fv *.jar /opt/keycloak/providers/
cp -fv certs/* /opt/keycloak/conf/truststores

echo "Sync complete"

0 comments on commit d0cc071

Please sign in to comment.