Compare commits

...

3 Commits

Author SHA1 Message Date
Kiara Grouwstra eae071c078 comment on ifupdown 2023-12-17 22:57:33 +01:00
Kiara Grouwstra e8d3e5d8b7 update secrets 2023-12-17 22:57:19 +01:00
Kiara Grouwstra 47cb2c305c nix-shell 2023-12-17 22:34:53 +01:00
14 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,9 @@
ifupdown__interfaces:
# this file seems to land in `/etc/network/interfaces.config.d/`,
# whereas by default ansible only has it check in `/etc/network/interfaces.d`.
# for now i just manually copied it over.
'internal':
iface: 'eth1'
inet: 'static'

View File

@ -0,0 +1 @@
../../../../../authorities/domain/subject/cert.pem

View File

@ -0,0 +1 @@
../../../../../authorities/domain/issuer/subject/cert.pem

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
openssl
openldap
(python3.withPackages(ps : with ps; [
netaddr
]))
];
}