forked from mirrors/nixpkgs
Do not relocate /nix and /tmp to small disks on AWS
The default behavior with an m3.medium instance is to relocate /nix and /tmp to /disk0 because an assumption is made that any ephemeral disk is larger than the root volume. Rather than make that assumption, add a check to see if the disk is larger, and only then relocate /nix and /tmp. This addresses https://github.com/NixOS/nixpkgs/issues/12613
This commit is contained in:
parent
58046b7f03
commit
f10bead8fd
|
@ -68,7 +68,11 @@ let cfg = config.ec2; in
|
||||||
diskNr=$((diskNr + 1))
|
diskNr=$((diskNr + 1))
|
||||||
echo "mounting $device on $mp..."
|
echo "mounting $device on $mp..."
|
||||||
if mountFS "$device" "$mp" "" ext3; then
|
if mountFS "$device" "$mp" "" ext3; then
|
||||||
if [ -z "$diskForUnionfs" ]; then diskForUnionfs="$mp"; fi
|
if [ -z "$diskForUnionfs" -a \
|
||||||
|
$(lsblk -bno size $device) -gt $(lsblk -bno size /dev/xvda1)
|
||||||
|
]; then
|
||||||
|
diskForUnionfs="$mp";
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "skipping unknown device type $device"
|
echo "skipping unknown device type $device"
|
||||||
|
|
Loading…
Reference in a new issue