mirror of
https://github.com/gryf/vmstrap.git
synced 2025-12-18 12:00:31 +01:00
84 lines
2.0 KiB
Bash
Executable File
84 lines
2.0 KiB
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# Sometimes, it might be needed to force external network to cooperate:
|
|
# 0. network. paste it to the machine before running this script
|
|
# sudo sh -c 'rm /etc/resolv.conf; echo "nameserver 1.1.1.1" > /etc/resolv.conf'
|
|
# sudo sed -i -e "s/127.0.0.1 localhost/127.0.0.1 localhost ${HOSTNAME}/" /etc/hosts
|
|
# sudo sh -c 'echo "network: {config: disabled}" > /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg'
|
|
# sudo netplan apply
|
|
# git clone https://github.com/gryf/vmstrap
|
|
# cd vmstrap
|
|
|
|
# 1. update
|
|
sudo apt update && sudo apt -y upgrade
|
|
|
|
lsb_release -cs 2>/dev/null | grep -q bionic
|
|
if [[ $? -eq 0 ]]; then
|
|
PGS="ccze
|
|
exuberant-ctags
|
|
flake8
|
|
git-review
|
|
htop
|
|
ipython3
|
|
mc
|
|
python-apsw
|
|
python-flake8
|
|
python-jedi
|
|
python-pip
|
|
python3-flake8
|
|
python3-jedi
|
|
silversearcher-ag
|
|
tmate
|
|
vim-gtk"
|
|
else
|
|
PGS="ccze
|
|
exuberant-ctags
|
|
flake8
|
|
git-review
|
|
htop
|
|
ipython
|
|
mc
|
|
python-apsw
|
|
python-flake8
|
|
python-jedi
|
|
python-pip
|
|
python3-flake8
|
|
python3-jedi
|
|
silversearcher-ag
|
|
vim-gtk-py2"
|
|
fi
|
|
|
|
# 2. install tools
|
|
sudo apt install -y $PGS
|
|
|
|
# 3. cleanup
|
|
sudo apt-get autoremove -y && sudo apt-get autoclean -y
|
|
|
|
# 4. set default editor
|
|
sudo update-alternatives --set editor /usr/bin/vim.gtk-py2
|
|
|
|
# 5. install tools from pypi
|
|
sudo pip install pip --upgrade
|
|
sudo pip install remote_pdb rainbow
|
|
|
|
# 6. copy configuration for bash, git, tmux
|
|
cp .bash_prompt ~/
|
|
cp .tmux.conf ~/
|
|
# v and y like vi in copy-mode
|
|
echo "bind-key -T copy-mode-vi 'v' send -X begin-selection" >> ~/.tmux.conf
|
|
echo "bind-key -T copy-mode-vi 'y' send -X copy-selection" >> ~/.tmux.conf
|
|
cp .gitconfig ~/
|
|
cp cleanup.sh ~/
|
|
echo '. ~/.bash_prompt' >> ~/.bashrc
|
|
|
|
# 7. get my vim config
|
|
git clone https://github.com/gryf/.vim ~/.vim
|
|
# populate plugins
|
|
vim -c ':PlugUpdate' -c ':qa!' ${STACKUSER}
|
|
# showmarks is a stubborn one
|
|
mkdir ~/.vim/bundle/ShowMarks/doc ${STACKUSER}
|
|
|
|
# clone devstack
|
|
git clone https://opendev.org/openstack/devstack ~/devstack
|
|
cp kuryr.conf ~/devstack/local.conf
|