From 1a553a30c93dd16fd9dc7aa91b65fd853d3f7473 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 15 May 2023 15:09:54 -0400 Subject: [PATCH] Create CODE-AUDIT.md --- CODE-AUDIT.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CODE-AUDIT.md diff --git a/CODE-AUDIT.md b/CODE-AUDIT.md new file mode 100644 index 00000000..a3f07aa1 --- /dev/null +++ b/CODE-AUDIT.md @@ -0,0 +1,9 @@ +In the case of the < app > LXC, the process involves running multiple scripts for each application or service.
+Initially, the `.sh` script is executed to collect system parameters.
+Next, the `build.func` script adds user settings and integrates all the collected information.
+Then, the `create_lxc.sh` script constructs the LXC container.
+Following that, the `-install.sh` script is executed, which utilizes the functions exported from the `install.func` script for installing the required applications.
+Finally, the process returns to the `.sh` script to display the completion message.
+ +Thoroughly evaluating the `-install.sh` script is crucial to gain a better understanding of the application installation process.
+Every application installation utilizes the same set of reusable scripts: `build.func`, `create_lxc.sh`, and `install.func`. These scripts are not specific to any particular application.