2024-06-23 15:10:36 +02:00
|
|
|
## Justfile (https://github.com/casey/justfile)
|
2024-07-22 08:27:53 +02:00
|
|
|
##
|
|
|
|
## Helps automate various homelab tasks.
|
2024-06-23 15:10:36 +02:00
|
|
|
|
2024-06-28 19:07:57 +02:00
|
|
|
distro := `grep -G "\bID\b" /etc/os-release | awk -F= '{print $2}'`
|
2024-06-24 21:42:28 +02:00
|
|
|
release := `grep "VERSION_CODENAME" /etc/os-release | awk -F= '{print $2}'`
|
2024-06-23 15:10:36 +02:00
|
|
|
run_user := env_var("USER")
|
|
|
|
|
|
|
|
default: common
|
|
|
|
|
|
|
|
common:
|
2024-07-22 08:27:53 +02:00
|
|
|
sudo apt update -t {{release}}-backports
|
|
|
|
sudo apt dist-upgrade -y -t {{release}}-backports
|
|
|
|
sudo apt install -y -t {{release}}-backports \
|
2024-06-23 15:10:36 +02:00
|
|
|
apt-file \
|
|
|
|
apt-listchanges \
|
2024-07-22 08:27:53 +02:00
|
|
|
apt-transport-https \
|
2024-06-23 15:10:36 +02:00
|
|
|
apt-utils \
|
|
|
|
atop \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
build-essential \
|
|
|
|
byobu \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
firewalld \
|
|
|
|
git \
|
|
|
|
htop \
|
|
|
|
ifplugd \
|
|
|
|
iotop \
|
|
|
|
less \
|
|
|
|
libpam-systemd \
|
|
|
|
lynis \
|
|
|
|
man-db \
|
|
|
|
manpages \
|
2024-07-22 08:27:53 +02:00
|
|
|
neovim \
|
2024-06-23 15:10:36 +02:00
|
|
|
nfs-common \
|
|
|
|
nmon \
|
|
|
|
pipx \
|
|
|
|
python3-dev \
|
|
|
|
python3-pip \
|
2024-06-24 21:42:28 +02:00
|
|
|
rclone \
|
2024-06-23 15:10:36 +02:00
|
|
|
rsync \
|
|
|
|
unattended-upgrades \
|
|
|
|
wget \
|
|
|
|
zsh
|
|
|
|
sudo systemctl enable man-db.timer
|
2024-07-22 08:27:53 +02:00
|
|
|
pipx install glances
|
|
|
|
pipx install gmcapsule
|
|
|
|
|
|
|
|
copy:
|
|
|
|
find "${PWD}/bin" -maxdepth 1 -type f -exec sudo cp -fv {} /usr/local/bin \;
|
|
|
|
find "${PWD}/systemd/system" -maxdepth 1 -type f -exec sudo cp -fv {} /etc/systemd/system \;
|
|
|
|
mkdir -p "${HOME}/.config/systemd/user"
|
|
|
|
find "${PWD}/systemd/user" -maxdepth 1 -type f -exec cp -fv {} "${HOME}/.config/systemd/user" \;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
sudo find /usr/local/bin -type f -delete
|
|
|
|
for item in "$(ls "${PWD}/systemd/system")"; do sudo rm -fv "/etc/systemd/system/$item"; done
|
|
|
|
for item in "$(ls "${PWD}/systemd/user")"; do rm -fv "${HOME}/.config/systemd/user/$item"; done
|
2024-06-23 15:10:36 +02:00
|
|
|
|
|
|
|
caddy-install:
|
|
|
|
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
|
|
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install caddy
|
|
|
|
|
|
|
|
thelounge-install:
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -s https://api.github.com/repos/thelounge/thelounge-deb/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -qi -
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo apt install -y ./thelounge*.deb
|
2024-07-22 08:27:53 +02:00
|
|
|
rm -fv ./thelounge*.deb
|
2024-06-23 15:10:36 +02:00
|
|
|
|
|
|
|
tailscale-install:
|
2024-06-24 21:42:28 +02:00
|
|
|
curl -fsSL https://tailscale.com/install.sh | sh
|
2024-06-23 15:10:36 +02:00
|
|
|
sudo tailscale up
|
|
|
|
|
|
|
|
scihub-setup:
|
|
|
|
mkdir ~/scihub-torrent-urls
|
2024-07-03 12:04:46 +02:00
|
|
|
lynx -dump -nonumbers -listonly=on https://libgen.rs/repository_torrent/ | grep "\.torrent" | tee ~/scihub-torrent-urls/urls.txt
|
|
|
|
cd ~/scihub-torrent-urls && split -l 60 ~/scihub-torrent-urls/urls.txt torrent-
|
|
|
|
rm -fv ~/scihub-torrent-urls/urls.txt
|
2024-07-03 18:11:39 +02:00
|
|
|
|
|
|
|
docker-install:
|
|
|
|
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt remove $pkg; done
|
|
|
|
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y ca-certificates curl
|
|
|
|
sudo install -m 0755 -d /etc/apt/keyrings
|
|
|
|
sudo curl -fsSL https://download.docker.com/linux/{{distro}}/gpg -o /etc/apt/keyrings/docker.asc
|
|
|
|
sudo chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
|
|
|
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/{{distro}} {{release}} stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose docker-compose-plugin
|
|
|
|
sudo systemctl enable --now docker.service
|
|
|
|
sudo usermod -aG docker {{run_user}}
|
2024-07-22 08:27:53 +02:00
|
|
|
|
|
|
|
rustup:
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
|
|
|
|
rustup-root:
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh
|
|
|
|
|
|
|
|
rust-tools:
|
|
|
|
source "${HOME}/.cargo/env"
|
|
|
|
cargo install cargo-binstall
|
|
|
|
for pkg in "arp-scan" "bandwhich" "bat" "diskonaut" "du-dust" "fblog" "fd" "hyperfine" "procs" "ripgrep" "skim"; do \
|
|
|
|
cargo-binstall -y "$pkg"; \
|
|
|
|
done
|
|
|
|
|
|
|
|
rust-tools-root:
|
|
|
|
sudo /root/.cargo/bin/cargo install cargo-binstall
|
|
|
|
for pkg in "arp-scan" "bandwhich" "bat" "diskonaut" "du-dust" "fblog" "fd-find" "hyperfine" "procs" "ripgrep" "skim"; do \
|
|
|
|
sudo /root/.cargo/bin/cargo-binstall -y "$pkg"; \
|
|
|
|
done
|
|
|
|
echo 'source "${HOME}/.cargo/env"' | sudo tee -a /root/.bashrc
|
|
|
|
echo 'source "${HOME}/.cargo/env"' | sudo tee -a /root/.zshrc
|
|
|
|
|
|
|
|
neovim:
|
|
|
|
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
|
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
|
|
|
|
|
|
mkdir -p "${HOME}/.config/nvim"
|
|
|
|
wget https://cdn.hyperreal.coffee/init.vim -O "${HOME}/.config/nvim/init.vim"
|
|
|
|
|
|
|
|
neovim-root:
|
|
|
|
sudo sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
|
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
|
|
|
|
|
|
sudo mkdir -p "${HOME}/.config/nvim"
|
|
|
|
sudo wget https://cdn.hyperreal.coffee/init.vim -O "${HOME}/.config/nvim/init.vim"
|
|
|
|
|
|
|
|
zshrc:
|
|
|
|
sudo wget https://cdn.hyperreal.coffee/zshrc -O /etc/zsh/zshrc
|
|
|
|
touch "${HOME}/.zshrc"
|
|
|
|
sudo touch /root/.zshrc
|