Hello!
I am having problems with 2 pools, that do not get mounted on boot.
The setup:
I have 2 ZFS pools, where
I configured 2 directories:
	
	
	
		
	
	
		
			
	
	
	
		
		
	
The current problem is (my guess), that proxmox creates a directory /tank_backup and /green_backup before it was able to mount it. Because of that it is never empty and zfs mount -a does not work --- zfs mount -O -a does. I want a clean way, so it will be mounted at boot time.
Thanks for your help!
				
			I am having problems with 2 pools, that do not get mounted on boot.
The setup:
I have 2 ZFS pools, where
- TANK/backup
 - GREEN/backup
 
I configured 2 directories:
		Code:
	
	# extract from
# cat /etc/pve/storage.cfg
zfspool: GREEN
        pool GREEN
        content images,rootdir
        nodes pve
dir: BACKUP_GREEN
        path /green_backup
        content backup
        maxfiles 5
        shared 0
zfspool: TANK
        pool TANK
        content images,rootdir
        nodes pve
dir: BACKUP_TANK
        path /tank_backup
        content backup
        maxfiles 5
        shared 0
	
		Code:
	
	GREEN                         mounted     yes                            -
GREEN                         mountpoint  /GREEN                         default
GREEN/backup                  mounted     no                             -
GREEN/backup                  mountpoint  /green_backup                  local
TANK                          mounted     no                             -
TANK                          mountpoint  /TANK                          default
TANK/backup                   mounted     no                             -
TANK/backup                   mountpoint  /tank_backup                   local
	Thanks for your help!