Moved to repo: (https://github.com/aioue/r8152_proxmox_setup/blob/main/r8152_proxmox_setup.sh)
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
| # Tested with 1.5.1 guacamole release and latest (2025-02-20) from Apache's Dockerhub (https://hub.docker.com/u/guacamole) | |
| # To use this, start *only* the guacdb service first, copy and inject the guacamole initdb.sql script, then bring up the remaining services. | |
| # Source: https://krdesigns.com/articles/how-to-install-guacamole-using-docker-step-by-step | |
| version: '3.1' | |
| services: | |
| guacdb: | |
| container_name: guacdb | |
| image: mariadb:lts | |
| restart: unless-stopped |
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/python | |
| # | |
| # This file is part of Ansible | |
| # | |
| # Ansible is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # Ansible is distributed in the hope that it will be useful, |
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
| import time | |
| import argparse | |
| import json | |
| import boto.ec2 | |
| import boto.s3 | |
| import boto.route53 | |
| from boto.route53 import record | |
| from boto.s3 import connection | |
| from boto.s3.connection import Location |