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 | |
## | |
## Title: docker-compose-all.sh | |
## Description: Shell script to run docker-compose in all subfolders | |
## Author: B. van wetten | |
## Created date: 16-03-2020 | |
## Updated date: 16-03-2020 | |
## Version: 0.1.0 | |
## GitHub Gist: https://gist.github.com/6067fdc65e96b6255e68e87c927c7cc7 | |
## |
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 | |
## | |
## Title: acl_util.sh | |
## Description: Shell script to recursively set ACE's on FreeNAS ZFS | |
## Author: B. van wetten | |
## Created date: 17-02-2020 | |
## Updated date: 20-02-2020 | |
## Version: 0.4.0 | |
## GitHub Gist: https://gist.github.com/QNimbus/8680cade5ac68e87f6308e4c72463a03 | |
## |
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 | |
## | |
## Title: setfacl.sh | |
## Description: | |
## Author: B. van wetten | |
## Created date: 17-02-2020 | |
## Updated date: 17-02-2020 | |
## Version: 0.1.0 | |
## GitHub Gist: https://gist.github.com/QNimbus/81ee0fba982e68eb5d9df6277df6951e | |
## |
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 | |
## | |
## Title: check_drives.sh | |
## Description: Script to check if drives are spun down (idle) | |
## Author: B. van wetten | |
## Created date: 11-02-2020 | |
## Updated date: 17-02-2020 | |
## Version: 0.1.3 | |
## GitHub Gist: https://gist.github.com/QNimbus/cd4432ed283d1f97d3cf9065923e566b | |
## |
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 | |
## | |
## Title: deploy_dsmr.sh | |
## Description: Script to deploy uploaded certificates for use with DSMR | |
## Author: B. van wetten | |
## Created date: 10-02-2020 | |
## Updated date: 10-02-2020 | |
## Version: 0.1 | |
## GitHub Gist: https://gist.github.com/QNimbus/3091a0ee7610e02fcbf2c975e51ecde5 | |
## |
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 | |
## | |
## Title: deploy_freenas.sh | |
## Description: Script to deploy uploaded certificates for use with VMWare ESXi | |
## Author: B. van wetten | |
## Created date: 28-01-2020 | |
## Updated date: 12-02-2020 | |
## Version: 0.3 | |
## GitHub Gist: https://gist.github.com/QNimbus/08dd3a44cddfc7b8ffc22aad1f012645 | |
## |
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: | |
nodered: | |
container_name: nodered | |
image: nodered/node-red | |
healthcheck: | |
test: curl -f --connect-timeout 2 http://localhost:1880 || exit 1 | |
interval: 30s | |
timeout: 4s | |
retries: 3 |
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 sh | |
## | |
## Title: deploy_vmware.sh | |
## Description: Script to deploy uploaded certificates for use with VMWare ESXi | |
## Author: B. van wetten | |
## Created date: 27-01-2020 | |
## Updated date: 10-02-2020 | |
## Version: 0.3 | |
## GitHub Gist: https://gist.github.com/QNimbus/9883a3ff8834843b3b024baf3bcccc29 | |
## |
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 | |
## | |
## Title: deploy_traefik.sh | |
## Description: Script to deploy uploaded certificates for use with traefik container | |
## Author: B. van wetten | |
## Created date: 26-01-2020 | |
## Updated date: 07-02-2020 | |
## Version: 0.3.1 | |
## GitHub Gist: https://gist.github.com/QNimbus/010ccc77919e07292e2a21edcf78b94a | |
## |
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 | |
## | |
## Title: deploy_unifi.sh | |
## Description: Script to deploy Let's Encrypt certificates for use with unifi controller container | |
## Author: B. van wetten | |
## Created date: 23-01-2020 | |
## Updated date: 06-02-2024 | |
## Version: 0.8 | |
## GitHub Gist: https://gist.github.com/QNimbus/1d27f8f44912545f047d3254cb51de70 | |
## |