Skip to content

Commit 689304e

Browse files
committed
Initial commit
0 parents  commit 689304e

File tree

8 files changed

+108
-0
lines changed

8 files changed

+108
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
.AppleDouble
3+
.LSOverride
4+
Icon
5+
._*
6+
.Spotlight-V100
7+
.Trashes
8+
.vagrant
9+
test

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
language: python
3+
python: "2.7"
4+
before_install:
5+
- sudo apt-get update -qq
6+
- sudo apt-get install -qq python-apt python-pycurl
7+
install:
8+
- pip install ansible==1.5.0
9+
script:
10+
- echo localhost > inventory
11+
- ansible-playbook --syntax-check -i inventory test.yml
12+
- ansible-playbook -i inventory test.yml --connection=local --sudo

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2014 Pieterjan Vandaele
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Ansibles - utilities [![Build Status](https://travis-ci.org/Ansibles/utilities.png)](https://travis-ci.org/Ansibles/utilities)
2+
3+
A series of useful, must-have utilities
4+
5+
#### Included
6+
- command-not-found
7+
- curl
8+
- debconf
9+
- dmidecode
10+
- htop
11+
- iftop
12+
- iotop
13+
- nmap
14+
- mosh
15+
- pciutils
16+
- sysstat
17+
- tmux
18+
- tshark
19+
20+
#### License
21+
22+
Licensed under the MIT License. See the LICENSE file for details.
23+
24+
#### Feedback, bug-reports, requests, ...
25+
26+
Are [welcome](https://github.com/ansibles/utilities/issues)!

defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# file: utilities/defaults/main.yml

meta/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# file: utilities/meta/main.yml
2+
3+
galaxy_info:
4+
author: pjan vandaele
5+
description: series of useful, must-have utilities
6+
min_ansible_version: 1.3
7+
license: MIT
8+
platforms:
9+
- name: Ubuntu
10+
versions:
11+
- all
12+
categories:
13+
- system
14+
15+
dependencies: []

tasks/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# file: utilities/tasks/main.yml
2+
3+
- name: Common | Make sure some basic tools are installed
4+
apt:
5+
pkg: "{{item}}"
6+
with_items:
7+
- command-not-found
8+
- curl
9+
- debconf
10+
- dmidecode
11+
- htop
12+
- iftop
13+
- iotop
14+
- nmap
15+
- mosh
16+
- pciutils
17+
- sysstat
18+
- tmux
19+
- tshark

test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- hosts: all
2+
vars_files:
3+
- 'defaults/main.yml'
4+
tasks:
5+
- include: 'tasks/main.yml'

0 commit comments

Comments
 (0)