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

Unified Diff: skolo/raspberry-pi/finalize_image.yml

Issue 1933243002: Mount sd partitions as noatime and fix df (Closed) Base URL: https://skia.googlesource.com/buildbot@script-on-start
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | skolo/raspberry-pi/setup-swarming.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skolo/raspberry-pi/finalize_image.yml
diff --git a/skolo/raspberry-pi/finalize_image.yml b/skolo/raspberry-pi/finalize_image.yml
index 4316d7b6e60fa840106ffc046707e4c99357f67b..3025ce2bb9839d93a0c98374fb8e8d96b1ba8f4b 100644
--- a/skolo/raspberry-pi/finalize_image.yml
+++ b/skolo/raspberry-pi/finalize_image.yml
@@ -14,10 +14,10 @@
tasks:
# Set up mounts in image's fstab
- lineinfile: dest=/opt/raspberrypi/root/etc/fstab regexp=".*mmcblk0p2.*" state=absent
- - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p3 /b ext4 defaults 0 2" state=present
- - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p5 /var ext4 defaults 0 2" state=present
- - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p6 /tmp ext4 defaults 0 2" state=present
- - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p7 /home/chrome-bot ext4 defaults 0 2" state=present
+ - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p3 /b ext4 defaults,noatime 0 2" state=present
+ - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p5 /var ext4 defaults,noatime 0 2" state=present
+ - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p6 /tmp ext4 defaults,noatime 0 2" state=present
+ - lineinfile: dest=/opt/raspberrypi/root/etc/fstab line="/dev/mmcblk0p7 /home/chrome-bot ext4 defaults,noatime 0 2" state=present
# Swarming needs a /b file (which will have an SD card partition mounted to it.)
- file: path=/opt/raspberrypi/root/b state=directory mode=0777
« no previous file with comments | « no previous file | skolo/raspberry-pi/setup-swarming.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698