Bob Mottram 10 лет назад
Родитель
Сommit
7aa75691a7
1 измененных файлов: 3 добавлений и 1 удалений
  1. 3
    1
      install-freedombone.sh

+ 3
- 1
install-freedombone.sh Просмотреть файл

194
   if grep -Fxq "enable_zram" $COMPLETION_FILE; then
194
   if grep -Fxq "enable_zram" $COMPLETION_FILE; then
195
 	  return
195
 	  return
196
   fi
196
   fi
197
-  echo "options zram num_devices=1" >> /etc/modprobe.d/zram.conf
197
+  if ! grep -q "options zram num_devices=1" /etc/modprobe.d/zram.conf; then
198
+      echo 'options zram num_devices=1' >> /etc/modprobe.d/zram.conf
199
+  fi
198
   echo '#!/bin/bash' > /etc/init.d/zram
200
   echo '#!/bin/bash' > /etc/init.d/zram
199
   echo '### BEGIN INIT INFO' >> /etc/init.d/zram
201
   echo '### BEGIN INIT INFO' >> /etc/init.d/zram
200
   echo '# Provides: zram' >> /etc/init.d/zram
202
   echo '# Provides: zram' >> /etc/init.d/zram