This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [buildout] | |
| ... | |
| parts = | |
| ... | |
| patches | |
| ... | |
| [patches] | |
| recipe = collective.recipe.patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Products/LDAPUserFolder/LDAPUserFolder.py b/Products/LDAPUserFolder/LDAPUserFolder.py | |
| index 8402da3..60f9634 100644 | |
| --- Products/LDAPUserFolder/LDAPUserFolder.py | |
| +++ Products/LDAPUserFolder/LDAPUserFolder.py | |
| @@ -19,6 +19,7 @@ $Id$ | |
| import logging | |
| import os | |
| import random | |
| +import re | |
| try: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| which gfind || brew install findutils | |
| gfind ~/Applications/ ~/Library/ /usr/local/ -type l -lname '/opt/homebrew-cask/*' -printf "ln -vsf '%l' '%p'\n" |\ | |
| sed s,/opt/homebrew-cask/,/usr/local/, |\ | |
| bash | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.7" | |
| services: | |
| hello: | |
| image: hypriot/rpi-busybox-httpd | |
| ports: | |
| - "4000:80" | |
| deploy: | |
| replicas: 1 | |
| restart_policy: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins: | |
| debug: | |
| shortCut: Shift-D | |
| description: kubectl debug | |
| scopes: | |
| - pods | |
| command: bash | |
| background: false | |
| args: | |
| - -c |
OlderNewer