diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-02-26 22:52:59 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-02-26 22:52:59 +0100 |
commit | e152ac6533a7b5db126d2efd12d6399ff1032955 (patch) | |
tree | 62dd9169aac1c4c35f0f88b093a91ab2b8f3bf11 /docs/debug.rst | |
parent | e9cb3f17b7bd70310a31eaded99c5050f32ac70c (diff) |
[docs] blank lines needed
Diffstat (limited to 'docs/debug.rst')
-rw-r--r-- | docs/debug.rst | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/debug.rst b/docs/debug.rst index c9daba6..76c9d1f 100644 --- a/docs/debug.rst +++ b/docs/debug.rst @@ -12,28 +12,33 @@ stop the privileged helper. First, see if the helper is running: -.. code::bash +.. code:: bash + pgrep bitmask-helper To stop it: -.. code::bash +.. code:: bash + sudo launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist To start it: -.. code::bash +.. code:: bash + sudo launchctl load /Library/LaunchDaemons/se.leap.bitmask-helper.plist sudo launchctl start /Library/LaunchDaemons/se.leap.bitmask-helper.plist Check that it's running: -.. code::bash +.. code:: bash + pgrep bitmask-helper Manually check that the web api is running, and that it reports a version that matches what you currently have installed: -.. code::bash +.. code:: bash + curl http://localhost:7171/version Also, you can check that the path near the end of the file /Library/LaunchDaemons/se.leap.bitmask-helper.plist @@ -43,7 +48,8 @@ Cleaning up ~~~~~~~~~~~ If you have things messed up and you want to completely delete the bitmask-helper: -.. code::bash +.. code:: bash + sudo launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist sudo rm -rf /Library/LaunchDaemons/se.leap.bitmask-helper.plist |