mirror of https://github.com/tteck/Proxmox.git
Compare commits
8 Commits
27d1e0af35
...
d56a46bc47
Author | SHA1 | Date |
---|---|---|
|
d56a46bc47 | |
|
54d791f5c1 | |
|
d55d44bc9b | |
|
b6a3e822b1 | |
|
d5a4a33f87 | |
|
9a7973f92f | |
|
c6e909e731 | |
|
9b9facf773 |
|
@ -9,16 +9,38 @@ body:
|
||||||
- Changing Linux distributions without confirming the proper functioning of default settings.
|
- Changing Linux distributions without confirming the proper functioning of default settings.
|
||||||
- When encountering the error message `[ERROR] in line 24: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue.
|
- When encountering the error message `[ERROR] in line 24: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue.
|
||||||
- For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/tteck/Proxmox/discussions)
|
- For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/tteck/Proxmox/discussions)
|
||||||
|
- type: input
|
||||||
|
id: guidelines
|
||||||
|
attributes:
|
||||||
|
label: Please verify that you have read and understood the guidelines.
|
||||||
|
placeholder: 'yes'
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: bug
|
id: bug
|
||||||
attributes:
|
attributes:
|
||||||
label: A clear and concise description of the issue.
|
label: A clear and concise description of the issue.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: distribution
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
attributes:
|
||||||
|
label: Which Linux distribution are you employing?
|
||||||
|
options:
|
||||||
|
-
|
||||||
|
- Default Settings
|
||||||
|
- Debian 11
|
||||||
|
- Debian 12
|
||||||
|
- Ubuntu 20.04
|
||||||
|
- Ubuntu 22.04
|
||||||
|
- Ubuntu 23.04
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: screenshot
|
id: screenshot
|
||||||
attributes:
|
attributes:
|
||||||
label: If relevant, including screenshots or a code block can be helpful in clarifying the issue.
|
label: If relevant, including screenshots or a code block can be helpful in clarifying the issue.
|
||||||
|
placeholder: Code blocks commence and conclude with three backticks (```).
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
|
|
@ -23,7 +23,7 @@ var_disk="2"
|
||||||
var_cpu="1"
|
var_cpu="1"
|
||||||
var_ram="512"
|
var_ram="512"
|
||||||
var_os="debian"
|
var_os="debian"
|
||||||
var_version="11"
|
var_version="12"
|
||||||
variables
|
variables
|
||||||
color
|
color
|
||||||
catch_errors
|
catch_errors
|
||||||
|
|
|
@ -25,6 +25,7 @@ $STD apt-get install -y make
|
||||||
$STD apt-get install -y zip
|
$STD apt-get install -y zip
|
||||||
$STD apt-get install -y exiftool
|
$STD apt-get install -y exiftool
|
||||||
$STD apt-get install -y ffmpeg
|
$STD apt-get install -y ffmpeg
|
||||||
|
$STD apt-get install -y libheif1
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Setting up Node.js Repository"
|
msg_info "Setting up Node.js Repository"
|
||||||
|
|
Loading…
Reference in New Issue