Sfoglia il codice sorgente

在install的时候创建/etc/reach/ipc目录 (#34)

LoGin 1 anno fa
parent
commit
7c7ad4f026
2 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 1 0
      Makefile
  2. 1 1
      src/systemctl/listener/mod.rs

+ 1 - 0
Makefile

@@ -33,5 +33,6 @@ fmt-check:
 .PHONY: install
 install:
 	mkdir -p $(INSTALL_DIR)/etc/reach/system
+	mkdir -p $(INSTALL_DIR)/etc/reach/ipc
 	cp ./parse_test/shell.service $(INSTALL_DIR)/etc/reach/system/shell.service
 	RUSTFLAGS=$(RUSTFLAGS) cargo $(TOOLCHAIN) install --path . --no-track --root $(INSTALL_DIR) --force

+ 1 - 1
src/systemctl/listener/mod.rs

@@ -92,7 +92,7 @@ impl Systemctl {
             let ret = unsafe { libc::mkfifo(path.as_ptr(), 0o666) };
             if ret != 0 {
                 // 创建管道失败打日志
-                panic!("create ctl pipe failed");
+                panic!("create ctl pipe failed, err: {ret}");
             }
         }
     }