Hi all,
On a nanobsd machine, I need to install somes ports. Before that, I update the current pkg version
This upgrade make a backup of
Thanks in advance
On a nanobsd machine, I need to install somes ports. Before that, I update the current pkg version
Bash:
cust_local_packages()
{
if [ -z $LOCAL_PACKAGES ] ; then
return 0
fi
pkg upgrade -y pkg
strip /usr/local/sbin/pkg
strip /usr/local/sbin/pkg-static
...
}
pkg-static
as pkg-static.pkgsave
. This file is about 20Mo (approx. 15% of the root filesystem). I could just remove it, but is there a best method to prevent this.Thanks in advance