fixed missing add-apt-repository command when ubuntu is the server one

This commit is contained in:
Julien Lavergne 2015-04-23 10:11:36 +02:00
parent 31a117e58a
commit e87132cf1c
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
sudo apt-add-repository ppa:saltstack/salt -y sudo apt-get update -y
sudo apt-get install python-software-properties pkg-config software-properties-common -y
sudo add-apt-repository ppa:saltstack/salt -y
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install salt-master -y sudo apt-get install salt-master -y
sudo apt-get install salt-minion -y sudo apt-get install salt-minion -y