浏览代码

Update post-pve-install.sh (#1175) (#1176)

Use a more specific regular expression to locate the line to modify.

Co-authored-by: Alex Leigh
tteckster 2 年之前
父节点
当前提交
51def5ec4c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      misc/post-pve-install.sh

+ 1 - 1
misc/post-pve-install.sh

@@ -109,7 +109,7 @@ fi
 read -r -p "Disable Subscription Nag? <y/N> " prompt
 if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
     msg_info "Disabling Subscription Nag"
-    echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data.status/{s/\!//;s/active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi\"; };" >/etc/apt/apt.conf.d/no-nag-script
+    echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data\.status.*{/{s/\!//;s/active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi\"; };" >/etc/apt/apt.conf.d/no-nag-script
     apt --reinstall install proxmox-widget-toolkit &>/dev/null
     msg_ok "Disabled Subscription Nag (Delete browser cache)"
 fi