Skip to content

Instantly share code, notes, and snippets.

View bvansomeren's full-sized avatar

Barry van Someren bvansomeren

View GitHub Profile
@bvansomeren
bvansomeren / ansible-install-virtualmin.yml
Last active January 7, 2023 10:47 — forked from chetcuti/ansible-install-virtualmin.yml
ansible-install-virtualmin.yml
---
- hosts: virtualmin
remote_user: '{{ standard_user }}'
become: true
become_method: sudo
tasks:
- name: 'remove unneeded packages'
apt:
name:
- libnet-ssleay-perl
job "minio" {
datacenters = ["dc1"]
type = "service"
group "minio1" {
ephemeral_disk {
size = 10000
sticky = true
migrate = false
}
@bvansomeren
bvansomeren / kvm.sh
Created August 6, 2016 21:25 — forked from hh/kvm.sh
supermicro IMPIView kvm command line
#!/bin/sh
# Default to ADMIN for user and pass
echo usage "kvm IP [USER] [PASSWORD]"
echo USER/PASS default to 'ADMIN'
USER=${2:-ADMIN}
@bvansomeren
bvansomeren / Vagrantfile
Created November 16, 2013 13:30
My simple Vagrantfile with 3GB memory, 2 Cores and a network mapping
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.