Add post, Update hugo.toml

This commit is contained in:
Roland Thomas 2023-06-08 23:12:34 -04:00
parent 41a264a32b
commit 0d94a0bb36
4 changed files with 92 additions and 3 deletions

44
content/posts/ansible.md Normal file
View File

@ -0,0 +1,44 @@
---
author: "Roland Thomas Jr"
title: "Ansible Rocks!"
date: "2023-06-08"
description: ""
tags: ["ansible"]
ShowToc: false
ShowBreadCrumbs: false
---
What is Ansible?
```yml
---
- name: Update web servers
hosts: webservers
remote_user: root
tasks:
- name: Ensure apache is at the latest version
ansible.builtin.yum:
name: httpd
state: latest
- name: Write the apache config file
ansible.builtin.template:
src: /srv/httpd.j2
dest: /etc/httpd.conf
- name: Update db servers
hosts: databases
remote_user: root
tasks:
- name: Ensure postgresql is at the latest version
ansible.builtin.yum:
name: postgresql
state: latest
- name: Ensure that postgresql is started
ansible.builtin.service:
name: postgresql
state: started
```
---

View File

@ -10,4 +10,8 @@ ShowBreadCrumbs: false
Welcome to rtj.dev!
```python
print('Hello, World!')
```
---

View File

@ -4,22 +4,54 @@ title = 'rtj.dev'
paginate = 10
theme = 'PaperMod'
enableEmoji = true
[params]
author = 'Roland Thomas Jr'
defaultTheme = 'auto'
ShowShareButtons = true
ShowCodeCopyButtons = true
ShowPostNavLinks = true
ShowRssButtonInSectionTermList = true
comments = true
ShowReadingTime = true
[params.homeInfoParams]
Title = "Roland Thomas Jr \U0001F525"
Content = 'Welcome to my blog'
[[params.socialIcons]]
name = 'twitter'
url = 'https://twitter.com/rolandthomasjr'
name = 'mastodon'
url = 'https://mastodon.social/@rolandtjr'
[[params.socialIcons]]
name = 'github'
url = 'https://github.com/rolandtjr'
[[params.socialIcons]]
name = 'codewars'
url = 'https://www.codewars.com/users/rolandtjr'
[[params.socialIcons]]
name = 'hackerrank'
url = 'https://www.hackerrank.com/roland26'
[[params.socialIcons]]
name = 'credly'
url = 'https://credly.com/users/roland-thomas-jr'
[[params.socialIcons]]
name = 'goodreads'
url = 'https://www.goodreads.com/rolandthomasjr'
[[params.socialIcons]]
name = 'email'
url = 'mailto:roland@rtj.dev'
[[params.socialIcons]]
name = 'Rss'
url = 'index.xml'
[languages.en]
languageName = 'English'
weight = 1
@ -42,7 +74,12 @@ weight = 10
[[languages.en.menu.main]]
name = "Tags"
url = "tags/"
weight = 1
weight = 10
[[languages.en.menu.main]]
name = "Gitea"
url = "https://git.rtj.dev"
weight = 15
[outputs]
home = [ "HTML", "RSS", "JSON" ]

File diff suppressed because one or more lines are too long