move dns update job here
This commit is contained in:
10
lib/tasks/dns.rake
Normal file
10
lib/tasks/dns.rake
Normal file
@ -0,0 +1,10 @@
|
||||
require "dns_update_job"
|
||||
namespace :dns do
|
||||
desc "Update own dyn dns records"
|
||||
task update: :environment do
|
||||
job = DnsUpdateJob.new
|
||||
puts "My ip is #{job.my_ip}"
|
||||
job.update_ip("gateway" , "hubfeenix.fi")
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user