mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 07:10:32 -04:00
the softlinked home -> /usr/home has been removed in FreeBSD 14.0-RELEASE and upwards, as the mountpoints are now /home. Sponsored by: SkunkWerks, GmbH Approved by: maintainer Differential Revision: https://reviews.freebsd.org/D47338 Upstream Issue: https://github.com/canonical/cloud-init/issues/5850
11 lines
495 B
Python
11 lines
495 B
Python
--- cloudinit/distros/freebsd.py.orig 2024-10-30 12:25:07 UTC
|
|
+++ cloudinit/distros/freebsd.py
|
|
@@ -35,7 +35,7 @@ class Distro(cloudinit.distros.bsd.BSD):
|
|
pkg_cmd_update_prefix = ["pkg", "update"]
|
|
pkg_cmd_upgrade_prefix = ["pkg", "upgrade"]
|
|
prefer_fqdn = True # See rc.conf(5) in FreeBSD
|
|
- home_dir = "/usr/home"
|
|
+ home_dir = "/home"
|
|
# FreeBSD has the following dhclient lease path:
|
|
# /var/db/dhclient.leases.<iface_name>
|
|
dhclient_lease_directory = "/var/db"
|