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
| [Unit] | |
| Description=Kopia Server | |
| After=syslog.target | |
| After=network.target | |
| OnFailure=systemd-failure-email@%n.service | |
| [Service] | |
| Type=simple | |
| User=root | |
| Restart=always |
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
| CLOUDSDK_<SECTION>_<PROPERTY> | |
| e.g | |
| CLOUDSDK_API_ENDPOINT_OVERRIDES_CONTAINER=127.0.0.1 gcloud composer environments run | |
| or | |
| CLOUDSDK_API_ENDPOINT_OVERRIDES_COMPOSER=127.0.0.1 gcloud composer environments run | |
| etc. etc. |
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
| # Allows you to test results of small Ansible snippets in an isolated environment | |
| docker run -it centos:7 bash | |
| yum install -y epel-release.noarch | |
| yum install -y ansible.noarch | |
| vi test.yml | |
| ansible localhost -m include_tasks -a test.yml |