Skip to content

Commit

Permalink
app-crypt/mit-krb5: fix quotes in init script
Browse files Browse the repository at this point in the history
Gentoo-Bug: 564574

Package-Manager: portage-2.2.23
  • Loading branch information
erayaslan committed Nov 4, 2015
1 parent b5aca25 commit a8b3cea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app-crypt/mit-krb5/files/mit-krb5kadmind.initd-r2
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depend() {

start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} -- "${KADMIND_OPTS}" 1>&2
start-stop-daemon --start --quiet --exec ${exec} -- ${KADMIND_OPTS} 1>&2
eend $? "Error starting $daemon"
}

Expand Down
2 changes: 1 addition & 1 deletion app-crypt/mit-krb5/files/mit-krb5kdc.initd-r2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ depend() {

start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} -- "${KDC_OPTS}" 1>&2
start-stop-daemon --start --quiet --exec ${exec} -- ${KDC_OPTS} 1>&2
eend $? "Error starting $daemon"
}

Expand Down
2 changes: 1 addition & 1 deletion app-crypt/mit-krb5/files/mit-krb5kpropd.initd-r2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ depend() {

start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} -- "${KPROPD_OPTS}" 1>&2
start-stop-daemon --start --quiet --exec ${exec} -- ${KPROPD_OPTS} 1>&2
eend $? "Error starting $daemon"
}

Expand Down

0 comments on commit a8b3cea

Please sign in to comment.