diff --git a/README.md b/README.md index 772ee95..52ca6d6 100644 --- a/README.md +++ b/README.md @@ -3,34 +3,36 @@ ## Oneliner ```bash -curl -fsSL https://raw.githubusercontent.com/CHANGE_ME/linux-bootstrap/main/install.sh | bash + +curl -fsSL https://gitea.big-chungus.me/moritz/linux-bootstrap/raw/branch/master/install.sh | bash ``` Forward flags to the bootstrapper after `--`: ```bash # skip hardening, set hostname -curl -fsSL https://raw.githubusercontent.com/CHANGE_ME/linux-bootstrap/main/install.sh \ +curl -fsSL https://gitea.big-chungus.me/moritz/linux-bootstrap/raw/branch/master/install.sh \ | bash -s -- --skip hardening --hostname web01 # everything including hardening -curl -fsSL .../install.sh | bash -s -- --only base,cli,neovim,motd,shell,hardening +curl -fsSL https://gitea.big-chungus.me/moritz/linux-bootstrap/raw/branch/master/install.sh | bash -s -- --only base,cli,neovim,motd,shell,hardening ``` Override repo/ref/dest via env: ```bash -REF=dev DEST=/srv/bootstrap curl -fsSL .../install.sh | bash +REF=dev DEST=/srv/bootstrap curl -fsSL https://gitea.big-chungus.me/moritz/linux-bootstrap/raw/branch/master/install.sh | bash ``` ### Pure-git alternative (if git is already present) ```bash -git clone --depth=1 https://github.com/CHANGE_ME/linux-bootstrap.git /opt/linux-bootstrap \ +git clone --depth=1 https://gitea.big-chungus.me/moritz/linux-bootstrap.git /opt/linux-bootstrap \ && /opt/linux-bootstrap/bootstrap.sh ``` ## Modules + | module | default | description | |------------|:------:|-------------| | `base` | yes | apt update/upgrade + essentials: git, curl, tmux, htop, tree, rsync, jq, dnsutils, mtr, build-essential, … |