1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/net/aoe/pkg-message
Mathieu Arnold 2614c95748 Convert to UCL & cleanup pkg-message (categories n)
(and missed 3 missed files from previous categories.)
2019-08-14 08:48:50 +00:00

40 lines
1.5 KiB
Plaintext

[
{ type: install
message: <<EOM
Please remember to reinstall this port after kernel source update. Using AoE
devices on boot is a little tricky because the network must be up before the
system can access an AoE device. The current rc boot method for automounting
filesystems will not work with AoE devices; vinum and mount -a are both run
before bringing up the network.
In order to use AoE devices on boot a few rc.conf variables have been defined
that permit the boot script (/etc/rc.d/aoe) to initialize systems using AoE
devices after the network is up. They are as follows:
aoe_enable Set to "Yes" to enable the aoe startup script.
aoe_iflist A space separated string of interfaces valid for AoE.
aoe_wc Set to "1" to enable write cache on AoE device.
aoe_mounts A space seperated string of AoE device nodes to be mounted.
(An entry for each needs to be in /etc/fstab as well with the
"noauto" option.)
For example, the following added to /etc/rc.conf:
aoe_enable="Yes"
aoe_iflist="em0 em1"
aoe_wc="1"
aoe_mounts="/dev/aoed0s1a /dev/aoed1s1a"
and the following added to /etc/fstab:
# Device Mountpoint FStype Options Dump Pass#
/dev/aoed0s1a /mnt/a ufs rw,noauto 0 0
/dev/aoed1s1a /mnt/b ufs rw,noauto 0 0
will automatically start the AoE driver and mount the /mnt/a and /mnt/b
"blades". See aoe(4) and http://www.coraid.com/support/freebsd/usingaoe.html
for more information.
EOM
}
]