Skip to content

Commit

Permalink
AWS deploy: ensure stderr is redirected to log file
Browse files Browse the repository at this point in the history
Co-authored-by: iknite <[email protected]>
  • Loading branch information
panchoh and iknite committed Feb 25, 2019
1 parent 5fcc55d commit 9b16e9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy/aws/provision/templates/qed-start.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@

export QED_HOME=/var/qed
{% if 'role_qed' in group_names %}
nohup $QED_HOME/qed start >> $QED_HOME/qed.log &
nohup $QED_HOME/qed start >> $QED_HOME/qed.log 2>&1 &
{% endif %}
{% if 'role_monitor' in group_names %}
nohup $QED_HOME/qed agent monitor >> $QED_HOME/qed.log &
nohup $QED_HOME/qed agent monitor >> $QED_HOME/qed.log 2>&1 &
{% endif %}
{% if 'role_auditor' in group_names %}
nohup $QED_HOME/qed agent auditor >> $QED_HOME/qed.log &
nohup $QED_HOME/qed agent auditor >> $QED_HOME/qed.log 2>&1 &
{% endif %}
{% if 'role_publisher' in group_names %}
nohup $QED_HOME/qed agent publisher >> $QED_HOME/qed.log &
nohup $QED_HOME/qed agent publisher >> $QED_HOME/qed.log 2>&1 &
{% endif %}

0 comments on commit 9b16e9e

Please sign in to comment.