This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# see related issue: https://github.com/rundeck/rundeck/issues/357 | |
# import vars | |
source ~/.rd/rd.conf | |
# make sure rd & jq commands are in the PATH | |
which -- rd jq >/dev/null || exit 1 | |
del_executions() { | |
local project=$1 | |
while true; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TimeoutException extends RuntimeException {} | |
class Timeout | |
{ | |
private $active; | |
public function set($seconds) | |
{ |