This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d-i debian-installer/locale string en_US | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string us | |
d-i netcfg/get_hostname string unassigned-hostname | |
d-i netcfg/get_domain string unassigned-domain | |
d-i netcfg/choose_interface select auto | |
d-i netcfg/wireless_wep string | |
d-i base-installer/kernel/override-image string linux-server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: install iptables persistent | |
apt: pkg=iptables-persistent update_cache=yes state=present | |
tags: | |
- common | |
# For some reason, iptables-persistent will fail to start | |
# if IPv6 rules file is empty or invalid | |
- name: remove iptables rules.v6 file | |
file: path=/etc/iptables/rules.v6 state=absent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; my-scheme configuration | |
(defun my-scm-preoutput-filter (string) | |
(with-current-buffer (window-buffer (frame-selected-window)) | |
(save-restriction | |
(save-excursion | |
(backward-sexp) | |
(forward-sexp) | |
(paredit-comment-dwim) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Emacs ansi-term directory tracking | |
# track directory, username, and cwd for remote logons | |
if [ "$TERM" = "eterm-color" ]; then | |
function eterm-set-cwd { | |
$@ | |
echo -e "\033AnSiTc" $(pwd) | |
} | |
# set hostname, user, and cwd | |
function eterm-reset { |