Origo OS comes with an experimental command line client called “stash”. It is very much an experimental utility, but useful for things like resetting your password, if you have locked yourself out. Below are a couple of examples.
The above may also be achieved by piping the above (separated by slashes) to stash:
echo "/users/user-id/password=yournewpassword" | sudo stash
Here’s another example which simply defines an IP address and and a network your account is allowed to log in from:
echo "/users/user-id/allowfrom='192.168.0.22 10.1.2.0/24'" | sudo stash
And here’s how to remove this restraint, and allow login from everywhere:
echo "/users/user-id/allowfrom=--" | sudo stash
In general two hyphens “–” is used to remove a value.