Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
- name: Check bash syntax
run: |
errors=0
for f in $(find . -name '*.sh' -type f); do
while IFS= read -r -d '' f; do
if ! bash -n "$f"; then
echo "Syntax error in $f"
errors=$((errors + 1))
fi
done
done < <(find . -name '*.sh' -type f -print0)
if [ "$errors" -gt 0 ]; then
echo "$errors file(s) with syntax errors"
exit 1
Expand Down Expand Up @@ -67,7 +67,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: raven-actions/actionlint@v2
- name: Install actionlint
run: bash <(curl -s https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
- name: Run actionlint
run: ./actionlint

markdownlint:
name: Markdown Lint
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# ProxRescue
Proxmox Products Installer in Rescue Mode for Hetzner

Proxmox Products Installer in Rescue Mode for Hetzner

Description

This script is designed to install Proxmox products (Proxmox Virtual Environment, Proxmox Backup Server, Proxmox Mail Gateway) in rescue mode on Hetzner servers. It allows you to select the product to install, configure VNC connection settings, and use UEFI if needed. Additionally, the script can launch the installed Proxmox system, allowing you to connect via VNC or noVNC.


Requirements

Before running the script, ensure that your system has the following packages installed:
Expand Down Expand Up @@ -122,12 +121,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.

Communities and Support

Telegram: Proxmox_UA
GitHub: https://github.com/Proxmoxinfo/ProxMoxRescueHelper
Website: proxmox.info

This script is designed for installing Proxmox products in rescue mode on Hetzner servers.
This script is designed for installing Proxmox products in rescue mode on Hetzner servers.