Kaynağa Gözat

Disable tipc

Bob Mottram 8 yıl önce
ebeveyn
işleme
b88a3e867b
1 değiştirilmiş dosya ile 7 ekleme ve 0 silme
  1. 7
    0
      src/freedombone-utils-setup

+ 7
- 0
src/freedombone-utils-setup Dosyayı Görüntüle

@@ -440,6 +440,10 @@ function disable_rds {
440 440
     echo "install rds /bin/true" > /etc/modprobe.d/rds.conf
441 441
 }
442 442
 
443
+function disable_tipc {
444
+    echo "install tipc /bin/true" > /etc/modprobe.d/tipc.conf
445
+}
446
+
443 447
 function lockdown_permissions {
444 448
     # All commands owned by root
445 449
     if [ -d /bin ]; then
@@ -557,6 +561,9 @@ function setup_utils {
557 561
     read_config_param "PROJECT_REPO"
558 562
     write_config_param "PROJECT_REPO" "$PROJECT_REPO"
559 563
 
564
+    function_check disable_tipc
565
+    disable_tipc
566
+
560 567
     function_check disable_rds
561 568
     disable_rds
562 569