diff --git a/docs/DEPLOYING.md b/docs/DEPLOYING.md index cae0835..089d810 100644 --- a/docs/DEPLOYING.md +++ b/docs/DEPLOYING.md @@ -65,11 +65,12 @@ Now let's continue by building chorus: cargo build --release ``` -Ok now let's install that (along with the dump utility): +Ok now let's install that (along with the utility binaries): ```bash sudo install --mode=0700 --owner=chorus ./target/release/chorus /opt/chorus/sbin/chorus -sudo install --mode=0700 --owner=chorus ./target/release/dump /opt/chorus/sbin/dump +sudo install --mode=0700 --owner=chorus ./target/release/chorus_dump /opt/chorus/sbin/chorus_dump +sudo install --mode=0700 --owner=chorus ./target/release/chorus_moderate /opt/chorus/sbin/chorus_moderate ``` Now let's create our config file @@ -180,7 +181,8 @@ cd /opt/chorus/src/chorus git pull cargo build --release sudo install --mode=0700 --owner=chorus ./target/release/chorus /opt/chorus/sbin/chorus -sudo install --mode=0700 --owner=chorus ./target/release/dump /opt/chorus/sbin/dump +sudo install --mode=0700 --owner=chorus ./target/release/chorus_dump /opt/chorus/sbin/chorus_dump +sudo install --mode=0700 --owner=chorus ./target/release/chorus_moderate /opt/chorus/sbin/chorus_moderate sudo systemctl restart chorus.service ````