summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Alessandro Locati <fale@redhat.com>2016-12-05 17:15:33 +0000
committerFabio Alessandro Locati <fale@redhat.com>2016-12-05 17:15:33 +0000
commitb2d01ccba4d6b62632bb149c5de2e8eed153c68c (patch)
treedd1212bfe2ff80781994e4d004c82eff331b3637
parent60b82f757dade5eefea905f97a4ebdc1d9ef1937 (diff)
downloadansible-modules-core-b2d01ccba4d6b62632bb149c5de2e8eed153c68c.tar.gz
Call main in conditional way - databases
-rw-r--r--database/postgresql/postgresql_user.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/database/postgresql/postgresql_user.py b/database/postgresql/postgresql_user.py
index 532e8645..1cdc92ef 100644
--- a/database/postgresql/postgresql_user.py
+++ b/database/postgresql/postgresql_user.py
@@ -682,4 +682,6 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.database import *
-main()
+
+if __name__ == '__main__':
+ main()