mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 23:12:32 +01:00
fixed epel order centos
This commit is contained in:
parent
1ff7f5b621
commit
7d42b8250d
@ -67,6 +67,7 @@ To use dark theme, go to graphical configuration and click ``Use GTK+ Theme``
|
||||
## Supported OS
|
||||
|
||||
- Archlinux
|
||||
- Centos
|
||||
- FreeBSD : need to ``sudo ln -s /usr/local/bin/python2 /usr/bin/python``
|
||||
|
||||
## Installation
|
||||
|
5
TODO
5
TODO
@ -1,8 +1,7 @@
|
||||
- TODO: borgbackup conf
|
||||
- TODO: tmux and configure
|
||||
- TOTEST: vagrant debian box, with ./install.sh server
|
||||
- TOTEST: vagrant centos box, with ./install.sh server
|
||||
- TOTEST: debian and centos root and user
|
||||
- TOTEST: ansible provisionner vagrant : https://github.com/hashicorp/vagrant/issues/7890
|
||||
- TODO: change includes in import tasks to be able to resolv with list-tasks
|
||||
- TOFIX: chsh in vagrant config file for FreeBSD
|
||||
- TOTEST : centos full working ?
|
||||
- TOFIX : debian hangs install 2.4 ansible
|
||||
|
@ -1,7 +1,8 @@
|
||||
---
|
||||
- name: Add EPEL repository
|
||||
yum: name={{item}} state=present
|
||||
with_items:
|
||||
- epel-release
|
||||
- python-pip
|
||||
yum: name=epel-release state=present
|
||||
become: True
|
||||
|
||||
- name: Install pip package
|
||||
yum: name=python-pip state=present
|
||||
become: True
|
||||
|
2
vagrant/centos/Vagrantfile
vendored
2
vagrant/centos/Vagrantfile
vendored
@ -28,7 +28,7 @@ Vagrant.configure("2") do |config|
|
||||
git clone --recursive https://github.com/eoli3n/dotfiles
|
||||
cd dotfiles
|
||||
git submodule update --init --recursive
|
||||
./install.sh desktop
|
||||
./install.sh server
|
||||
echo -e "vagrant\n/usr/bin/zsh" | chsh
|
||||
SCRIPT
|
||||
|
||||
|
2
vagrant/debian/Vagrantfile
vendored
2
vagrant/debian/Vagrantfile
vendored
@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
|
||||
git clone --recursive https://github.com/eoli3n/dotfiles
|
||||
cd dotfiles
|
||||
git submodule update --init --recursive
|
||||
./install.sh desktop
|
||||
./install.sh server
|
||||
echo -e "vagrant\n/usr/bin/zsh" | chsh
|
||||
SCRIPT
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user