Browse Source

Add static proxmox-backup-client 3.4.0 files

master
James Moore 1 year ago
parent
commit
95e7f471f6
9 changed files with 63 additions and 0 deletions
  1. +14
    -0
      DEBIAN/control
  2. +6
    -0
      DEBIAN/md5sums
  3. BIN
      proxmox-backup-client-static_3.4.0-1_amd64.deb
  4. BIN
      usr/bin/proxmox-backup-client
  5. +8
    -0
      usr/share/bash-completion/completions/proxmox-backup-client
  6. BIN
      usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz
  7. +16
    -0
      usr/share/doc/proxmox-backup-client-static/copyright
  8. BIN
      usr/share/man/man1/proxmox-backup-client.1.gz
  9. +13
    -0
      usr/share/zsh/vendor-completions/_proxmox-backup-client

+ 14
- 0
DEBIAN/control View File

@ -0,0 +1,14 @@
Package: proxmox-backup-client-static
Source: rust-proxmox-backup
Version: 3.4.0-1
Architecture: amd64
Maintainer: Proxmox Support Team <[email protected]>
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.

+ 6
- 0
DEBIAN/md5sums View File

@ -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

BIN
proxmox-backup-client-static_3.4.0-1_amd64.deb (Stored with Git LFS) View File

size 5140360

BIN
usr/bin/proxmox-backup-client (Stored with Git LFS) View File

size 18400416

+ 8
- 0
usr/share/bash-completion/completions/proxmox-backup-client View File

@ -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

BIN
usr/share/doc/proxmox-backup-client-static/changelog.Debian.gz View File


+ 16
- 0
usr/share/doc/proxmox-backup-client-static/copyright View File

@ -0,0 +1,16 @@
Copyright (C) 2019 - 2025 Proxmox Server Solutions GmbH
This software is written by Proxmox Server Solutions GmbH <[email protected]>
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 <http://www.gnu.org/licenses/>.

BIN
usr/share/man/man1/proxmox-backup-client.1.gz View File


+ 13
- 0
usr/share/zsh/vendor-completions/_proxmox-backup-client View File

@ -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")
}

Loading…
Cancel
Save