mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-09 07:08:07 -05:00
8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
HOST_UID=$(stat -c %u /diaspora)
|
|
HOST_GID=$(stat -c %g /diaspora)
|
|
|
|
cd /diaspora
|
|
gosu $HOST_UID:$HOST_GID "$@"
|