Skip to content

Instantly share code, notes, and snippets.

View crashcoredump's full-sized avatar

This is a private repo used to bookmark other repos for further use. crashcoredump

View GitHub Profile
# /usr/local/etc/smb4.conf
# Samba 4.1 Configuration file
[global]
# SPECIFIC SETTINGS FOR THIS MACHINE
netbios name = ZNAS1
# Basic settings
workgroup = MYDOMAIN
realm = MYDOMAIN.local
@crashcoredump
crashcoredump / es
Created November 13, 2018 04:09 — forked from alexmurray/es
Shutdown Emacs Server
#!/bin/bash
# Shamelessly taken from http://mjwall.com/blog/2013/10/04/how-i-use-emacs/
# simple script to shutdown the running Emacs daemon
# emacsclient options for reference
# -a Alternate editor, runs bin/false in this case
# -e eval the script
@crashcoredump
crashcoredump / README.md
Created March 26, 2019 02:31 — forked from MoOx/README.md
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
@crashcoredump
crashcoredump / deployment-tool-ansible-puppet-chef-salt.md
Created June 22, 2019 01:56 — forked from jaceklaskowski/deployment-tool-ansible-puppet-chef-salt.md
Choosing a deployment tool - ansible vs puppet vs chef vs salt

Requirements

  • no upfront installation/agents on remote/slave machines - ssh should be enough
  • application components should use third-party software, e.g. HDFS, Spark's cluster, deployed separately
  • configuration templating
  • environment requires/asserts, i.e. we need a JVM in a given version before doing deployment
  • deployment process run from Jenkins

Solution