Keziah Biermann
Keziah Biermann
I have a similar bug. There are three keys: - [email protected] (my in-software pass key, which is used for pass and passforios) - [email protected] (my Yubikey backed key) - [email protected]...
A quick idea: how about using something like ``` -----BEGIN MARKDOWN NOTE----- ``` in the first line to indicate that the file contains a markdown note. This has a few...
Ah, I stumbled upon https://github.com/austinhyde/ansible-sshjail/pull/29#issuecomment-534049347 and indeed, become was missing. So the issue is solved for me; however it might be a good idea to fix this/document this somewhere? And...
I don't really know how the internals work, but maybe it's also a possibility to skip `become` if the current user is `root` already? (Thats the reason I didn't use...
Sorry for the late reply 😕 1. I'm running this playbook remotely via SSH 2. I'm not using any inventory file; I call ansible directly like this: `ansible-playbook -i $SERVER,...
This is also an issue on M1 macs; Docker for Mac has an Amd64-emulation layer, but it is pretty slow.
Ah, I understand. I thought PRE is something that is executed on the host before creating the jail; similar to `exec.prestart`. Is there a way to achieve similar behavior using...
That depends; for example I have a VNET setup which is NATed to my external interface so that I can access the internet or deploy a VPN server inside a...
> What is the purpose of having VNET jails when you do NAT where you could just use cloned `lo1`? Isn't the whole point being not dependent of the host's...
Ok, basically: 1. You create a bridge device; e.g. `em0bridge` and add your external interface `em0` to it 2. You assign an IP to your bridge that serves as gateway;...