Deleted unused files

This commit is contained in:
Sergei Antipov 2015-02-17 23:02:34 +06:00
parent 3ddeb4277d
commit a82e1c5e63
5 changed files with 0 additions and 64 deletions

View File

@ -1,6 +0,0 @@
[bumpversion]
commit = True
current_version = 2.1.4
tag = True
tag_name = {new_version}

View File

@ -1,27 +0,0 @@
---
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl
- sudo apt-get remove --purge -y mongodb-*
install:
- pip install ansible>=1.6.0
script:
- echo localhost > inventory
# Check syntax
- ansible-playbook --syntax-check -i inventory test.yml
# First run
- ansible-playbook -i inventory test.yml --connection=local --sudo
# Second run Idempotence test
- >
ansible-playbook -i inventory test.yml --connection=local --sudo
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
# Check for mongodb is running
# - ps -ef | grep [m]ongod || exit 1

View File

@ -1,4 +0,0 @@
Contributors:
* Kirill Klenov (http://klen.github.io/)
* Guillaume Dedrie (https://github.com/guillaumededrie)

View File

@ -1,20 +0,0 @@
.PHONY: release major minor patch
VERSION?=minor
release:
@bumpversion $(VERSION)
@git checkout master
@git merge develop
@git checkout develop
@git push --all
@git push --tags
@git checkout develop
major:
make release VERSION=major
minor:
make release VERSION=minor
patch:
make release VERSION=patch

View File

@ -1,7 +0,0 @@
- hosts: all
tasks:
- include: tasks/main.yml
handlers:
- include: handlers/main.yml
vars_files:
- defaults/main.yml