Actions
Task #4423
closedIn Vagrantfile, change 'sudo ./install.sh' to './install.sh'.
Start date:
12/22/2017
Due date:
% Done:
100%
Estimated time:
Description
When the Vagrantfile does the install, it runs:
https://github.com/named-data/mini-ndn/blob/7a6978eb52648f86714e6a554a46d5b603c0225b/Vagrantfile#L8
sudo ./install.sh -emrfti
Why does it need sudo? The install.sh script already does sudo when needed, such as sudo apt-get -y install
. If the entire install.sh script is run as sudo, normal example files, etc. need root access to run. Is it possible to change this to the following? (I tried it and everything builds OK.)
./install.sh -emrfti
Actions