-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guillaume Frichet
committed
Apr 1, 2016
1 parent
e0b2947
commit 5745aaa
Showing
23 changed files
with
123 additions
and
50 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,28 @@ | ||
[defaults] | ||
hostfile = inventory | ||
inventory = hosts | ||
|
||
# Additional paths to search for roles in, colon separated | ||
roles_path = roles.galaxy:roles.core:roles | ||
retry_files_enabled = false | ||
filter_plugins = plugins/filters | ||
|
||
# Set plugin path directories | ||
filter_plugins = /usr/share/ansible/plugins/filter:plugins/filters | ||
# callback_plugins = plugins/callbacks | ||
|
||
# Enable a list of additional callbacks | ||
callback_whitelist = profile_tasks | ||
# stdout_callback = human_log | ||
|
||
# By default, a .retry file will be created in ~/ when a playbook fails | ||
retry_files_enabled = false | ||
# retry_files_save_path = ~/.ansible-retry | ||
|
||
# Format of string {{ ansible_managed }} available within Jinja2 | ||
# templates indicates to users editing templates files will be replaced | ||
# Replacing {file}, {host} and {uid} and strftime codes with proper values | ||
#ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host} | ||
# This short version is better used in templates as it won't flag the file as changed every run | ||
ansible_managed = Ansible managed: {file} on {host} | ||
|
||
# 2.1.0 | ||
# display_args_to_stdout = true | ||
# display_skipped_host = false |
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
File renamed without changes.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
# dependencies: | ||
|
||
# - role: package | ||
# packages: | ||
# - ack-grep | ||
# when: "ansible_os_family == 'Debian'" | ||
|
||
# - role: package | ||
# packages: | ||
# - ack | ||
# when: "ansible_os_family == 'Darwin'" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
# http://beyondgrep.com/install/ | ||
# curl http://beyondgrep.com/ack-2.14-single-file > ~/bin/ack && chmod 0755 !#:3 | ||
|
||
# - name: Rename ack-grep to ack | ||
# command: "dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep" | ||
# become: yes | ||
# when: "ansible_os_family == 'Debian'" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
; {{ ansible_managed }} | ||
init.author.name = {{ npm_user }} | ||
init.author.email = {{ npm_email }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
# {{ ansible_managed }} | ||
export PATH=$PATH:{{ composer_home_path }}/vendor/bin |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# {{ ansible_managed }} | ||
|
||
[user] | ||
|
||
name = {{ git_name }} | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Irssi configuration file | ||
# {{ ansible_managed }} | ||
|
||
servers = ( | ||
{ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# {{ ansible_managed }} | ||
|
||
# darwin.sh | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# {{ ansible_managed }} | ||
|
||
tell application "Terminal" | ||
|
||
local allOpenedWindows | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
--- | ||
vim_install_plugins: no | ||
# Run :PlugInstall inside vim | ||
vim_install_plugins: yes | ||
# Install plugins even if ~/.vim/plugged already exists | ||
vim_update_plugins: no |
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
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