aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2015-03-27 21:24:40 +0000
committerKurt Jaeger <pi@FreeBSD.org>2015-03-27 21:24:40 +0000
commitc757a085be358b66783a6def2bfce62a514c576c (patch)
tree7defc149befa212eb6fb3a3567c27cfd3c9a6a1f /sysutils
parentd8dc080f472765f90e9c65f5521ef72d7ce03d33 (diff)
Notes
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/ansible/Makefile2
-rw-r--r--sysutils/ansible/distinfo4
-rw-r--r--sysutils/ansible/files/patch-lib_ansible_modules_extras_messaging_rabbitmq__user.py18
3 files changed, 3 insertions, 21 deletions
diff --git a/sysutils/ansible/Makefile b/sysutils/ansible/Makefile
index 2f7f88bd577f..b386d7a18ae5 100644
--- a/sysutils/ansible/Makefile
+++ b/sysutils/ansible/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= ansible
-PORTVERSION= 1.8.4
+PORTVERSION= 1.9.0.1
CATEGORIES= sysutils python
MASTER_SITES= http://releases.ansible.com/ansible/
diff --git a/sysutils/ansible/distinfo b/sysutils/ansible/distinfo
index f6a3e70edd21..e3b2b5aaec22 100644
--- a/sysutils/ansible/distinfo
+++ b/sysutils/ansible/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ansible-1.8.4.tar.gz) = d37c04b3abce9b036a6c8311fccb360c5cbc3ec895445f805243b0448d239ec1
-SIZE (ansible-1.8.4.tar.gz) = 758916
+SHA256 (ansible-1.9.0.1.tar.gz) = b2193fd9a4061ab624fa67311796419a759de06b4f321d37169b22ba3831331c
+SIZE (ansible-1.9.0.1.tar.gz) = 916591
diff --git a/sysutils/ansible/files/patch-lib_ansible_modules_extras_messaging_rabbitmq__user.py b/sysutils/ansible/files/patch-lib_ansible_modules_extras_messaging_rabbitmq__user.py
deleted file mode 100644
index 7c5ead97d244..000000000000
--- a/sysutils/ansible/files/patch-lib_ansible_modules_extras_messaging_rabbitmq__user.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-$FreeBSD$
-
---- lib/ansible/modules/extras/messaging/rabbitmq_user.py.orig
-+++ lib/ansible/modules/extras/messaging/rabbitmq_user.py
-@@ -162,7 +162,11 @@
- return dict()
-
- def add(self):
-- self._exec(['add_user', self.username, self.password])
-+ if self.password is not None:
-+ self._exec(['add_user', self.username, self.password])
-+ else:
-+ self._exec(['add_user', self.username, ''])
-+ self._exec(['clear_password', self.username])
-
- def delete(self):
- self._exec(['delete_user', self.username])