17 lines
233 B
Bash
17 lines
233 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
#
|
||
|
# Global Settings
|
||
|
#
|
||
|
|
||
|
# The location of all the TFTP stuff
|
||
|
D_TFTP=/srv/tftp
|
||
|
|
||
|
# Full path of this project:
|
||
|
D_ROOTDIR=/root/pxe-bootserver
|
||
|
|
||
|
# the ip and FQDN for this server
|
||
|
HOST_IP=192.168.75.3
|
||
|
HOST_FQDN=tftp.ostrach.tld
|
||
|
|