devops

Strong knowledge of Puppet Good understanding of version control tools, experience with Git Understanding of Linux (preferably Debian-based distributions, specifically Ubuntu) Networking, including at least a moderate level of familiarity with IP routing and switching Good understanding of scripting in Ruby or Python 1-3 years of experience with Vagrant, Xen or other virtualization technology 1-3 […]

mydns startup script

Put it into /etc/init.d/mydns #! /bin/sh # # mydns Start the MyDNS server # # Author: Falko Timme . # set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin NAME=mydns DAEMON=/usr/local/sbin/$NAME DESC=”DNS server” SCRIPTNAME=/etc/init.d/$NAME # Gracefully exit if the package has been removed. test -x $DAEMON || exit 0 case “$1” in start) echo -n “Starting $DESC: $NAME” $DAEMON –background echo […]

install mydns on ubuntu 14.04

MyDNS is a free DNS server, designed to serve records directly from an SQL database MyDNS does not include recursive name service, nor a resolver library. It is primarily designed for organizations with many zones and/or resource records who desire the ability to perform real-time dynamic updates on their DNS data via MySQL Install requirement […]