aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/artifacts/scripts/cleanup_jettydir.sh
blob: 7324de44ad8fd2613603e82528b836dc99d8426c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

#Create temp directory
mkdir -p "$JETTY_BASE/temp"
chown "$JETTY_USER:$JETTY_GROUP" "$JETTY_BASE/temp"
chmod 0755 "$JETTY_BASE/temp"

# Create config directory
mkdir -p "$JETTY_BASE/config"
chown "$JETTY_USER:$JETTY_GROUP" "$JETTY_BASE/config"
chmod 0755 "$JETTY_BASE/config"

# Create onboarding-be directory
mkdir -p "$JETTY_BASE/config/onboarding-fe"
chown -R "$JETTY_USER:$JETTY_GROUP" "$JETTY_BASE/config/onboarding-fe"
chmod -R 0755 "$JETTY_BASE/config/onboarding-fe"

# Create onboarding-be directory
mkdir -p "$JETTY_BASE/config/catalog-fe"
chown -R "$JETTY_USER:$JETTY_GROUP" "$JETTY_BASE/config/catalog-fe"
chmod -R 0755 "$JETTY_BASE/config/catalog-fe"