README.md in prometheus-splash-0.1.0 vs README.md in prometheus-splash-0.1.1

- old
+ new

@@ -645,11 +645,41 @@ ``` #### Splash CLI return code significations +```ruby +EXIT_MAP= { -TODO + # context execution + :not_root => {:message => "This operation need to be run as root (use sudo or rvmsudo)", :code => 10}, + :options_incompatibility => {:message => "Options incompatibility", :code => 40}, + :service_dependence_missing => {:message => "Splash Service dependence missing", :code => 60}, + + # config + :specific_config_required => {:message => "Specific configuration required", :code => 30}, + :splash_setup_error => {:message => "Splash Setup terminated unsuccessfully", :code => 25}, + :splash_setup_success => {:message => "Splash Setup terminated successfully", :code => 0}, + :splash_sanitycheck_error => {:message => "Splash Sanitycheck terminated unsuccessfully", :code => 20}, + :splash_sanitycheck_success => {:message => "Splash Sanitycheck terminated successfully", :code => 0}, + :configuration_error => {:message => "Splash Configuration Error", :code => 50}, + + + # global + :quiet_exit => {:code => 0}, + + # events + :interrupt => {:message => "Splash user operation interrupted", :code => 33}, + + # request + :not_found => {:message => "Object not found", :code => 44}, + :already_exist => {:message => "Object already exist", :code => 48}, + + # daemon + :status_ok => {:message => "Status OK", :code => 0}, + :status_ko => {:message => "Status KO", :code => 31} +``` +} ### In the Futur ? - IHM - Webservice