diff options
-rwxr-xr-x | init.sh | 8 | ||||
-rw-r--r-- | packages.custom | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -27,8 +27,8 @@ sed -i "s/main contrib non-free/main/" /etc/apt/sources.list | |||
27 | apt update -y | 27 | apt update -y |
28 | 28 | ||
29 | # Install packages | 29 | # Install packages |
30 | apt install "$(cat packages.base)" -y | 30 | apt install $(cat packages.base) -y |
31 | apt install "$(cat packages.custom)" -y | 31 | apt install $(cat packages.custom) -y |
32 | 32 | ||
33 | # For virtual machines | 33 | # For virtual machines |
34 | 34 | ||
@@ -45,7 +45,9 @@ ufw reload | |||
45 | user=$(cat /etc/passwd | grep 1000 | cut -d ':' -f 1) | 45 | user=$(cat /etc/passwd | grep 1000 | cut -d ':' -f 1) |
46 | usermod -aG sudo $user | 46 | usermod -aG sudo $user |
47 | 47 | ||
48 | cp user.sh deploy.conf /home/$USER/ | 48 | cp user.sh deploy.conf /home/$user/ |
49 | 49 | ||
50 | echo -e "\n\n" | ||
50 | echo "Next: run 'logout' and then log in as the standard user created during the installation" | 51 | echo "Next: run 'logout' and then log in as the standard user created during the installation" |
51 | echo "After loggin in run: './ user.sh'" | 52 | echo "After loggin in run: './ user.sh'" |
53 | echo -e "\n\n" | ||
diff --git a/packages.custom b/packages.custom index 37a94be..e69de29 100644 --- a/packages.custom +++ b/packages.custom | |||
@@ -1,2 +0,0 @@ | |||
1 | # Use this file to specify additional packages to install | ||
2 | |||