lib/igp/shell.rb in igp-1.0.0 vs lib/igp/shell.rb in igp-1.1.0
- old
+ new
@@ -50,12 +50,11 @@
public
# runs the ping task
def run
case options[:type]
- # TODO: LDAP was retired from net-ping. to add back in one way or another
- when :icmp, :http, :https, :tcp, :udp # :ldap, :ldaps
+ when :icmp, :http, :https, :tcp, :udp, :ldap, :ldaps
Igp::Base.new(options).run
else
usage
end
end
@@ -99,12 +98,12 @@
HTTP/S ping:
igp http://localhost:8080
igp https://localhost:4443
+ LDAP/S ping:
+ igp ldap://localhost
+ igp ldaps://localhost:6636
+
EOS
- # TODO: LDAP was retired from net-ping. to add back in one way or another
- # LDAP/S ping:
- # igp ldap://localhost
- # igp ldaps://localhost:6636
end
end