File: ip_groups2.py

package info (click to toggle)
ctdb 1.12%2Bgit20120201-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,656 kB
  • sloc: ansic: 61,736; sh: 18,367; xml: 3,887; python: 1,220; makefile: 554; perl: 319; awk: 118
file content (20 lines) | stat: -rwxr-xr-x 450 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

# 2 groups of addresses, combined into 1 pool so the checking
# algorithm doesn't know about the groups, across 2 nodes.

from ctdb_takeover import Cluster, Node, process_args

process_args()

addresses20 = ['192.168.20.%d' % n for n in range(1, 13)]
addresses21 = ['192.168.21.%d' % n for n in range(1, 5)]

c = Cluster()

for i in range(2):
    c.add_node(Node(addresses20 + addresses21))

c.recover()

c.random_iterations()