Update date in json (#5171)

Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
community-scripts-pr-app[bot] 2025-06-16 06:40:57 +01:00 committed by GitHub
parent 6e1ee7d16e
commit 7fc39a442b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,49 +1,48 @@
{ {
"name": "Proxmox VE LXC IP-Tag", "name": "Proxmox VE LXC IP-Tag",
"slug": "add-iptag", "slug": "add-iptag",
"categories": [ "categories": [
1 1
], ],
"date_created": "2025-06-15", "date_created": "2025-06-16",
"type": "addon", "type": "addon",
"updateable": false, "updateable": false,
"privileged": false, "privileged": false,
"interface_port": null, "interface_port": null,
"documentation": null, "documentation": null,
"website": null, "website": null,
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/proxmox.svg", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/proxmox.svg",
"config_path": "", "config_path": "",
"description": "This script automatically adds IP address as tags to LXC containers using a Systemd service. The service also updates the tags if a LXC IP address is changed.", "description": "This script automatically adds IP address as tags to LXC containers using a Systemd service. The service also updates the tags if a LXC IP address is changed.",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "tools/pve/add-iptag.sh", "script": "tools/pve/add-iptag.sh",
"resources": { "resources": {
"cpu": null, "cpu": null,
"ram": null, "ram": null,
"hdd": null, "hdd": null,
"os": null, "os": null,
"version": null "version": null
} }
} }
], ],
"default_credentials": { "default_credentials": {
"username": null, "username": null,
"password": null "password": null
},
"notes": [
{
"text": "Execute within the Proxmox shell",
"type": "info"
}, },
"notes": [ {
{ "text": "Configuration: `nano /opt/iptag/iptag.conf`. iptag.service must be restarted after change.",
"text": "Execute within the Proxmox shell", "type": "info"
"type": "info" },
}, {
{ "text": "The Proxmox Node must contain ipcalc and net-tools. `apt-get install -y ipcalc net-tools`",
"text": "Configuration: `nano /opt/iptag/iptag.conf`. iptag.service must be restarted after change.", "type": "warning"
"type": "info" }
}, ]
{
"text": "The Proxmox Node must contain ipcalc and net-tools. `apt-get install -y ipcalc net-tools`",
"type": "warning"
}
]
} }