mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-15 02:04:28 +00:00
31 lines
714 B
Ruby
31 lines
714 B
Ruby
#
|
|
# tftp only server
|
|
#
|
|
# Jonno Downes (jonno@jamtronix.com) - January, 2009
|
|
#
|
|
#
|
|
|
|
Thread.abort_on_exception=true
|
|
|
|
def log_msg(msg)
|
|
puts "#{Time.now.strftime("%Y-%m-%d %H:%M:%S")} #{msg}"
|
|
end
|
|
|
|
lib_path=File.expand_path(File.dirname(__FILE__)+'/../lib')
|
|
$:.unshift(lib_path) unless $:.include?(lib_path)
|
|
require 'tftp_server'
|
|
|
|
bootfile_dir=File.expand_path(File.dirname(__FILE__)+'/../boot')
|
|
tftp_server=Netboot65TFTPServer.new(bootfile_dir,69)
|
|
tftp_server.start
|
|
|
|
begin
|
|
loop do
|
|
sleep(1) #wake up every second to get keyboard input, so we break on ^C
|
|
end
|
|
rescue Interrupt
|
|
log_msg "got interrupt signal - shutting down"
|
|
end
|
|
tftp_server.shutdown
|
|
log_msg "shut down complete."
|