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/rrdbot/rrdbotd.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/rrdbot/rrdbotd.initd')
-rw-r--r-- | testing/rrdbot/rrdbotd.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/rrdbot/rrdbotd.initd b/testing/rrdbot/rrdbotd.initd index d0fcdc4a6d..5fae6e8dda 100644 --- a/testing/rrdbot/rrdbotd.initd +++ b/testing/rrdbot/rrdbotd.initd @@ -13,7 +13,7 @@ start() { ebegin "Starting ${name}" start-stop-daemon --start --quiet \ --pidfile "$pidfile" \ - --chuid ${rrdbotd_user:-rrdbotd}:${rrdbotd_group:-rrdbotd} \ + --user ${rrdbotd_user:-rrdbotd}:${rrdbotd_group:-rrdbotd} \ --exec ${daemon} -- ${rrdbotd_opts} -p "$pidfile" eend $? } |