This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:03AF5B56BBF399670338B818E344695ECD79592F]
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| annotations: | |
| kubernetes.io/limit-ranger: 'LimitRanger plugin set: cpu, memory request for container | |
| certinfo; cpu, memory limit for container certinfo' | |
| prometheus.io.scrape: "false" | |
| creationTimestamp: "2020-09-24T08:56:34Z" | |
| generateName: certinfo-647757965d- | |
| labels: |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:03AF5B56BBF399670338B818E344695ECD79592F]
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Example Domain</title> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <style type="text/css"> | |
| body { |
| def event_return(events): | |
| ''' | |
| Return event data to remote carbon server | |
| Provide a list of events to be stored in carbon | |
| ''' | |
| opts = _get_options({}) # Pass in empty ret, since this is a list of events | |
| opts['skip'] = True | |
| for event in events: |
| <VirtualHost *:80> | |
| ServerAdmin webmaster@localhost | |
| DocumentRoot /var/www | |
| <Directory /> | |
| AllowOverride None | |
| </Directory> | |
| RewriteEngine On | |
| RewriteCond %{HTTPS} off |
| {% if salt['pkg.version']('apache2') %} | |
| poodle apache server restart: | |
| service.running: | |
| - name: apache2 | |
| {% for foundfile in salt['cmd.run']('rgrep -m 1 SSLProtocol /etc/apache*').split('\n') %} | |
| {% if 'No such file' not in foundfile and 'bak' not in foundfile and foundfile.strip() != ''%} | |
| poodle {{ foundfile.split(':')[0] }}: | |
| file.replace: | |
| - name : {{ foundfile.split(':')[0] }} | |
| - pattern: "SSLProtocol all -SSLv2[ ]*$" |
| #!/bin/bash | |
| # ------------------------------------------------------------------------------ | |
| # SOME INFOS : fairly standard (debian) init script. | |
| # Note that node doesn't create a PID file (hence --make-pidfile) | |
| # has to be run in the background (hence --background) | |
| # and NOT as root (hence --chuid) | |
| # | |
| # MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit | |
| # INIT-INFO RULES http://wiki.debian.org/LSBInitScripts | |
| # INSTALL/REMOVE http://www.debian-administration.org/articles/28 |