Guest User

Untitled

a guest
Dec 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. module Pdns
  2. newrecord("vip.your.net") do |query, answer| hr = Time.now.hour
  3.  
  4. case hr
  5. when 0..9
  6. content.answer "1.x.x.x"
  7. when 10..20
  8. content.answer "2.x.x.x"
  9. when 21..23
  10. content.answer "3.x.x.x"
  11. end
  12. end
  13. end
Add Comment
Please, Sign In to add comment