7 lines
264 B
Bash
7 lines
264 B
Bash
#!/bin/bash
|
|
|
|
# Create backup and remove subscription warning from js file
|
|
sed -Ezi.bak "s/(function \(orig_cmd\) \{)/\1\n orig_cmd();\n return;/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
|
|
|
systemctl restart pveproxy.service
|