+ Setting up new playbook for a lab server
This commit is contained in:
parent
1e88f2bc51
commit
da871ddb68
4
.gitignore
vendored
4
.gitignore
vendored
@ -4,3 +4,7 @@ locs.conf
|
||||
msg
|
||||
# Cursor files I use for the memes
|
||||
cursors/
|
||||
# Playbook stuff for da lab
|
||||
docker-host/ssh/
|
||||
docker-host/inventory.ini
|
||||
|
||||
|
16
docker-host/readme
Normal file
16
docker-host/readme
Normal file
@ -0,0 +1,16 @@
|
||||
What this directory contains
|
||||
============================
|
||||
|
||||
This includes playbooks and scripts used to setup a local lab server as a
|
||||
docker host which you can use to basically do whatever.
|
||||
|
||||
What I use on my own lab server
|
||||
===============================
|
||||
|
||||
> Ubuntu 21.10
|
||||
|
||||
> Docker for hosting various local services more easily
|
||||
|
||||
> Local DNS
|
||||
|
||||
>
|
39
docker-host/setup/tasks/install-docker.yml
Normal file
39
docker-host/setup/tasks/install-docker.yml
Normal file
@ -0,0 +1,39 @@
|
||||
---
|
||||
- hosts: leftcoastlab
|
||||
become: yes
|
||||
tasks:
|
||||
- name: Install docker dependencies
|
||||
apt:
|
||||
name: "{{item}}"
|
||||
update_cache: yes
|
||||
loop:
|
||||
- apt-transport-https
|
||||
- ca-certificates
|
||||
- curl
|
||||
- gnupg
|
||||
- software-properties-common
|
||||
- lsb-release
|
||||
|
||||
- name: Install docker GPG key
|
||||
apt_key:
|
||||
url: https://download.docker.com/linux/ubuntu/gpg
|
||||
state: present
|
||||
|
||||
- name: Add Docker Apt Repo
|
||||
apt_repository:
|
||||
repo: deb https://download.docker.com/linux/ubuntu impish stable
|
||||
state: present
|
||||
|
||||
- name: Install Docker components
|
||||
apt:
|
||||
name: "{{item}}"
|
||||
update_cache: yes
|
||||
loop:
|
||||
- docker-ce
|
||||
- docker-ce-cli
|
||||
- containerd.io
|
||||
|
||||
|
||||
|
||||
|
||||
|
6
docker-host/setup/tasks/main.yml
Normal file
6
docker-host/setup/tasks/main.yml
Normal file
@ -0,0 +1,6 @@
|
||||
#
|
||||
---
|
||||
- hosts: leftcoastlab
|
||||
tasks:
|
||||
- name: Say hi
|
||||
command: echo hi
|
10
docker-host/setup/tasks/system-update.yml
Normal file
10
docker-host/setup/tasks/system-update.yml
Normal file
@ -0,0 +1,10 @@
|
||||
# Simply update all required packages that we have on the system
|
||||
# This also takes care of updating any packages that must updated through means
|
||||
# of Git or some other non-apt method should it be required
|
||||
---
|
||||
- hosts: leftcoastlab
|
||||
become: yes
|
||||
tasks:
|
||||
- name: Distribution Upgrade
|
||||
apt:
|
||||
upgrade: dist
|
10
reset-polybar-i3
Executable file
10
reset-polybar-i3
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Make sure we don't start up two instances at once
|
||||
pbar_id=`pgrep polybar`
|
||||
if [ ! -z $pbar_id ];then
|
||||
kill `pgrep $pbar_id`
|
||||
fi
|
||||
|
||||
# Start up polybar now that none are running
|
||||
polybar cute
|
Loading…
Reference in New Issue
Block a user