lib/splash/cli/webadmin.rb in prometheus-splash-0.7.0 vs lib/splash/cli/webadmin.rb in prometheus-splash-0.8.0

- old
+ new

@@ -12,18 +12,18 @@ # Thor method : stopping Splash Webadmin desc "stop", "Stopping Splash Webadmin Daemon" def stop - acase = run_as_root :stopdaemon, options + acase = run_as_root :stopweb, options splash_exit acase end # Thor method : getting execution status of Splashd desc "status", "Splash WebAdmin Daemon status" def status - acase = run_as_root :statusdaemon, options + acase = run_as_root :statusweb, options splash_exit acase end @@ -35,10 +35,10 @@ long_desc <<-LONGDESC Starting Splash Daemon\n LONGDESC desc "start", "Splash WebAdmin Daemon status" def start - acase = run_as_root :startdaemon + acase = run_as_root :startweb splash_exit acase end end