@@ -112,9 +112,15 @@ deploy_log_stderr_path: "{{ deploy_dir_logs }}/stderr.log"
112
112
# If true, use deploy_service_prestart_script to run every time before the service is (re-)started
113
113
deploy_service_has_prestart_script : False
114
114
115
+ # If true, use deploy_service_poststart_script to run every time after the service is (re-)started
116
+ deploy_service_has_poststart_script : False
117
+
115
118
# Shell script to run if deploy_service_has_prestart_script is true
116
119
deploy_service_prestart_script : " "
117
120
121
+ # Shell script to run if deploy_service_has_poststart_script is true
122
+ deploy_service_poststart_script : " "
123
+
118
124
# The shell command used by the service to start your application
119
125
deploy_service_start_command : " bin/{{ deploy_app_name }}"
120
126
@@ -124,13 +130,13 @@ deploy_service_pidfile: "/var/run/{{ deploy_service_name }}.pid"
124
130
# If true, use deploy_service_prestop_script to run every time before the service is stopped
125
131
deploy_service_has_prestop_script : False
126
132
127
- # If true, use deploy_service_poststop_script to run every time before the service is stopped
133
+ # If true, use deploy_service_poststop_script to run every time after the service is stopped
128
134
deploy_service_has_poststop_script : False
129
135
130
- # Shell script to run if deploy_service_has_prestart_script is true
131
- deploy_service_preststop_script : " "
136
+ # Shell script to run if deploy_service_has_prestop_script is true
137
+ deploy_service_prestop_script : " "
132
138
133
- # Shell script to run if deploy_service_has_prestart_script is true
139
+ # Shell script to run if deploy_service_has_poststop_script is true
134
140
deploy_service_poststop_script : " "
135
141
136
142
# If true, service will start at boot time
0 commit comments