From 5de4ef6cb71a4a07492ab0f28b0bb35cb6ab2e21 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 15 Nov 2020 13:03:33 +0100 Subject: tools/create-gce-image.sh: move sysctl's to executor Move the remaining sysctls from image creation scripts into executor. We have the rest in executor now, and these are captured in reproducers and are not duplicated. It seems that ping_group_range was accidentially lost along the way, re-add it. --- tools/create-gce-image.sh | 2 -- 1 file changed, 2 deletions(-) (limited to 'tools/create-gce-image.sh') diff --git a/tools/create-gce-image.sh b/tools/create-gce-image.sh index 075143fcc..86aa8ef36 100755 --- a/tools/create-gce-image.sh +++ b/tools/create-gce-image.sh @@ -154,8 +154,6 @@ echo 'ATTR{name}=="vim2m", SYMLINK+="vim2m"' | sudo tee -a disk.mnt/etc/udev/rul echo 'SUBSYSTEMS=="pci", DRIVERS=="i915", SYMLINK+="i915"' | sudo tee -a disk.mnt/etc/udev/rules.d/60-drm.rules # sysctls -echo "kernel.printk = 7 4 1 3" | sudo tee -a disk.mnt/etc/sysctl.conf -echo "debug.exception-trace = 0" | sudo tee -a disk.mnt/etc/sysctl.conf SYZ_SYSCTL_FILE="${SYZ_SYSCTL_FILE:-}" if [ "$SYZ_SYSCTL_FILE" != "" ]; then cat $SYZ_SYSCTL_FILE | sudo tee -a disk.mnt/etc/sysctl.conf -- cgit mrf-deployment