Explicitly mention changing knot binary's owner in selfhosting documentation. #665

merged
opened by hjvt.dev targeting master from hjvt.dev/tangled-core: push-oyttstwvptzt
Changed files
+2 -1
docs
+2 -1
docs/knot-hosting.md
··· 39 ``` 40 41 Next, move the `knot` binary to a location owned by `root` -- 42 - `/usr/local/bin/knot` is a good choice: 43 44 ``` 45 sudo mv knot /usr/local/bin/knot 46 ``` 47 48 This is necessary because SSH `AuthorizedKeysCommand` requires [really
··· 39 ``` 40 41 Next, move the `knot` binary to a location owned by `root` -- 42 + `/usr/local/bin/` is a good choice. Make sure the binary itself is also owned by `root`: 43 44 ``` 45 sudo mv knot /usr/local/bin/knot 46 + sudo chown root:root /usr/local/bin/knot 47 ``` 48 49 This is necessary because SSH `AuthorizedKeysCommand` requires [really