Search results

  1. O

    Put VM name into backup name

    Nothing to thank for. IMHO it hasn't to be clear in the documentation...we're on Linux here at this the Linux way: There is always a solution - just think around it and you'll find it.
  2. O

    Put VM name into backup name

    You are welcome. Glad to hear that it is working again and useful to you. Using your NFS NAS with PBS should work if you setup the NFS mount as directory in and for PBS and NAS' OS isn't using any quirked NFS options. I'm using PBS in two ways: On top of PVE for constant and quick backups of...
  3. O

    Put VM name into backup name

    Here is the latest version of my script. Not tested with PVE6 but should work there too. I've taken into account the change from maxfiles to prune-backups in vzdump.conf, so please consider this. And yes, it would be more useful to respect prune-backups from VM/container's config, but this is a...
  4. O

    Put VM name into backup name

    @andyn A quick look at your script shows me that IMHO target should be TARGET ... Please try this out.
  5. O

    Put VM name into backup name

    I can remember that the PVE team changed something with the given parameters (and/or something else), but I don't use my own script anymore since the availability of PBS. But nevertheless I'll take a look at my script later that day.
  6. O

    Hetzner, PVE 7.0 problems after reboot. Maybe ifupdown2

    Another thing I'm stumbling on: I'm supporting a bunch of Hetzner servers (1*EX51, 1*AX41, 2*AX60). The AX41 has only one public IP address, all others a having three public IP addresses. All /etc/network/interfaces are having a line containing pointopoint xxx.xxx.xxx.xxx for eth0 according to...
  7. O

    Hetzner, PVE 7.0 problems after reboot. Maybe ifupdown2

    Another one bite the dust. Just upgraded my PVE7, machine seems to come up but w/o (reachable) network. But I knew this thread and marked it as "important", so I kept and downgraded ifupdown2 to ifupdown2_3.0.0-1 and everythin is okay again.
  8. O

    Proxmox Mail Gateway 7.0 released

    Great, congrats! But alas, the day has only 24 hours!? ;)
  9. O

    Proxmox Backup Server 2.0 released!

    Just upgraded my small PBS box for SOHO use (installed since v0.8, WD Reds w/ some TB's, no ZFS). Went relatively fast and flawlessy, no issues. Many thanks for this major update! Keep this great piece of software running!
  10. O

    [SOLVED] Sieve Filtering?

    Shouldn't be the if clause if header :contains "X-Spam-Level" ["*****"] Dunno if the square brackets are playing the game, but worth to try it. Another advice that might help is to check/edit your require line. I'm using require ["fileinto","regex","envelope","vacation"]; for some if header...
  11. O

    Contributors wanted / PBS as an alternative to Clonezilla

    Thanks for the suggestion. Yes, borgbackup is a fantastic thing and cloning a device is supported as well, but what I have in my mind is a similar thing to clonezilla (and borgbackup), but pbs based for those men with hats who already using pbs in their environment. BTW: My setup mentioned at #1...
  12. O

    Restore to FAT32

    Just done at the Bugzilla as I've found nothing similar there. Glad you agree with me :cool:
  13. O

    Restore to FAT32

    Asking good questions and helping yourself is a great thing, even after a good breakfast and after a glass of fresh beer this hot sunday noon :) Leaving the question above open I've managed to restore things to a FAT mounted device by proxmox-backup-client restore host/BACKUPNAME BACKUPNAME.pxar...
  14. O

    Restore to FAT32

    I regulary backup a bunch of SD cards and other medias, which in this case are having FAT32 partitions, to PBS by mounting the media and doing a simple proxmox-backup-client backup BACKUPNAME.pxar:MOUNTPATH --backup-id BACKUPNAME to the appropriate repository. This is working great and blazing...
  15. O

    [SOLVED] Ausgehende Mails landen bei office365 im SPAM

    Oooh, danke für das interessante Update! Schön, dass es jetzt auf Eurer Seite auch funktioniert. Bei uns gerade mal nachgeschaut, die Option "Hide Internal Hosts" ist eingeschaltet. Ist/war das eigentlich per Default so?
  16. O

    Contributors wanted / PBS as an alternative to Clonezilla

    I'm going to switch to PBS as an alternative to Clonezilla when storing images. The system is complete (but not finished) and is working fine, even I've to do some tasks by console which is totally fine for me. The setup consists of a Debian Live system (Debian Live Manual) and a handful of...
  17. O

    Wake on lan for VM

    I wonder why it seems that nobody had the idea to do a search for this topic. Even "the search engine" finds this tagged old thread: https://forum.proxmox.com/threads/update-wake-and-other-on-lan-for-vms-v0-3.26381/
  18. O

    [SOLVED] Ausgehende Mails landen bei office365 im SPAM

    Gräme Dich nicht, das ist bei einem meiner Kunden ganz ähnlich im Zusammenspiel mit United Internet (gmx, 1&1 und andere) - und dort haben wir PMG (noch) gar nicht im Einsatz. Ist ein ganz popeliger, aber tiptop eingerichteter und gut abgehangener Postfix. Die meisten Endkunden sind nunmal...
  19. O

    [SOLVED] PBS to backup linux hosts

    In my SOHO I'm getting the needed Environment Variables per wget from an internal webserver. This is even unsecure but more flexible than hardcoding them into a script. That way one could automate a rotation of username/password between the webserver's/client's environmental files and PBS.
  20. O

    Excludes by variables

    Oooh, I love that to help myself while complaing :) The secret is to omit the single quotes in variables. Now working example: BACKUPNAME="AllWithoutHome" EXCL="--exclude /home/user/*" mount /dev/sda1 /mnt -o ro,noatime proxmox-backup-client backup ${BACKUPNAME}.pxar:/mnt --backup-id...