feat: create dedicated os.d dir for os specific install

This commit is contained in:
Xavier Logerais
2024-12-20 08:36:00 +00:00
parent 6848c459f7
commit ceb4daf128
3 changed files with 8 additions and 4 deletions

14
os.d/ubuntu.bash Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
if (grep -q Ubuntu <(lsb_release -i)); then
sudo apt update
sudo apt upgrade -y
sudo apt install -y coreutils grep less tar tree
sudo apt install -y man manpages-fr manpages-fr-extra
sudo apt install -y bash zsh fish
sudo apt install -y screen tmux
sudo apt install -y openssh mosh
sudo apt install -y vim git #tig
sudo apt install -y wget curl lftp fping mtr socat
fi