cosmetic diffs

This commit is contained in:
Dominik Chilla 2023-06-07 21:22:23 +02:00
parent fd77e8f93b
commit abaadbc778
3 changed files with 12 additions and 2 deletions

View File

@ -1 +0,0 @@
docker/debian/Dockerfile

11
OCI/README.md Normal file
View File

@ -0,0 +1,11 @@
# OCI
**Note:** You need to be in the root path of the repo!
Build local docker image:
```
$ docker build -t sos-milter:local -f OCI/Dockerfile .
```
Run it (with default ENV-values!):
```
$ docker run -d sos-milter:local
```

View File

@ -345,7 +345,7 @@ if __name__ == "__main__":
raise_exceptions=True, raise_exceptions=True,
client_strategy='RESTARTABLE' client_strategy='RESTARTABLE'
) )
logging.info("LDAP-Connection steht. PID: " + str(os.getpid())) logging.info("LDAP-Connection established. PID: " + str(os.getpid()))
except LDAPException as e: except LDAPException as e:
print("LDAP-Exception: " + traceback.format_exc()) print("LDAP-Exception: " + traceback.format_exc())
sys.exit(1) sys.exit(1)