mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
5 lines
221 B
Bash
Executable file
5 lines
221 B
Bash
Executable file
#!/bin/bash
|
|
# `/sbin/setuser memcache` runs the given command as the user `memcache`.
|
|
# If you omit that part, the command will be run as root.
|
|
exec /sbin/setuser memcache /usr/bin/memcached >>/var/log/memcached.log 2>&1
|