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
--- | |
- hosts: virtualmin | |
remote_user: '{{ standard_user }}' | |
become: true | |
become_method: sudo | |
tasks: | |
- name: 'remove unneeded packages' | |
apt: | |
name: | |
- libnet-ssleay-perl |
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
job "minio" { | |
datacenters = ["dc1"] | |
type = "service" | |
group "minio1" { | |
ephemeral_disk { | |
size = 10000 | |
sticky = true | |
migrate = false | |
} |
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
#!/bin/sh | |
# Default to ADMIN for user and pass | |
echo usage "kvm IP [USER] [PASSWORD]" | |
echo USER/PASS default to 'ADMIN' | |
USER=${2:-ADMIN} |