-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovision.sh
executable file
·45 lines (33 loc) · 1.13 KB
/
provision.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
cp -f /vagrant/templates/apt/sources.list /etc/apt/sources.list
cp /vagrant/templates/apt/sources.list.d/backports.list /etc/apt/sources.list.d/backports.list
apt-get update
apt-get install -y zsh i3 xinit roxterm git wget build-essential
# auto login
mkdir -p /etc/systemd/system/[email protected]/
cp /vagrant/templates/systemd/override.conf /etc/systemd/system/[email protected]/override.conf
# zsh
chsh -s /usr/bin/zsh vagrant
cp -f /vagrant/templates/zsh/zprofile ~vagrant/.zprofile
# generate key
if [ ! -f ~vagrant/.ssh/id_rsa ]; then
su -c 'ssh-keygen -b 2048 -t rsa -f .ssh/id_rsa -N ""'
echo '>'
echo '> === IMPORT THIS KEY TO GITHUB ==='
echo '>'
echo '> https://github.com/settings/keys'
echo '>'
echo '>'
ssh-keygen -y -f ~vagrant/.ssh/id_rsa
echo '>'
fi
# link prepared files to ~vagrant
rsync -vr /vagrant/home/ /home/vagrant
chmod a+x /home/vagrant/bin/*
# make sure everything is owned by user vagrant
chown -R vagrant: ~vagrant
# after provisioning the first time reboot
if [ ! -f ~vagrant/.provisioned ]; then
date > ~vagrant/.provisioned
(sleep 5; reboot) &
fi