Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Fix lazy install script & instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmars committed Nov 22, 2017
1 parent 175c6fa commit 1d3f3df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ platforms. Windows support is experimental.

For the lazy on Ubuntu 16.04 LTS amd64:

curl https://git.io/vFN94 | sudo bash
curl https://git.io/vFN94 -sSf | bash

This will [install Tor](https://www.torproject.org/download/download-unix.html.en) from official
torproject.org packages.
Expand Down
4 changes: 2 additions & 2 deletions install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ sudo apt upgrade -yy
sudo apt install -y tor deb.torproject.org-keyring

tmpdir=$(mktemp -d)
trap "rm -rf ${tmpdir}"
trap "rm -rf ${tmpdir}" EXIT

cd ${tmpdir}
wget -O ormesh.tar.gz https://github.com/cmars/ormesh/releases/download/v0.1.5/ormesh_0.1.5_linux_amd64.tar.gz
tar xf ormesh.tar.gz
sudo cp ormesh /usr/bin/ormesh
sudo /usr/bin/ormesh agent privbind
/usr/bin/ormesh agent privbind
/usr/bin/ormesh agent systemd | sudo tee /etc/systemd/system/ormesh.service

0 comments on commit 1d3f3df

Please sign in to comment.