mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Use ln -sf otherwise nanobsd.sh -wkWK fails
since the etc link exists already. Before creating the nanobsd image nanobsd.sh creates a soft link for usr/local/etc in the function setup_nanobsd() This fails if the link already exists (when using nanobsd.sh -wkWK) Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D49873
This commit is contained in:
parent
a962800a09
commit
6ebab5e6bb
1 changed files with 1 additions and 1 deletions
|
|
@ -538,7 +538,7 @@ setup_nanobsd ( ) (
|
|||
# are installed by this point, but are later in the process,
|
||||
# the symlink not being here causes problems. It never hurts
|
||||
# to have the symlink in error though.
|
||||
ln -s ../../etc/local usr/local/etc
|
||||
ln -sf ../../etc/local usr/local/etc
|
||||
|
||||
for d in var etc
|
||||
do
|
||||
|
|
|
|||
Loading…
Reference in a new issue