diff options
author | Jesse Young <jlyo@jlyo.org> | 2011-11-25 12:46:26 -0600 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-12-01 07:15:51 +0000 |
commit | ae1967b66eba132dd8c9fa5b5f57712d012b6647 (patch) | |
tree | fca1c166178cd340ea41b6d3794cf58c4152f2f4 /testing/drizzle/drizzle.initd | |
parent | 379338be8b4cd31b24080f7f01ae14fe124a84ae (diff) | |
download | aports-ae1967b66eba132dd8c9fa5b5f57712d012b6647.tar.bz2 aports-ae1967b66eba132dd8c9fa5b5f57712d012b6647.tar.xz |
Replace instances of "--chuid" to "--user" in initd scripts
Fixes #776
Signed-off-by: Jesse Young <jlyo@jlyo.org>
Diffstat (limited to 'testing/drizzle/drizzle.initd')
-rw-r--r-- | testing/drizzle/drizzle.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/drizzle/drizzle.initd b/testing/drizzle/drizzle.initd index 55bdd9bf2..7428c360e 100644 --- a/testing/drizzle/drizzle.initd +++ b/testing/drizzle/drizzle.initd @@ -14,7 +14,7 @@ start() { ebegin "Starting ${name}" start-stop-daemon --start --quiet \ --pidfile /var/run/${name}.pid \ - --chuid drizzle:drizzle \ + --user drizzle:drizzle \ --exec ${daemon} eend $? } |