Browse Source

Update install.func

tweak
tteckster 2 years ago
parent
commit
f0a8502c96
1 changed files with 8 additions and 7 deletions
  1. 8 7
      misc/install.func

+ 8 - 7
misc/install.func

@@ -83,6 +83,7 @@ setting_up_container() {
     echo -e " 🖧  Check Network Settings"
     exit 1
   fi
+  rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
   msg_ok "Set up Container OS"
   msg_ok "Network Connected: ${BL}$(hostname -I)"
 }
@@ -132,16 +133,16 @@ motd_ssh() {
 # This function customizes the container by modifying the getty service and enabling auto-login for the root user
 customize() {
   if [[ "$PASSWORD" == "" ]]; then
-  msg_info "Customizing Container"
-  GETTY_OVERRIDE="/etc/systemd/system/container-getty@1.service.d/override.conf"
-  mkdir -p $(dirname $GETTY_OVERRIDE)
-  cat <<EOF >$GETTY_OVERRIDE
+    msg_info "Customizing Container"
+    GETTY_OVERRIDE="/etc/systemd/system/container-getty@1.service.d/override.conf"
+    mkdir -p $(dirname $GETTY_OVERRIDE)
+    cat <<EOF >$GETTY_OVERRIDE
   [Service]
   ExecStart=
   ExecStart=-/sbin/agetty --autologin root --noclear --keep-baud tty%I 115200,38400,9600 \$TERM
 EOF
-  systemctl daemon-reload
-  systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
-  msg_ok "Customized Container"
+    systemctl daemon-reload
+    systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
+    msg_ok "Customized Container"
   fi
 }