I hereby claim:
- I am sq3 on github.
- I am mschnitzius (https://keybase.io/mschnitzius) on keybase.
- I have a public key ASAuC1oSIAvbkC1J_2A3rWtX-1-yOqrErtKbueX70J-iLAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/sbin/python3 | |
| # -*- coding: utf-8 -*- | |
| from requests.auth import HTTPBasicAuth | |
| from requests.exceptions import HTTPError | |
| import argparse | |
| import logging | |
| import os | |
| import requests | |
| import sys |
Installs Arch Linux with systemd-boot on efi, luks full diskencryption with lvm and deepin desktop environment
https://ftp-stud.hs-esslingen.de/Mirrors/archlinux/iso/latest/
| # This file is part of systemd. | |
| # | |
| # systemd is free software; you can redistribute it and/or modify it | |
| # under the terms of the GNU Lesser General Public License as published by | |
| # the Free Software Foundation; either version 2.1 of the License, or | |
| # (at your option) any later version. | |
| [Unit] | |
| Description=nspawn container nextcloud | |
| Documentation=man:systemd-nspawn(1) |
| # This file is part of systemd. | |
| # | |
| # systemd is free software; you can redistribute it and/or modify it | |
| # under the terms of the GNU Lesser General Public License as published by | |
| # the Free Software Foundation; either version 2.1 of the License, or | |
| # (at your option) any later version. | |
| [Unit] | |
| Description=nspawn container sniproxy | |
| Documentation=man:systemd-nspawn(1) |
| #!/bin/bash | |
| sudo echo 'deb http://ftp.debian.org/debian jessie-backports main' >> /etc/apt/sources.list | |
| sudo apt update | |
| sudo apt-get install \ | |
| -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \ | |
| python-tornado=4.4.3-1~bpo8+1 \ | |
| salt-common=2016.11.2+ds-1~bpo8+1 \ |
| # Begin /etc/nsswitch.conf | |
| # requires nss-mdns package | |
| passwd: compat mymachines systemd | |
| group: compat mymachines systemd | |
| shadow: compat | |
| publickey: files | |
| hosts: files mdns4_minimal [NOTFOUND=return] !UNAVAIL=return] resolve dns |
| #!/bin/sh | |
| iptables -P INPUT ACCEPT | |
| iptables -P OUTPUT ACCEPT | |
| iptables -P FORWARD ACCEPT | |
| iptables -F | |
| iptables -X | |
| iptables -t nat -F | |
| iptables -t nat -X | |
| iptables -t nat -Z |