Auto Update

This commit is contained in:
matt1432 2023-01-22 12:06:52 -05:00
parent 48b27eed0c
commit 5d58dc8538
2 changed files with 13 additions and 3 deletions

9
setenv.sh Normal file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Show env vars
grep -v '^#' .env
# Export env vars
set -o allexport
source .env
set +o allexport

View file

@ -10,14 +10,15 @@ cp .profile /root
cat << EOF >> /root/.bashrc
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1='\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$ '
EOF
ln ./nanorc /etc/nanorc
if [ "$1" != "" ] ; then
if [ -f ~/git/dotfiles/.env ] ; then
source ./setenv.sh
rm /etc/sudoers.d/user
echo "$1 ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/user
echo "$USER ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/user
fi
echo "Install fzf, log out and log back in"