summaryrefslogtreecommitdiffstats
path: root/lib/postmap
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2014-07-06 19:10:59 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-06-07 02:52:31 +0200
commitf877db8c189fc0a0c43aa5df9303ad34cceb774e (patch)
treea472854d639de03d7338e2c00dd761a89a3fd382 /lib/postmap
parenta427a868d388513da7b5386ba36f1898d7048dd0 (diff)
Move ansible modules to another directory.
Diffstat (limited to 'lib/postmap')
-rw-r--r--lib/postmap109
1 files changed, 0 insertions, 109 deletions
diff --git a/lib/postmap b/lib/postmap
deleted file mode 100644
index 7080b25..0000000
--- a/lib/postmap
+++ /dev/null
@@ -1,109 +0,0 @@
-#!/usr/bin/python
-
-# Create or update postfix's alias and lookup tables
-# Copyright (c) 2013 Guilhem Moulin <guilhem@fripost.org>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-try:
- import selinux
- HAVE_SELINUX=True
-except ImportError:
- HAVE_SELINUX=False
-
-
-# Look up for the file suffix corresponding to 'db'. If 'db' is unset,
-# pick the default_detabase_type of the given instance instead.
-def file_suffix(instance, db):
- if not db:
- if instance:
- cmd = [ os.path.join(os.sep, 'usr', 'sbin', 'postmulti')
- , '-x'
- , '-i', instance
- , '--'
- ]
- else:
- cmd = []
- cmd.extend([ os.path.join(os.sep, 'usr', 'sbin', 'postconf')
- , '-h', 'default_database_type' ])
- null = open (os.devnull, 'wb')
- db = subprocess.check_output(cmd, stderr=null).rstrip()
- null.closed
-
- # See postmap(1) and postalias(1)
- suffixes = { 'btree': 'db', 'cdb': 'cdb', 'hash': 'db' }
- return suffixes[db]
-
-
-# Compile the given (alias/lookup) table
-def compile(cmd, instance, db, src):
- cmd = [ os.path.join(os.sep, 'usr', 'sbin', cmd) ]
- if instance:
- config = os.path.join(os.sep, 'etc', 'postfix-%s' % instance)
- cmd.extend([ '-c', config ])
-
- if db:
- src = "%s:%s" % (db,src)
-
- cmd.append(src)
- subprocess.check_output(cmd, stderr=subprocess.STDOUT)
-
-
-def main():
- module = AnsibleModule(
- argument_spec = dict(
- src = dict( required=True ),
- db = dict( choices=['btree','cdb','hash'] ),
- cmd = dict( choices=['postmap','postalias'], default='postmap' ),
- instance = dict( required=False )
- ),
- add_file_common_args=True,
- supports_check_mode=True
- )
-
- params = module.params
- src = params['src']
- db = params['db']
- cmd = params['cmd']
- instance = params['instance']
-
- if os.path.isabs(src):
- src = src
- else:
- module.fail_json(msg="absolute paths are required")
-
- if not os.path.exists(src):
- module.fail_json(src=src, msg="no such file")
-
- try:
- dst = "%s.%s" % (src, file_suffix(instance, db))
- params['dest'] = dst
- file_args = module.load_file_common_arguments(params)
-
- changed = False
- msg = None
- if not os.path.exists(dst) or os.path.getmtime(dst) <= os.path.getmtime(src):
- changed = True
- if not module.check_mode:
- msg = compile( cmd, instance, db, src)
- except subprocess.CalledProcessError, e:
- module.fail_json(rv=e.returncode, msg=e.output.rstrip())
-
- changed = module.set_file_attributes_if_different(file_args, changed)
- module.exit_json(changed=changed, msg=msg)
-
-
-# this is magic, see lib/ansible/module_common.py
-#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
-main()