I hereby claim:
- I am pkern on github.
- I am pkern (https://keybase.io/pkern) on keybase.
- I have a public key whose fingerprint is F75F BFCD 771D EB5E 9C86 0505 50C3 634D 3A29 1CF9
To claim this, I am signing this object:
# tpm2_getcap algorithms | |
rsa: | |
value: 0x1 | |
asymmetric: 1 | |
symmetric: 0 | |
hash: 0 | |
object: 1 | |
reserved: 0x0 | |
signing: 0 | |
encrypting: 0 |
[Unit] | |
Description=Printer Duplex post-processing | |
[Path] | |
PathChanged=/srv/scans/duplex | |
[Install] | |
WantedBy=multi-user.target |
[Unit] | |
Description=alertmanager | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
Slice=machine.slice | |
Delegate=true | |
ExecStartPre=/usr/bin/rkt fetch quay.io/prometheus/alertmanager:latest | |
ExecStart=/usr/bin/rkt run --net=host --volume volume-alertmanager,kind=host,source=/srv/mon/alertmanager,readOnly=false --mount volume=volume-alertmanager,target=/etc/alertmanager --volume resolv,kind=host,source=/etc/resolv.conf,readOnly=true --mount volume=resolv,target=/etc/resolv.conf quay.io/prometheus/alertmanager:latest |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=sniproxy | |
PKG_VERSION:=0.6.0 | |
PKG_RELEASE:=1 | |
PKG_SOURCE_URL:=https://github.com/dlundquist/sniproxy/archive/ | |
PKG_SOURCE:=$(PKG_VERSION).tar.gz | |
PKG_MD5SUM:=bcfb5d1efe045b8b356a4229f2339f02 |
I hereby claim:
To claim this, I am signing this object:
d-i debian-installer/locale string en_US | |
d-i debian-installer/country string US | |
d-i debian-installer/language string en | |
d-i time/zone Etc/UTC | |
d-i mirror/country manual | |
d-i mirror/http/mirror string deb.debian.org | |
d-i mirror/http/directory string /debian | |
d-i mirror/http/proxy string |
[Unit] | |
Description=Google CloudPrint CUPS connector | |
After=org.cups.cupsd.service | |
Requires=org.cups.cupsd.service | |
[Service] | |
Restart=always | |
TimeoutStartSec=0 | |
RuntimeDirectory=cups-connector | |
RuntimeDirectoryMode=0755 |
#!/usr/bin/python | |
## vim:set et ts=2 sw=2 ai: | |
# homedir_reminder.py - Reminds users about sizable homedirs. | |
## | |
# Copyright (c) 2013 Philipp Kern <phil@philkern.de> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
#!/usr/bin/env python | |
# vim:set encoding=utf-8: | |
# GistID: 5078559 | |
# | |
# Requirements: python2 (>= 2.7), python-git | |
# | |
# Copyright ⓒ 2013 Philipp Kern <pkern@debian.org> | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights |
#!/bin/sh | |
BASE=$HOME/Maildir | |
ARCHIVEBASE=$HOME/Maildir/archive. | |
for folder in `find $BASE -maxdepth 1 -type d \! -regex '.*/archive\..*' \! -name cur \! -name tmp \! -name new` | |
do | |
folder=$(basename $folder) | |
if [ "${folder}" = "Maildir" ]; then folder=INBOX; fi | |
./cleanup-maildir.py --archive-folder=${ARCHIVEBASE}${folder} --maildir-root=$BASE --folder-prefix= --age=365 -d 1 -k -u -v archive ${folder} |