Good morning
-
The Heist (Deluxe Edition) by Macklemore & Ryan Lewis on Apple Music
Listen to The Heist (Deluxe Edition) by Macklemore & Ryan Lewis on Apple Music. 2012. 19 Songs. Duration: 1 hour, 20 minutes.
Apple Music - Web Player (music.apple.com)
-
Wearing my 404 Media shirt, it arrived yesterday!
-
The sky is crying today. Taking the bus home.
-
home now. gonna just chill and play some video games until my appointment today.
-
just finished the apppointment. it went well and now I'm Hungry. Lunch in an hour as usual.
Then I chill. Video games probably.
-
will be talking to my friend Chloe to provide some solidarity in these times of ours after lunch
-
I find listening to KEXP in times of intense emotional turmoils helps me.
Maybe it will help you too:
https://kexp.org/playlist/ -
had a hour long convo with Chloe, it was good and fulfilling
now I think I'm gonna go out for a walk, its stopped raining
-
Chloe is the last call I'll do today. I've done three hours of calls today and I don't want to talk with anyone else today. Social energy battery is low now.
-
honestly maybe I'll just play some more Balatro and/or Vampire Survivors.
-
oh no John Richards on KEXP is making me cry today
LOVE YOU TOO JOHN :blobcatheart:
-
ahh the power of good music in bad times :blobcatmelt:
-
instead of playing video games I did really boring sysadmin stuff
( set up backups for Ten Forward's media bucket to our new rsyncnet offsite storate using rclone )
got stuck in AWS IAM hell for a bit because I got the IP constraint wrong (needed to include the proper subnet rsync.net is using in that location instead of just one IP)
but now we are good and the first rclone sync is running
-
and now I need tea and snacks before I write YAML (Ansible playbook)
-
I would say writing YAML and Ansible playbooks is a kind of self care but I don't think I'm that kind of sicko (complimentary)
-
speaking of boring (complimentary) things, couple episodes of the History of Philosophy podcast in the queue
will listen to them
-
TASK [install-angie : Create required configuration directories]
changed: [hathor.bastetrix.net] => {"changed": true, "gid": 0, "group": "root", "mode": "0755", "owner": "root", "path": "['/etc/angie/']", "size": 4096, "state": "directory", "uid": 0}TASK [install-angie : Copy our default angie.conf] **************
fatal: [hathor.bastetrix.net]: FAILED! => {"changed": false, "checksum": "a237636daf9b6ca7ea6cef260e7bba8f52d2c927", "msg": "Destination directory /etc/angie does not exist"}hey Ansible, what the fuck is going on here? why are you not creating the directory?
-
- name: Create required configuration directories
ansible.builtin.file:
path: "{{ angie_config_directories }}"
state: directory
vars:
angie_config_directories:
- /etc/angie/ -
I'm about to fucking just shell `mkdir` instead because of this nonsense, its always some BS like this with Ansible
-
- name: Create required configuration directories
ansible.builtin.shell:
cmd: mkdir -p {{ angie_config_directories | quote }}
vars:
angie_config_directories:
- /etc/angie/modules-enabled
- /etc/angie/conf.d
- /etc/angie/sites-enabled
- /etc/angie/sites-availableguess what? that worked