From e5b225b46fbddf8cc77dc51a845bd4a35eb21cef Mon Sep 17 00:00:00 2001 From: burble Date: Sat, 7 Sep 2024 13:07:23 +0000 Subject: [PATCH] Initial commit --- .gitignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 5 +++++ 2 files changed, 56 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c0df46a --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# ---> Emacs +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..cc11bd4 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# wireguard-inject + +Provisioning wireguard tunnels between a host and namespaces can be tricky, particularly if the namespaces are dynamically created as with containers. + +wireguard-inject is a small shell script which can create and inject wireguard interfaces in to a namespace using a configuration directory and provisioning scripts. \ No newline at end of file