gluster-web-interface/app/controllers/volumn_controller.rb
2016-08-20 05:31:55 -04:00

11 lines
195 B
Ruby

class VolumnController < ApplicationController
def info
@output = get_info.split("\n")
end
def get_info
return `sshpass -pakfm77 ssh root@gluster-1 gluster volume info`
end
end