6 lines
148 B
Bash
6 lines
148 B
Bash
#!/bin/sh
|
|
# Run the agent as the unprivileged 'yanpm-agent' user
|
|
cd /app
|
|
echo "Starting yanpm-agent..."
|
|
exec s6-setuidgid yanpm-agent ./yanpm-agent
|