From 1f453008b2090bddc3762b6054642a63b346d054 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2024 11:18:25 +0000 Subject: [PATCH] remove ansiblized shit --- cdn/cdnupdate | 8 ------- haproxy/haproxy.cfg | 55 --------------------------------------------- i2pd/README.md | 4 ---- i2pd/i2pd_funcs | 32 -------------------------- 4 files changed, 99 deletions(-) delete mode 100755 cdn/cdnupdate delete mode 100644 haproxy/haproxy.cfg delete mode 100644 i2pd/README.md delete mode 100644 i2pd/i2pd_funcs diff --git a/cdn/cdnupdate b/cdn/cdnupdate deleted file mode 100755 index 60ed8a6..0000000 --- a/cdn/cdnupdate +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -RSYNC_ARGS='--recursive --copy-links --copy-dirlinks --perms --xattrs --times --delete --verbose --compress --compress-choice=zstd --mkpath --cvs-exclude --human-readable --partial --progress' -# India Node -rsync ${RSYNC_ARGS} /var/cdn/ cdn@in.vpn.projectsegfau.lt:/var/cdn -rsync ${RSYNC_ARGS} /var/lib/cdn/bans.txt cdn@in.vpn.projectsegfau.lt:/var/lib/cdn/bans.txt -# US Node -rsync ${RSYNC_ARGS} /var/cdn/ cdn@us.vpn.projectsegfau.lt:/var/cdn -rsync ${RSYNC_ARGS} /var/lib/cdn/bans.txt cdn@us.vpn.projectsegfau.lt:/var/lib/cdn/bans.txt diff --git a/haproxy/haproxy.cfg b/haproxy/haproxy.cfg deleted file mode 100644 index ab2710e..0000000 --- a/haproxy/haproxy.cfg +++ /dev/null @@ -1,55 +0,0 @@ -global - log /dev/log local0 - log /dev/log local1 notice - chroot /var/lib/haproxy - stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners - stats timeout 30s - user haproxy - group haproxy - daemon -defaults - log global - mode http - option httplog - option dontlognull - timeout connect 3600000 - timeout client 3600000 - timeout server 3600000 - timeout tunnel 3600000 -listen ssh - bind :::22 v4v6 - balance roundrobin - mode tcp - option tcp-check - tcp-check expect rstring SSH-2.0-OpenSSH.* - server pubnix 10.7.0.2:22 check inter 10s fall 2 rise 1 -listen xrdp - bind :::3389 v4v6 - balance roundrobin - mode tcp - option tcp-check - server pubnix 10.7.0.2:3389 check inter 10s fall 2 rise 1 -listen gemini - bind :::1965 v4v6 - balance roundrobin - mode tcp - option tcp-check - server pubnix 10.7.0.2:1965 check inter 10s fall 2 rise 1 -listen soju - bind :::6697 v4v6 - balance roundrobin - mode tcp - option tcp-check - server pubnix 10.7.0.2:6697 check inter 10s fall 2 rise 1 -listen iperf3 - bind :::5202 v4v6 - balance roundrobin - mode tcp - option tcp-check - server pubnix 10.7.0.2:5201 check inter 10s fall 2 rise 1 -listen nodexporter - bind :::9101 v4v6 - balance roundrobin - mode tcp - option tcp-check - server pubnix 10.7.0.2:9100 check inter 10s fall 2 rise 1 diff --git a/i2pd/README.md b/i2pd/README.md deleted file mode 100644 index f988677..0000000 --- a/i2pd/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# I2Pd Info -`i2pd_funcs` was borrowed from the ~vern team (https://vern.cc/admins) with some minor modifications. - -i2pd config is the same as dpkg upstream. diff --git a/i2pd/i2pd_funcs b/i2pd/i2pd_funcs deleted file mode 100644 index 5e92224..0000000 --- a/i2pd/i2pd_funcs +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash -i2pown() { chmod 640 "$1" && chown i2pd:i2pd "$1"; } -geni2p() { /root/i2pd-tools/vain "$2" -o "$1" && i2pown "$1"; } -vgi2p() { for i in "$@"; do geni2p "/var/lib/i2pd/pjsf.$i.dat" "pjsf"; done; } -create_i2p() { - if [[ -z "$4" ]]; then - printf 'Usage: create_i2p service_name keyfile_name clearnet_domain port [type] [host] [inport]\n' - return 1 - fi - - [[ -f /var/lib/i2pd/pjsf.$2.dat ]] || vgi2p "$1" - printf '[%s]\ntype = %s\nhost = %s\nport = %s\nkeys = pjsf.%s.dat\n%s' "$3" "${5:-http}" "${6:-127.0.0.1}" "$4" "$2" "${7:+inport = $7}" | tee "/etc/i2pd/tunnels.d/$1.conf" - systemctl restart i2pd -} - -delete_i2p() { - if [[ -z "$1" ]]; then - printf 'Usage: delete_i2p service_name\n' - return 1 - fi - - rm -f /var/lib/i2pd/pjsf.$1.dat - rm -f /etc/i2pd/tunnels.d/$1.conf - systemctl restart i2pd -} - -i2pup() { export http_proxy="http://127.0.0.1:4444"; } -i2pdown() { unset http_proxy; } - -i2pb32() { /root/i2pd-tools/keyinfo ~i2pd/pjsf.$1.dat; } -i2pb64() { /root/i2pd-tools/keyinfo -d ~i2pd/pjsf.$1.dat; } -i2pport() { grep -R '^port = '"$1"'$' /etc/i2pd/tunnels.d/; }