adap 0.0.18 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/adap/adap.rb +3 -1
- data/lib/adap/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79f0099367a12ae334622a2de2da08349595a29295bdbab740df1436a5049c3e
|
|
4
|
+
data.tar.gz: b1038603bd55124f3d2179736755e72e26d4015da212b7866942ced393335022
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54ffe5f02ce54bbdc962c176452091e37d6bad1ee56e73b0447b462535d2e09d356843e61f5d5ae6e30408ee6731ac76ad054d80b1ba69e781e748f63a322362
|
|
7
|
+
data.tar.gz: 9c519f4d69255a9d9bc58012d0181f35b1ccbf4427956b10bcf8d35cfb5906047e3bed4457bdd7a704fc7c1f2bfa7aec154d71e3d149285f15976cb86a0700bb
|
data/lib/adap/adap.rb
CHANGED
|
@@ -275,7 +275,9 @@ class Adap
|
|
|
275
275
|
|
|
276
276
|
# AD does not have password as simple ldap attribute.
|
|
277
277
|
# So password will always be updated for this reason.
|
|
278
|
-
|
|
278
|
+
if not password.nil? and not password.empty? then
|
|
279
|
+
operations.push([:replace, :userpassword, password])
|
|
280
|
+
end
|
|
279
281
|
|
|
280
282
|
operations
|
|
281
283
|
end
|
data/lib/adap/version.rb
CHANGED