Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(447)

Side by Side Diff: skolo/raspberry-pi/startup-script.sh

Issue 1930143002: Make swarming bootstrap at boot, not login (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # Hack to get swarming access to /b
4 sudo chmod 777 /b
5
6 if [ ! -d "/b/swarm_slave" ]; then
7 cd /b
8 echo "Bootstrapping swarming, expect a reboot"
9 python -c "import urllib; exec urllib.urlopen('https://chromium-swarm.appspot. com/bootstrap').read()"
10 else
11 echo "Starting swarming"
12 /usr/bin/python /b/swarm_slave/swarming_bot.zip start_bot &
13 fi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698