10 lines
194 B
Bash
10 lines
194 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Ensure the history directory exists and has correct ownership
|
||
|
|
mkdir -p /app/history
|
||
|
|
chown -R ctf:ctf /app/history
|
||
|
|
|
||
|
|
# Run the grob service as ctf user
|
||
|
|
exec runuser -u ctf /app/grob
|
||
|
|
|