This commit is contained in:
parent
f5aaeb506e
commit
eabbef372f
12 changed files with 28 additions and 25 deletions
|
@ -21,7 +21,7 @@ Or you can clone the repo and edit manually. You'll need `hugo` and `go` install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# clone the repo
|
# clone the repo
|
||||||
$ git clone git@gitpot.dev:lunivity/wiki.git lunivity-wiki
|
$ git clone git@gitpot.org:lunivity/wiki.git lunivity-wiki
|
||||||
|
|
||||||
# launch preview web server
|
# launch preview web server
|
||||||
$ hugo server --disableFastRender --noHTTPCache
|
$ hugo server --disableFastRender --noHTTPCache
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
+++
|
+++
|
||||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
date = {{ .Date }}
|
date = {{ .Date | time.Format "2006-01-02" }}
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -20,4 +20,4 @@ Here, you'll find detailed information and installation instructions for a varie
|
||||||
{{< card link="/guides/" title="Guides" subtitle="Guides and resources to help you along the way." icon="pencil" >}}
|
{{< card link="/guides/" title="Guides" subtitle="Guides and resources to help you along the way." icon="pencil" >}}
|
||||||
{{< /cards >}}
|
{{< /cards >}}
|
||||||
|
|
||||||
Check out the repository for this wiki on [Gitpot](https://gitpot.dev/lunivity/wiki)!
|
Check out the repository for this wiki on [Gitpot](https://gitpot.org/lunivity/wiki)!
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
+++
|
+++
|
||||||
title = 'Documentation'
|
title = 'Documentation'
|
||||||
date = 2024-01-09T19:42:30+01:00
|
date = 2024-01-09
|
||||||
|
|
||||||
|
[cascade]
|
||||||
|
type = "docs"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Here you'll find documentation for in-house tools and/or services, and their usages.
|
Here you'll find documentation for in-house tools and/or services, and their usages.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = 'Ansible'
|
title = 'Ansible'
|
||||||
date = 2024-01-09T19:48:22+01:00
|
date = 2024-01-09
|
||||||
|
|
||||||
next = "/docs/ansible/core"
|
next = "/docs/ansible/core"
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
+++
|
+++
|
||||||
title = 'Ansible: Common'
|
title = 'Ansible: Common'
|
||||||
linkTitle = 'Common'
|
linkTitle = 'Common'
|
||||||
date = 2024-01-09T19:49:13+01:00
|
date = 2024-01-09
|
||||||
next = "/docs/ansible/services"
|
next = "/docs/ansible/services"
|
||||||
prev = "/docs/ansible/core"
|
prev = "/docs/ansible/core"
|
||||||
weight = 2
|
weight = 2
|
||||||
|
@ -32,10 +32,10 @@ Before you begin, ensure you have the following prerequisites:
|
||||||
|
|
||||||
```bash {filename="Shell"}
|
```bash {filename="Shell"}
|
||||||
# install collection from source
|
# install collection from source
|
||||||
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-common.git
|
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-common.git
|
||||||
|
|
||||||
# install collection from tagged release 1.0.0 (currently unavailable)
|
# install collection from tagged release 1.0.0 (currently unavailable)
|
||||||
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-common.git,1.0.0
|
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-common.git,1.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -49,7 +49,7 @@ $ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-comm
|
||||||
|
|
||||||
```yaml {filename="requirements.yml"}
|
```yaml {filename="requirements.yml"}
|
||||||
collections:
|
collections:
|
||||||
- name: https://gitpot.dev/lunivity/ansible-common.git
|
- name: https://gitpot.org/lunivity/ansible-common.git
|
||||||
type: git
|
type: git
|
||||||
version: latest
|
version: latest
|
||||||
```
|
```
|
||||||
|
@ -85,12 +85,12 @@ There are multiple roles included in this collection. To view their advanced usa
|
||||||
|
|
||||||
## Repository
|
## Repository
|
||||||
|
|
||||||
You can find this project's repository [here](https://gitpot.dev/lunivity/ansible-common).
|
You can find this project's repository [here](https://gitpot.org/lunivity/ansible-common).
|
||||||
|
|
||||||
### Contributions
|
### Contributions
|
||||||
|
|
||||||
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.dev) for details if registrations aren't open yet).
|
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.org) for details if registrations aren't open yet).
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.dev/lunivity/ansible-common/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.dev/lunivity/ansible-common/src/branch/main/LICENSE.md) file for more details.
|
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.org/lunivity/ansible-common/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.org/lunivity/ansible-common/src/branch/main/LICENSE.md) file for more details.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
+++
|
+++
|
||||||
title = 'Ansible: Core'
|
title = 'Ansible: Core'
|
||||||
linkTitle = 'Core'
|
linkTitle = 'Core'
|
||||||
date = 2024-01-09T19:48:35+01:00
|
date = 2024-01-09
|
||||||
next = "/docs/ansible/common"
|
next = "/docs/ansible/common"
|
||||||
prev = "/docs/ansible"
|
prev = "/docs/ansible"
|
||||||
weight = 1
|
weight = 1
|
||||||
|
@ -33,10 +33,10 @@ Before you begin, ensure you have the following prerequisites:
|
||||||
|
|
||||||
```bash {filename="Shell"}
|
```bash {filename="Shell"}
|
||||||
# install collection from source
|
# install collection from source
|
||||||
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core.git
|
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-core.git
|
||||||
|
|
||||||
# install collection from tagged release 1.0.0 (currently unavailable)
|
# install collection from tagged release 1.0.0 (currently unavailable)
|
||||||
$ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core.git,1.0.0
|
$ ansible-galaxy collection install git+https://gitpot.org/lunivity/ansible-core.git,1.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -51,7 +51,7 @@ $ ansible-galaxy collection install git+https://gitpot.dev/lunivity/ansible-core
|
||||||
|
|
||||||
```yaml {filename="requirements.yml"}
|
```yaml {filename="requirements.yml"}
|
||||||
collections:
|
collections:
|
||||||
- name: https://gitpot.dev/lunivity/ansible-core.git
|
- name: https://gitpot.org/lunivity/ansible-core.git
|
||||||
type: git
|
type: git
|
||||||
version: latest
|
version: latest
|
||||||
```
|
```
|
||||||
|
@ -87,12 +87,12 @@ There are multiple roles included in this collection. To view their advanced usa
|
||||||
|
|
||||||
## Repository
|
## Repository
|
||||||
|
|
||||||
You can find this project's repository [here](https://gitpot.dev/lunivity/ansible-core).
|
You can find this project's repository [here](https://gitpot.org/lunivity/ansible-core).
|
||||||
|
|
||||||
### Contributions
|
### Contributions
|
||||||
|
|
||||||
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.dev) for details if registrations aren't open yet).
|
You're welcome to contribute to this website if you have a Lunivity account (see Gitpot's [homepage](https://gitpot.org) for details if registrations aren't open yet).
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.dev/lunivity/ansible-core/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.dev/lunivity/ansible-core/src/branch/main/LICENSE.md) file for more details.
|
This project is licensed under the [GNU General Public License v3.0 (GPL-3.0)](https://gitpot.org/lunivity/ansible-core/src/branch/main/LICENSE.md). Refer to the [LICENSE](https://gitpot.org/lunivity/ansible-core/src/branch/main/LICENSE.md) file for more details.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
+++
|
+++
|
||||||
title = 'Ansible: Services'
|
title = 'Ansible: Services'
|
||||||
linkTitle = 'Services'
|
linkTitle = 'Services'
|
||||||
date = 2024-01-09T22:39:54+01:00
|
date = 2024-01-09
|
||||||
prev = "/docs/ansible/common"
|
prev = "/docs/ansible/common"
|
||||||
weight = 3
|
weight = 3
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = 'Services'
|
title = 'Services'
|
||||||
date = 2024-02-15T09:47:30+01:00
|
date = 2024-02-15
|
||||||
+++
|
+++
|
||||||
|
|
||||||
{{< callout type="warning" >}}
|
{{< callout type="warning" >}}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
+++
|
+++
|
||||||
title = 'Authentik'
|
title = 'Authentik'
|
||||||
date = 2024-01-09T22:07:42+01:00
|
date = 2024-01-09
|
||||||
+++
|
+++
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module gitpot.dev/lunivity/wiki
|
module gitpot.org/lunivity/wiki
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
|
4
hugo.yml
4
hugo.yml
|
@ -24,7 +24,7 @@ params:
|
||||||
# Edit URL
|
# Edit URL
|
||||||
editURL:
|
editURL:
|
||||||
enable: true
|
enable: true
|
||||||
base: "https://gitpot.dev/lunivity/wiki/_edit/main/content/"
|
base: "https://gitpot.org/lunivity/wiki/_edit/main/content/"
|
||||||
# Page
|
# Page
|
||||||
page:
|
page:
|
||||||
width: wide
|
width: wide
|
||||||
|
@ -46,7 +46,7 @@ menu:
|
||||||
type: search
|
type: search
|
||||||
# - name: Gitpot
|
# - name: Gitpot
|
||||||
# weight: 5
|
# weight: 5
|
||||||
# url: "https://gitpot.dev/lunivity"
|
# url: "https://gitpot.org/lunivity"
|
||||||
# params:
|
# params:
|
||||||
# icon: git
|
# icon: git
|
||||||
sidebar:
|
sidebar:
|
||||||
|
|
Loading…
Reference in a new issue