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

Side by Side Diff: experimental/webtry/setup/webtry_setup.sh

Issue 602293002: Reinitialize monit to changes take effect. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Script to setup a GCE instance to run the webtry server. 3 # Script to setup a GCE instance to run the webtry server.
4 # For full instructions see the README file. 4 # For full instructions see the README file.
5 sudo apt-get install schroot debootstrap monit squid3 5 sudo apt-get install schroot debootstrap monit squid3
6 sudo apt-get install g++ libfreetype6 libfreetype6-dev libpng12-0 libpng12-dev l ibglu1-mesa-dev mesa-common-dev freeglut3-dev libgif-dev libfontconfig libfontco nfig-dev 6 sudo apt-get install g++ libfreetype6 libfreetype6-dev libpng12-0 libpng12-dev l ibglu1-mesa-dev mesa-common-dev freeglut3-dev libgif-dev libfontconfig libfontco nfig-dev
7 7
8 echo "Adding the webtry user account" 8 echo "Adding the webtry user account"
9 sudo adduser webtry 9 sudo adduser webtry
10 10
(...skipping 13 matching lines...) Expand all
24 sudo cp --parents `ldd /home/webtry/skia/out/Debug/webtry | cut -d " " -f 3` /sr v/chroot/webtry 24 sudo cp --parents `ldd /home/webtry/skia/out/Debug/webtry | cut -d " " -f 3` /sr v/chroot/webtry
25 sudo cp --parents `ldd /bin/sh | cut -d " " -f 3` /srv/chroot/webtry 25 sudo cp --parents `ldd /bin/sh | cut -d " " -f 3` /srv/chroot/webtry
26 26
27 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_init /etc/init.d/webtry 27 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_init /etc/init.d/webtry
28 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_monit /etc/monit/conf.d /webtry 28 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_monit /etc/monit/conf.d /webtry
29 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_squid /etc/squid3/squid .conf 29 sudo cp /home/webtry/skia/experimental/webtry/sys/webtry_squid /etc/squid3/squid .conf
30 sudo chmod 744 /etc/init.d/webtry 30 sudo chmod 744 /etc/init.d/webtry
31 31
32 # Confirm that monit is happy. 32 # Confirm that monit is happy.
33 sudo monit -t 33 sudo monit -t
34 sudo monit reload
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698