We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba68af commit f1ce1bdCopy full SHA for f1ce1bd
1 file changed
os/installer/install.sh
@@ -9,6 +9,10 @@ cat > $DISK_CONFIG_FILE << EOL
9
disk = {
10
EOL
11
for disk in $(lsblk --nodeps --json | jq '.blockdevices[] | select(.type == "disk" and .rm == false and .ro == false) | .name' -r); do # Find all attached disks
12
+ if [[ disk == "zram"* ]] ; then
13
+ continue
14
+ fi
15
+
16
cat >> $DISK_CONFIG_FILE << EOL
17
disk${DISK_COUNTER} = {
18
device = "/dev/${disk}";
0 commit comments