Search results

  1. A

    Debian 13 LXC Template

    More information, systemd-resolved is installed but not in use because PVE is overwriting /etc/resolv.conf. This is also a problem on Ubuntu where /etc/network/interfaces has been replaced with /etc/systemd/network/eth0.network, but PVE isn't adding DNS= entries to the interface configuration...
  2. A

    Debian 13 LXC Template

    I was talking a peak at this because I was curious how much changed. Using the the official Debian cloud images as references you can compare the package lists at [0] and [1] and see that isc-dhcp-client was indeed dropped for dhcpcd-base, but both of these cloud images are using cloud-init and...
  3. A

    proxmox-backup-client password from file

    fabian, I don't think file descriptors is the right tool for this. Systemd specifically doesn't support redirection in the Exec commands so the proxmox-backup-client command would need to be wrapped in sh -c. Yes that could work but imho its dirty hack and ugly. I think a proper solution would...
  4. A

    [TUTORIAL] How to install Proxmox Backup Client under Ubuntu%

    Since the pbs-client repository is only compiled for amd64 you need to limit the sources.list entry to only amd64. Use the following instead. echo "deb [arch=amd64] http://download.proxmox.com/debian/pbs-client buster main" > /etc/apt/sources.list.d/pbs-client.list
  5. A

    proxmox-backup-client password from file

    Is there a way to have proxmox-backup-client read the user password from a file instead of an environment variable? An example usage of this would be for systemd LoadCredential or docker secrets. This would be useful even with tokens so that the secret can be stored on the filesystem non world...