2016-11-21 02:50:30 +00:00
|
|
|
#!/bin/bash
|
2016-11-11 04:54:47 +00:00
|
|
|
# `/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
|