adding example runit-style service directory
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
21
examples/var_service/fw/etc/hosts
Normal file
21
examples/var_service/fw/etc/hosts
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
echo "\
|
||||
# This file is automagically regenerated
|
||||
# Note! /etc/nsswitch.conf may override this!
|
||||
|
||||
# For loopbacking
|
||||
127.0.0.1 localhost
|
||||
|
||||
# Our local IPs"
|
||||
|
||||
hostname=`hostname`
|
||||
test "$hostname" || hostname=localhost
|
||||
domain=`(. /boot.conf; echo "$DNSDOMAINNAME")`
|
||||
test "$domain" && hostname="$hostname $hostname.$domain"
|
||||
|
||||
ip -o a l \
|
||||
| grep -F 'inet ' \
|
||||
| sed -e 's/^.*inet //' -e 's:[ /].*$: '"$hostname"':'
|
||||
|
||||
echo
|
||||
echo "# End of /etc/hosts"
|
||||
Reference in New Issue
Block a user