This file contains hidden or 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
| diff --git a/master/buildbot/process/botmaster.py b/master/buildbot/process/botmaster.py | |
| index 4f1f348..a5f28f3 100644 | |
| --- a/master/buildbot/process/botmaster.py | |
| +++ b/master/buildbot/process/botmaster.py | |
| @@ -317,11 +317,19 @@ class BotMaster(config.ReconfigurableServiceMixin, service.MultiService): | |
| """ | |
| Call this when something suggests that a particular slave may now be | |
| available to start a build. | |
| + We delay this for 10 seconds, so that if multiple slaves start at the same | |
| + time, builds will be distributed between them. |
This file contains hidden or 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
| # ~/.bashrc function | |
| # Use `docker-cleanup --dry-run` to see what would be deleted. | |
| function docker-cleanup { | |
| EXITED=$(docker ps -q -f status=exited) | |
| DANGLING=$(docker images -q -f "dangling=true") | |
| if [ "$1" == "--dry-run" ]; then | |
| echo "==> Would stop containers:" | |
| echo $EXITED | |
| echo "==> And images:" |
This file contains hidden or 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
| find . -type f -exec sed -i 's/find/replace/g' {} \; |
This file contains hidden or 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 | |
| # find all .git directories and exec "git pull" on the parent. | |
| find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \; |
This file contains hidden or 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
| ssh user@host "echo '`cat ~/.ssh/id_rsa.pub`' >> ~/.ssh/authorized_keys" |
This file contains hidden or 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
| drush @ALIAS vdel cron_semaphore | |
| drush @ALIAS vdel cron_last | |
| drush @ALIAS sqlq "delete from semaphore" |
This file contains hidden or 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
| UPDATE `system` SET `status` = '0' WHERE `name` = 'MODULENAME' LIMIT 1; |
This file contains hidden or 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
| UPDATE `files` SET `filepath` = REPLACE(`filepath`, "sites/SITEDOMAIN/files/", "files/SITEDOMAIN/"); |
This file contains hidden or 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
| drush @SITELIST pmi MODULE -y | grep Status |
This file contains hidden or 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
| # show installed brew formula version | |
| function brew-version { | |
| brew info $1 | awk '{print $3}' | head -n1 | |
| } | |
| # show last available brew formula version | |
| function brew-last-version { | |
| brew versions $1 | awk '{print $1}' | head -n1 | |
| } |
NewerOlder