diff options
-rw-r--r-- | up-www.service | 2 | ||||
-rwxr-xr-x | up.rb | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/up-www.service b/up-www.service index f7d00c0..4b06097 100644 --- a/up-www.service +++ b/up-www.service @@ -4,7 +4,7 @@ After=network.target [Service] User=root -Environment=GEM_HOME=/usr/local/lib/ruby/2.5.0 +Environment=GEM_HOME=/usr/local/lib/ruby/ Environment=APP_ENV=production ExecStart=/usr/local/src/up/up-www.rb Restart=on-failure @@ -41,7 +41,7 @@ class Host return false end elsif protocol == "udp" - system "nc -u -z -w 1 #{@hostname} #{port+1} &>/dev/null" + system "nc -u -z -w 1 #{@hostname} #{port} &>/dev/null" return $?.success? else STDERR.write "unknown protocol '#{protocol}'\n" @@ -54,7 +54,6 @@ class Host url = URI site response = Net::HTTP.get_response url puts response.code - #return response.kind_of? Net::HTTPSuccess return [200, 301, 401].include? response.code.to_i rescue return false |