Skip to content

Instantly share code, notes, and snippets.

instance-id: iid-local01
local-hostname: cloudimg.stg.test.local
@Celant
Celant / 0001-fix-fetch-datasource-after-init.patch
Created February 14, 2021 15:17
0001-fix-fetch-datasource-after-init.patch
From a922e4d74353237432d667e45f092ab31e7cb693 Mon Sep 17 00:00:00 2001
From: Josh Harris <me@celant.co.uk>
Date: Sun, 14 Feb 2021 14:21:33 +0000
Subject: [PATCH] fix: fetch datasource after init
---
cloudinit/config/cc_vyos.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/cloudinit/config/cc_vyos.py b/cloudinit/config/cc_vyos.py
version: "3.6"
services:
deluge:
image: "linuxserver/deluge"
container_name: "deluge"
environment:
- PUID=${PUID}
- PGID=${PGID}
ERROR Failed to compile with 1 errors 7:36:48 PM
This dependency was not found:
* -!../../../css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../vue-loader/lib/loaders/stylePostLoader.js!../../../postcss-loader/src/index.js??ref--6-oneOf-1-2!./tools/_index in ./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--6-oneOf-1-2!./node_modules/vuetify/src/styles/styles.sass
To install it, you can run: npm install --save -!../../../css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../vue-loader/lib/loaders/stylePostLoader.js!../../../postcss-loader/src/index.js??ref--6-oneOf-1-2!./tools/_index
=========================
Failed to compile.

Keybase proof

I hereby claim:

  • I am celant on github.
  • I am jishh_ (https://keybase.io/jishh_) on keybase.
  • I have a public key ASCnVWYDhymWMaBohwwdN2hT5wBZXQt_5CBs_JVY_pcc6Ao

To claim this, I am signing this object:

version: "3.6"
services:
deluge:
image: "linuxserver/deluge"
container_name: "deluge"
environment:
- PUID=${PUID}
- PGID=${PGID}
name of display: :0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: NVIDIA Corporation
server glx version string: 1.4
server glx extensions:
GLX_ARB_context_flush_control, GLX_ARB_create_context,
GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile,
GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
GLX_ARB_multisample, GLX_EXT_buffer_age,
recipes.addShapedMirrored(<nuclearcraft:part:0>,
[
[<ore:dustGraphite>, <ore:ingotLead>,],
[<ore:ingotLead>, <ore:dustGraphite>]
]
);
recipes.addShaped("Advanced Plating", <nuclearcraft:part:1>,
[
[<ore:dustRedstone>, <ore:ingotTough>, <ore:dustRedstone>],
[<ore:ingotTough>, <nuclearcraft:part:0>, <ore:ingotTough>],
@Celant
Celant / postgres_get_server_cert.py
Last active August 3, 2017 14:19
./postgres_get_server_cert.py example.com:5432 | openssl x509 -noout -text
#!/usr/bin/env python
import argparse
import socket
import ssl
import struct
import subprocess
import sys
import urlparse
@Celant
Celant / videbcontrol.sh
Created July 17, 2017 08:40
./videbcontrol.sh foo.deb
#!/bin/bash
# Credits to https://ubuntuforums.org/showthread.php?t=636724
if [[ -z "$1" ]]; then
echo "Syntax: $0 debfile"
exit 1
fi
DEBFILE="$1"