Commit 8e0ce033 authored by Xavier Thompson's avatar Xavier Thompson

slapformat: WIP: Rename validate into checkConf

parent 0ed0602d
......@@ -49,7 +49,7 @@ def do_format(conf):
# load configuration
computer = Computer(conf)
# sanity checks
computer.validate()
computer.checkConf()
# format
computer.format()
# collect some environmental data
......@@ -247,7 +247,7 @@ class Computer(object):
amount = conf.partition_amount
self.partitions = [Partition(i, self, definition) for i in range(amount)]
def validate(self):
def checkConf(self):
pass
def format(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment