Compare commits

..

No commits in common. "e61a674135e4cfff4897a83bc9ed82a1abf8cfd4" and "799ee9af3c26f581fa65c77906a534a7c8318d24" have entirely different histories.

2 changed files with 18 additions and 17 deletions

View File

@ -1,22 +1,22 @@
{ {
"name": "Synology VM", "name": "Synology VM",
"slug": "synology-VM", "slug": "Synology VM",
"categories": [ "categories": [
12 0
], ],
"date_created": "20-01-25", "date_created": "20-01-25",
"type": "vm", "type": "VM",
"updateable": false, "updateable": false,
"privileged": false, "privileged": false,
"interface_port": 5000, "interface_port": 5000,
"documentation": null, "documentation": null,
"website": "https://auxxxilium.tech/", "website": "https://auxxxilium.tech/",
"logo": "https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/synology-dsm.svg", "logo": "https://auxxxilium.tech/wp-content/uploads/2022/12/Aux_Render_1x1_Logo-1-300x300.png",
"description": "This script installs Arc Bootloader this tool gives you the ability to run Synology inside Proxmox. After installation Start the vm and open arc config, in there navigate to Hardware ID for Arc Patch. After connecting that go back and choose a model!", "description": "This script installs Arc Bootloader this tool gives you the ability to run Synology inside Proxmox",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "vm/synology-vm.sh", "script": "vm/Synology-VM-Install.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 2,
"ram": 4096, "ram": 4096,

View File

@ -1,18 +1,19 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright (c) 2021-2025 community-scripts ORG # Copyright (c) 2021-2025 tteck
# Author: tim104979 (tim104979) # Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # License: MIT
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
function header_info { function header_info {
clear clear
cat <<"EOF" cat <<"EOF"
_____ __ ____ _ __ ____ __
/ ___/__ ______ ____ / /___ ____ ___ __ / ___| _ _ _ __ ___ | | ___ __ _ _ _ \ \ / / \/ |
\__ \/ / / / __ \/ __ \/ / __ \/ __ `/ / / / \___ \| | | | '_ \ / _ \| |/ _ \ / _` | | | | \ \ / /| |\/| |
___/ / /_/ / / / / /_/ / / /_/ / /_/ / /_/ / ___) | |_| | | | | (_) | | (_) | (_| | |_| | \ V / | | | |
/____/\__, /_/ /_/\____/_/\____/\__, /\__, / |____/ \__, |_| |_|\___/|_|\___/ \__, |\__, | \_/ |_| |_|
/____/ /____//____/ |___/ |___/ |___/
EOF EOF
} }
header_info header_info