I think there is a problem with the pkgbase package versions for
14.0-RELEASE. Looking at my overnight builds and comparing releng/14.0 with
releng/13.2, I see that the package versions for 14 don't include the minor
revision:
# ls -l releng/13.2/repo/FreeBSD:13:amd64/latest/FreeBSD-runtime-13*
-r
Wondering if anyone has a patch (for a make flag) to prevent the
creation of .pkgsave files in the same directory as the original? Would
be ideal to create a tree under say /var/db/pkgsave for these (and a
flag to prevent the rotation of system-critical files such as
master.passwd).
Other than a
On Sat, 11 Nov 2023 at 09:52, Doug Rabson wrote:
> I think there is a problem with the pkgbase package versions for
> 14.0-RELEASE. Looking at my overnight builds and comparing releng/14.0 with
> releng/13.2, I see that the package versions for 14 don't include the minor
> revision:
>
> # ls -l r
For those who are concerned about backup files being left in non-backup
directories this small script will cleanup .pkgsave files:
DBPATH=/var/db/pkgsave/`date +%G%m%d%H%M`
if [ ! -d $DBPATH ]; then
mkdir -p $DBPATH
fi
for f in `find / -type f -name \*.pkgsave` ; do
fori="`ec