Patch Set 1:

(1 comment)

https://gerrit.osmocom.org/#/c/2722/1/OsmoGSMTester/chapters/install.adoc
File OsmoGSMTester/chapters/install.adoc:

Line 328: sudo -s
> I think specyfing sudo -s here is not needed. It's obvious you will need ro
The reason to add it was that this does not work:

  sudo echo "..." > /etc/...

and the reason is not entirely obvious: because only echo is run as sudo, the > 
pipe still gets a permission denied. One could

  sudo sh -c ' echo ... > /etc/... '

but one simpler way is

  sudo -s
  echo...

So in case the user is not aware of these pipe permission peculiarities, I 
decided to provide a solution right away.


-- 
To view, visit https://gerrit.osmocom.org/2722
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I284c3bfb15e914f1f6ab00f15874fe5ea6190c5c
Gerrit-PatchSet: 1
Gerrit-Project: osmo-gsm-manuals
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <[email protected]>
Gerrit-Reviewer: Pau Espin Pedrol <[email protected]>
Gerrit-HasComments: Yes

Reply via email to