Commit 790a145f by Michael DeHaan

Use get_bin_path for blkid and add some aliases to the filesystem module.

parent 36e9cf5d
...@@ -56,8 +56,8 @@ notes: ...@@ -56,8 +56,8 @@ notes:
def main(): def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec = dict( argument_spec = dict(
fstype=dict(required=True), fstype=dict(required=True, aliases=['type']),
dev=dict(required=True), dev=dict(required=True, aliases=['device']),
opts=dict(), opts=dict(),
force=dict(type='bool', default='no'), force=dict(type='bool', default='no'),
), ),
...@@ -74,7 +74,9 @@ def main(): ...@@ -74,7 +74,9 @@ def main():
if not os.path.exists(dev): if not os.path.exists(dev):
module.fail_json(msg="Device %s not found."%dev) module.fail_json(msg="Device %s not found."%dev)
rc,raw_fs,err = module.run_command("blkid -o value -s TYPE %s"%(dev)) cmd = module.get_bin_path('blkid', required=True)
rc,raw_fs,err = module.run_command("%s -o value -s TYPE %s" % (cmd, dev))
fs = raw_fs.strip() fs = raw_fs.strip()
......
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