auberge 0.3.5

CLI tool for managing self-hosted infrastructure with Ansible
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -eu

log() {
  printf "%b\n" "$1"
}

main() {
  curl -s https://raw.githubusercontent.com/sripwoud/agnostic-template/refs/heads/main/setup | sh
}

main