Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Documentation for python-software-properties

Tags:

ubuntu

I'm writing some bash scripts to provision a Linode server of mine. I am trying to find some documentation for the python-software-properties package. Installing this package adds the ability to do something like the following:

$ add-apt-repository ppa:nginx/stable

Does anybody know where I can find documentation about python-software-properties, or know of the extra commands it adds?

like image 604
jcarley Avatar asked May 20 '12 14:05

jcarley


1 Answers

"know of the extra commands it adds" - dpkg -L python-software-properties shows only the add-apt-repository in /usr/bin/, so it's the only command this package adds.

See man add-apt-repository for the documentation.

like image 162
ArtemGr Avatar answered Sep 28 '22 13:09

ArtemGr