15 lines
337 B
Bash
15 lines
337 B
Bash
#!/bin/bash
|
|
|
|
cd ~
|
|
echo "Installing required software packages..."
|
|
|
|
sudo apt update
|
|
sudo apt install git vim -y
|
|
|
|
echo "Download user config files"
|
|
git clone https://git.ggs-solutions.eu/GGS/UbuntuConfig.git
|
|
|
|
echo "Configure ggs user account..."
|
|
|
|
sudo cp -R ./UbuntuConfig/conf/etc/* /etc/
|
|
cp -R ./UbuntuConfig/conf/home/. /home/$(whoami)/ |