condor_off -schedd <hostname>
 {endcode}
 
-During graceful shutdown of the schedd, all running standard universe jobs are stopped and checkpointed.  All other jobs are left running (if they have a non-zero JobLeaseDuration, which is 20 minutes by default).  The schedd gracefully disconnects from them in the hope of being able to later reconnect to the running jobs when it starts back up.  If the lease runs out before the schedd reconnects to the jobs, then they are killed.  Therefore, if you need a longer down time, you should increase the lease.  You can increase the default by adding the following to your Condor configuration:
+During graceful shutdown of the schedd, all running standard universe jobs are stopped and checkpointed.  All other jobs are left running (if they have a non-zero {quote: JobLeaseDuration}, which is 20 minutes by default).  The schedd gracefully disconnects from them in the hope of being able to later reconnect to the running jobs when it starts back up.  If the lease runs out before the schedd reconnects to the jobs, then they are killed.  Therefore, if you need a longer down time, you should increase the lease.  You can increase the default by adding the following to your Condor configuration:
 
 {code}
-JobLeaseDuration = 5400
+{quote:JobLeaseDuration} = 5400
 SUBMIT_EXPRS = $(SUBMIT_EXPRS) JobLeaseDuration
 {endcode}