diff --git a/DEBIAN/control b/DEBIAN/control new file mode 100644 index 0000000..8600595 --- /dev/null +++ b/DEBIAN/control @@ -0,0 +1,14 @@ +Package: proxmox-backup-client-static +Source: rust-proxmox-backup +Version: 3.4.0-1 +Architecture: amd64 +Maintainer: Proxmox Support Team +Installed-Size: 18031 +Depends: qrencode +Conflicts: proxmox-backup-client +Section: admin +Priority: optional +Homepage: https://www.proxmox.com +Description: Proxmox Backup Client tools (statically linked) + This package contains the Proxmox Backup client, which provides a + simple command line tool to create and restore backups. diff --git a/DEBIAN/md5sums b/DEBIAN/md5sums new file mode 100644 index 0000000..04648c2 --- /dev/null +++ b/DEBIAN/md5sums @@ -0,0 +1,6 @@ +a76c3141d4a86a402723a19f3e947288 usr/bin/proxmox-backup-client +bb492b1b3ef6148c6cb5996611acf0a4 usr/share/bash-completion/completions/proxmox-backup-client +361809a27974a03a5ebc373498252c1d usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz +27a80f8679c5d173c95606cebbe2527e usr/share/doc/proxmox-backup-client-static/copyright +d91dbdc4f43dcf948c5d06ec08571c4f usr/share/man/man1/proxmox-backup-client.1.gz +5f6322bacd68ecab50e179f8e53cef1f usr/share/zsh/vendor-completions/_proxmox-backup-client diff --git a/proxmox-backup-client-static_3.4.0-1_amd64.deb b/proxmox-backup-client-static_3.4.0-1_amd64.deb new file mode 100644 index 0000000..c551906 --- /dev/null +++ b/proxmox-backup-client-static_3.4.0-1_amd64.deb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f440ae4b4e4f6c5dbcabf8ccd33a6aab60a9048423c108e103823d585b91394 +size 5140360 diff --git a/usr/bin/proxmox-backup-client b/usr/bin/proxmox-backup-client new file mode 100755 index 0000000..e116adc --- /dev/null +++ b/usr/bin/proxmox-backup-client @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e94a2c5817479236de7a6204cca5ba0f66a2bbae7c1d156cef83870e0a17bf +size 18400416 diff --git a/usr/share/bash-completion/completions/proxmox-backup-client b/usr/share/bash-completion/completions/proxmox-backup-client new file mode 100644 index 0000000..68f5ce5 --- /dev/null +++ b/usr/share/bash-completion/completions/proxmox-backup-client @@ -0,0 +1,8 @@ +# proxmox-backup-client bash completion + +# see http://tiswww.case.edu/php/chet/bash/FAQ +# and __ltrim_colon_completions() in /usr/share/bash-completion/bash_completion +# this modifies global var, but I found no better way +COMP_WORDBREAKS=${COMP_WORDBREAKS//:} + +complete -C 'proxmox-backup-client bashcomplete' proxmox-backup-client diff --git a/usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz b/usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz new file mode 100644 index 0000000..2508034 Binary files /dev/null and b/usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz differ diff --git a/usr/share/doc/proxmox-backup-client-static/copyright b/usr/share/doc/proxmox-backup-client-static/copyright new file mode 100644 index 0000000..4b7e942 --- /dev/null +++ b/usr/share/doc/proxmox-backup-client-static/copyright @@ -0,0 +1,16 @@ +Copyright (C) 2019 - 2025 Proxmox Server Solutions GmbH + +This software is written by Proxmox Server Solutions GmbH + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . diff --git a/usr/share/man/man1/proxmox-backup-client.1.gz b/usr/share/man/man1/proxmox-backup-client.1.gz new file mode 100644 index 0000000..2970442 Binary files /dev/null and b/usr/share/man/man1/proxmox-backup-client.1.gz differ diff --git a/usr/share/zsh/vendor-completions/_proxmox-backup-client b/usr/share/zsh/vendor-completions/_proxmox-backup-client new file mode 100644 index 0000000..f7e6f3f --- /dev/null +++ b/usr/share/zsh/vendor-completions/_proxmox-backup-client @@ -0,0 +1,13 @@ +#compdef _proxmox-backup-client() proxmox-backup-client + +function _proxmox-backup-client() { + local cwords line point cmd curr prev + cwords=${#words[@]} + line=$words + point=${#line} + cmd=${words[1]} + curr=${words[cwords]} + prev=${words[cwords-1]} + compadd -- $(COMP_CWORD="$cwords" COMP_LINE="$line" COMP_POINT="$point" \ + proxmox-backup-client bashcomplete "$cmd" "$curr" "$prev") +}