Add python to provision
This commit is contained in:
parent
a5a34c98a5
commit
efaf6328a2
2 changed files with 5 additions and 1 deletions
|
@ -3,7 +3,6 @@
|
|||
- name: Install packages
|
||||
package: name={{ item }} state=latest
|
||||
with_items:
|
||||
- python
|
||||
- python-pip
|
||||
- screen
|
||||
- vim
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
#!/bin/bash
|
||||
echo node > /var/tmp/role
|
||||
|
||||
# Packages
|
||||
sudo apt-get --yes update
|
||||
sudo apt-get --yes upgrade
|
||||
sudo apt-get --yes install python
|
||||
|
||||
# SSH
|
||||
sudo rm -rf /root/.ssh
|
||||
sudo mv ~vagrant/ssh /root/.ssh
|
||||
|
|
Loading…
Reference in a new issue