We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ ] Addition [ x] Correction [ ] Deprecation [ ] Cleanup (formatting, typos, etc.)
[x ] Installation instructions [ ] Configuration parameters [ ] Functionality/features [ ] REST API [ ] Administration/development [ ] Other
In sections "Configuring Napalm" and "Remote File Storage", the docs recommend using the following commands:
sudo echo napalm >> /opt/nautobot/local_requirements.txt sudo echo django-storages >> /opt/nautobot/local_requirements.txt
These commands do not work as sudo does not apply to the redirect. Using these commands will result in permission denied:
vagrant@ubuntu:/opt/nautobot$ sudo echo napalm >> /opt/nautobot/local_requirements.txt -bash: /opt/nautobot/local_requirements.txt: Permission denied
Potential fix:
sudo sh -c "echo 'napalm' >> /opt/nautobot/local_requirements.txt" sudo sh -c "echo 'django-storages' >> /opt/nautobot/local_requirements.txt"
The text was updated successfully, but these errors were encountered:
Ah yes. Another option would be echo 'napalm' | sudo tee -a /opt/nautobot/local_requirements.txt. Thanks for this.
echo 'napalm' | sudo tee -a /opt/nautobot/local_requirements.txt
Sorry, something went wrong.
Merge pull request nautobot#43 from networktocode-llc/jathanism-disab…
4100e19
…le-auth-backends Fix nautobot#42 - Disable external auth backends by default
jathanism
Successfully merging a pull request may close this issue.
Change Type
[ ] Addition
[ x] Correction
[ ] Deprecation
[ ] Cleanup (formatting, typos, etc.)
Area
[x ] Installation instructions
[ ] Configuration parameters
[ ] Functionality/features
[ ] REST API
[ ] Administration/development
[ ] Other
Proposed Changes
In sections "Configuring Napalm" and "Remote File Storage", the docs recommend using the following commands:
These commands do not work as sudo does not apply to the redirect. Using these commands will result in permission denied:
Potential fix:
The text was updated successfully, but these errors were encountered: