Skip to content

Commit

Permalink
tmpfiles.eclass: fix call to tmpfiles for #603342
Browse files Browse the repository at this point in the history
  • Loading branch information
williamh committed Dec 23, 2016
1 parent b110719 commit 1fa75a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eclass/tmpfiles.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ tmpfiles_process() {

if type systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create "$@"
elif type opentmpfiles &> /dev/null; then
opentmpfiles --create "$@"
elif type tmpfiles &> /dev/null; then
tmpfiles --create "$@"
fi
if [[ $? -ne 0 ]]; then
ewarn "The tmpfiles processor exited with a non-zero exit code"
Expand Down

0 comments on commit 1fa75a8

Please sign in to comment.