2015-10-21
- jennifer
- martym
#!/bin/bash | |
set -euo pipefail | |
# Export GITHUB_TOKEN shell variable with a Github token with no special | |
# permissions assigned. Afterwards start the script with a import path | |
# prefix as first argument: | |
# | |
# go-licenses.sh github.com/Luzifer | |
replaces=( |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Installation: Insert this line into your .qmail-* file | |
# | /path/to/check_mail_v7.py | |
from datetime import datetime | |
import sys | |
BLOCK_SCORE = 8.0 |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Installation: Insert this line into your .qmail-* file | |
# | spamc | /path/to/check_mail_v6.py | |
from datetime import datetime | |
import re | |
import sys |
When migrating from an existing infrastructure to an infrastructure managed by Terraform it's possible to import the present configuration. The only thing the importer does not do: It does not write the configuration for you.
This script is intended to access a DNSimple account through the APIv2 and fetch all resource records for all domains in that account. The records are written into a Terraform configuration file using one file per domain.
handler.so | |
handler.zip | |
deploy.out.yml |
File | Purpose |
---|---|
/etc/compose/docker-compose.yml |
Compose file describing what to deploy |
/etc/systemd/system/docker-compose-reload.service |
Executing unit to trigger reload on docker-compose.service |
/etc/systemd/system/docker-compose-reload.timer |
Timer unit to plan the reloads |
/etc/systemd/system/docker-compose.service |
Service unit to start and manage docker compose |
FROM debian:jessie | |
ENV RUBY_VERSION 1.8.7-p374 | |
ENV PATH /usr/local/rvm/gems/ruby-${RUBY_VERSION}/bin:/usr/local/rvm/gems/ruby-${RUBY_VERSION}@global/bin:/usr/local/rvm/rubies/ruby-${RUBY_VERSION}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin | |
RUN set -ex \ | |
&& apt-get update && apt-get install -y curl \ | |
&& gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 \ | |
&& curl -sSL https://get.rvm.io | bash -s stable --ruby=${RUBY_VERSION} |