apt-get install not working in script
- by isoman
I create a small script that installs a set of linux paquets .
Strangely apt-get install always fails and tells me that the package have not been found.
Here is my script:
#! /bin/bash
sudo apt-get install python-software-properties
sudo apt-get update
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get install xfce4 postgresql-9.0 pgadmin3 chromium-browser wine iftop
What can i do to fix this ?
Thanks .