This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
juju = { | |
source = "juju/juju" | |
version = "0.18.0" | |
} | |
} | |
} | |
provider "juju" {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NOTICE: | |
To provide a more stable graphical user experience in Crostini, | |
the GPU-based rendering driver (virgl) has been disabled by default | |
for existing and new environments in ChromeOS version 131 and newer. | |
OpenGL and OpenGLES applications will continue to function using a | |
CPU-based rendering driver (swrast). | |
If you would like to re-enable GPU-based rendering in an unsupported | |
capacity, you may visit: chrome://flags#crostini-gpu-support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p ~/.local/share/keyrings/ | |
pushd ~/.local/share/keyrings/ || exit | |
rm -fr ./* | |
STAMP=$(date +%s) | |
cat > default <<ENDLINE | |
headless | |
ENDLINE | |
cat > headless.keyring <<ENDLINE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# apt install git | |
Installing: | |
git | |
Installing dependencies: | |
adduser less libcurl3t64-gnutls libfido2-1 libk5crypto3 libldap-common libpsl5t64 libsasl2-modules-db libxau6 libxmuu1 patch xauth | |
ca-certificates libbrotli1 libedit2 libgdbm-compat4t64 libkeyutils1 libldap2 librtmp1 libssh-4 libxcb1 netbase perl | |
git-man libbsd0 liberror-perl libgdbm6t64 libkrb5-3 libnghttp2-14 libsasl2-2 libx11-6 libxdmcp6 openssh-client perl-modules-5.38 | |
krb5-locales libcbor0.10 libexpat1 libgssapi-krb5-2 libkrb5support0 libperl5.38t64 libsasl2-modules libx11-data libxext6 openssl publicsuffix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concourse-docker-worker-1 | {"timestamp":"2022-08-29T02:15:40.733583378Z","level":"info","source":"baggageclaim","message":"baggageclaim.using-driver","data":{"driver":"overlay"}} | |
concourse-docker-worker-1 | {"timestamp":"2022-08-29T02:15:40.743816679Z","level":"info","source":"worker","message":"worker.garden.dns-proxy.started","data":{"session":"1.2"}} | |
concourse-docker-worker-1 | {"timestamp":"2022-08-29T02:15:40.745154086Z","level":"info","source":"baggageclaim","message":"baggageclaim.listening","data":{"addr":"127.0.0.1:7788"}} | |
concourse-docker-worker-1 | {"timestamp":"2022-08-29T02:15:40.745435115Z","level":"error","source":"worker","message":"worker.beacon-runner.beacon.failed-to-connect-to-tsa","data":{"error":"dial tcp 172.18.0.3:2222: connect: connection refused","session":"4.1"}} | |
concourse-docker-worker-1 | {"timestamp":"2022-08-29T02:15:40.745463946Z","level":"error","source":"worker","message":"worker.beacon-runner.beacon.dial.failed-to-connect-to-any-tsa","data":{"error":"all worker SSH gat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"ansible_host": "default", | |
"ansible_connection": "docker" | |
}, | |
"builders": [ | |
{ | |
"type": "docker", | |
"image": "centos:7", | |
"commit": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ pyenv install 3.10.6 -f | |
Installing Python-3.10.6... | |
WARNING: The Python bz2 extension was not compiled. Missing the bzip2 lib? | |
WARNING: The Python curses extension was not compiled. Missing the ncurses lib? | |
WARNING: The Python ctypes extension was not compiled. Missing the libffi lib? | |
WARNING: The Python readline extension was not compiled. Missing the GNU readline lib? | |
WARNING: The Python sqlite3 extension was not compiled. Missing the SQLite3 lib? | |
WARNING: The Python tkinter extension was not compiled and GUI subsystem has been detected. Missing the Tk toolkit? | |
WARNING: The Python lzma extension was not compiled. Missing the lzma lib? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import time | |
from flask import Flask, render_template, Response | |
app = Flask(__name__) | |
@app.route("/") | |
def index(): | |
return render_template('index.html') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
strip_last_n() | |
{ | |
n="$1" | |
shift | |
if [ "$n" -ge "$#" ]; then | |
return | |
else | |
len="$(($# - n))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stap | |
probe module("video").function("acpi_video_device_lcd_set_level").call | |
{ | |
printf ("%s -> %s\n", thread_indent(1), probefunc()) | |
printf ("\t %s args [%s]\n", probefunc(), $$parms) | |
} |
NewerOlder