[해결됨] 시스템 시작 시 NFS 마운트 문제

1차 시도

2차 시도

3차 시도

/etc/init.d/dncpcd 수정

#!/sbin/openrc-run
# Copyright 2007-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

command=${RC_PREFIX}/sbin/dhcpcd
pidfile=${RC_PREFIX}/var/run/dhcpcd/pid
# --waitip 추가로 IP 발급전까지 20초 대기, 발급받으면 다음으로 진행
command_args="-q --waitip -t 20"
name="DHCP Client Daemon"

depend()
{
        provide net
        need localmount
        use logger network
        after bootmisc modules
        before dns netmount
}

dhcpcd - 의도 한대로 동작. IP 발급 대기 후 정상 진행.

netmount - IP가 정상적으로 발급되어 정상 작동.