1
0
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:
eoli3n 2017-12-22 17:47:29 +01:00
parent 1ff7f5b621
commit 7d42b8250d
5 changed files with 10 additions and 9 deletions

@ -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

@ -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

@ -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

@ -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