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?
“know of the extra commands it adds” –
dpkg -L python-software-propertiesshows only theadd-apt-repositoryin /usr/bin/, so it’s the only command this package adds.See
man add-apt-repositoryfor the documentation.