This commit is contained in:
Michal S.
2026-08-04 17:59:44 +01:00
commit 69071efd58
123 changed files with 7728 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
# PROVIDE: LOOPBACK
# BEFORE: DAEMON
. /etc/rc.subr
name=loopback
loopback_start()
{
/sbin/ip link set lo up
/sbin/ip address replace 127.0.0.1/8 dev lo
/sbin/ip -6 address replace ::1/128 dev lo
}
start_cmd=loopback_start
stop_cmd=:
status_cmd=:
run_rc_command "$1"