Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/usr/bin/env bash | |
| # Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. | |
| # | |
| # This script executes Example 1 of the Data Flow Tutorial | |
| # https://docs.cloud.oracle.com/en-us/iaas/data-flow/data-flow-tutorial/tutorial/dfs_tut_etl_java.htm#etl_with_java | |
| # | |
| # For more help with specific Data Flow commands, see: | |
| # oci data-flow -h | |
| # |
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
| sudo podman pod create --name graylog-pod \ | |
| -p 9000:9000 -p 12201:12201 -p 1514:1514 | |
| sudo podman run \ | |
| -d --restart=always --pod=graylog-pod \ | |
| --name=mongo mongo:4.2 | |
| sudo podman run \ | |
| -d --restart=always --pod=graylog-pod \ | |
| -e "http.host=0.0.0.0" \ | |
| -e "discovery.type=single-node" \ |
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
| sudo podman pod create --name prefect-pod \ | |
| -p 8080:8080 -p 5432:5432 -p 3000:3000 -p 4201:4201 -p 4200:4200 | |
| #-v /var/postgres/data:/var/lib/postgresql/data \ | |
| sudo podman run \ | |
| -d --restart=always --pod=prefect-pod \ | |
| -e POSTGRES_PASSWORD="${POSTGRES_PASSWORD:-prefect_super_secret}" \ | |
| --name=postgres postgres:11 postgres -c max_connections=150 | |
| sudo podman run \ |
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
| /* | |
| * Aeon HEM Gen5 Aeotec Model ZW095-A | |
| * https://products.z-wavealliance.org/products/1289 | |
| * | |
| * Copyright 2020 Ben Rimmasch | |
| * | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
| * in compliance with the License. You may obtain a copy of the License at: | |
| * |
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
| [BaseOS] | |
| name=CentOS-$releasever - Base | |
| baseurl=http://192.168.1.11:8088/repository/yum-centos-proxy/$releasever/BaseOS/$basearch/os/ | |
| enabled=1 | |
| [extras] | |
| name=CentOS-$releasever - Extras | |
| baseurl=http://192.168.1.11:8088/repository/yum-centos-proxy/$releasever/extras/$basearch/os/ | |
| enabled=1 |
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
| [base] | |
| name=CentOS-$releasever - Base | |
| baseurl=http://192.168.1.11:8081/repository/yum-centos/$releasever/os/$basearch/ | |
| enabled=1 | |
| gpgcheck=0 | |
| priority=1 | |
| [updates] | |
| name=CentOS-$releasever - Updates | |
| baseurl=http://192.168.1.11:8081/repository/yum-centos/$releasever/updates/$basearch/ |
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
| if [ ! -S ~/.ssh/ssh_auth_sock ]; then | |
| eval `ssh-agent` | |
| ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock | |
| fi | |
| export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock | |
| ssh-add -l > /dev/null || ssh-add |
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
| /* | |
| * Aeon HEM Gen5(zwave plus) | |
| * | |
| * Copyright 2016 Dillon A. Miller | |
| * | |
| * v0.8 of Aeon HEM Gen5(zwave plus) code, released 04/15/2016 for Aeotec Model zw095-a | |
| * This Gen5 device handler is not backward compatible with the Aeon V1 or V2 device. If your model number is not zw095-a, don't use it. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
| * in compliance with the License. You may obtain a copy of the License at: |
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
| #!/usr/bin/env groovy | |
| //Dockerfile including Clair check. | |
| //[email protected] DEC-2017 | |
| node('docker') { | |
| def docker_registry="nexus.mydomain.err:5000" | |
| def clair_endpoint="https://nexus.mydomain.err:6060" | |
| def image_name="uis-cam/endpoint-heartbeat" |
NewerOlder