jails IOCAGE jail reporting errors for actions that I do not believe it should be doing

freebsd-version
13.0-RELEASE-p7


I am getting these errors reported in the daily run output report:
Code:
. . .
Dump of kern.geom.conftxt:

Backup of partitions information for:
ada0
ada1
ada2
ada3

Backup of boot partition content:
ada0p1
mv: rename /var/backups/boot.ada0p1.tmp to /var/backups/boot.ada0p1.bak: No
such file or directory
ada1p1
mv: rename /var/backups/boot.ada1p1.tmp to /var/backups/boot.ada1p1.bak: No
such file or directory
ada2p1
mv: rename /var/backups/boot.ada2p1.tmp to /var/backups/boot.ada2p1.bak: No
such file or directory
ada3p1
mv: rename /var/backups/boot.ada3p1.tmp to /var/backups/boot.ada3p1.bak: No
such file or directory

Disk status:
Filesystem                          Size    Used   Avail Capacity  Mounted on
zroot/iocage/jails/smb4-2-A/root     12T     55G     12T     0%    /
. . .

We run multiple jails on multiple hosts and this jail is the only one that is reporting this error. I presume that I have misconfigured something somewhere but I have not a clue what it might be. Any helpful suggestions as to what might be causing this and how to fix it would be appreciated.
 
it's fixed in 12.3
disable daily_backup_gpart_enable for jails
Code:
if [ $(sysctl -n security.jail.jailed) = 0 ]; then
        # Backup partition table/boot partition/MBR
        daily_backup_gpart_enable="YES"
else
        daily_backup_gpart_enable="NO"
fi
just manually set it to no until 13.1 fixes it
 
Back
Top