Method: Msf::DataStore#update_value
- Defined in:
- lib/msf/core/data_store.rb
permalink #update_value(k, v) ⇒ Object
Updates a value in the datastore with the specified name, k, to the specified value, v. Skips option validation entirely.
102 103 104 |
# File 'lib/msf/core/data_store.rb', line 102 def update_value(k, v) store(k, v) end |