gluster-web-interface/app/controllers/volumn_controller.rb

11 lines
197 B
Ruby
Raw Normal View History

2016-08-20 06:58:04 +00:00
class VolumnController < ApplicationController
def info
2016-08-20 09:31:55 +00:00
@output = get_info.split("\n")
end
def get_info
return `sshpass -pakfm77 ssh root@gluster-1 gluster volume info`
2016-08-20 06:58:04 +00:00
end
2016-08-20 09:37:05 +00:00
2016-08-20 06:58:04 +00:00
end