1
0
Fork 0
mirror of https://github.com/nishiki/is_master.git synced 2024-10-26 17:43:17 +00:00
is_master execute a command when it determine that server is master
Find a file
2018-02-24 11:38:53 +01:00
bin feat: add is_slave (unlike is_master) 2018-02-24 10:00:09 +01:00
test feat: add is_slave (unlike is_master) 2018-02-24 10:00:09 +01:00
.docker-test feat: add is_slave (unlike is_master) 2018-02-24 10:00:09 +01:00
.gitignore feat: first version 2017-11-09 22:26:10 +01:00
.rubocop.yml chore: upgrade rubocop gem 2018-02-24 10:17:28 +01:00
.travis.yml chore: update ruby version in travis file 2018-02-24 10:12:51 +01:00
CHANGELOG.md release version 1.2.0 2018-02-24 11:38:53 +01:00
Dockerfile feat: first version 2017-11-09 22:26:10 +01:00
Gemfile chore: upgrade rubocop gem 2018-02-24 10:17:28 +01:00
is_master.gemspec feat: add is_slave (unlike is_master) 2018-02-24 10:00:09 +01:00
LICENSE fix: update LICENSE with good copyright 2017-12-07 14:14:58 +01:00
README.md release version 1.2.0 2018-02-24 11:38:53 +01:00
VERSION release version 1.2.0 2018-02-24 11:38:53 +01:00

is_master

Gem Version Build Status License

is_master execute a command when on the machine there is the expected vip or file.

Install

On debian or ubuntu:

apt install ruby
gem install is_master

How to use

It's simple:

is_master 10.0.254.2 ls -l
is_master /path/to/file ls -l
is_slave 10.0.254.2 ls -l
is_slave /path/to/file ls -l

Output is ls -l result or:

OK - I am slave, i going to sleep

Development

Test on local machine with docker

  • install docker
  • run the tests
docker run -v $(pwd):/is_master:ro -it nishiki/ruby:stretch /bin/bash -l /is_master/.docker-test

License

Copyright (c) 2017 Adrien Waksberg

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.