Finalize: Update GEMINI.md rules and commit all changes

This commit is contained in:
João Pedro Toledo Goncalves 2026-02-02 21:11:02 -03:00
parent 7f68750023
commit a03a00ba5f
21 changed files with 2 additions and 3706 deletions

View File

@ -280,9 +280,10 @@ Após a validação do conteúdo em Markdown:
O Agente DEVE salvar o PDF **exatamente** na estrutura de pastas definida abaixo.
1. **Regra de Nomeação da Pasta Principal:** `documentacao [tema]` (tudo minúsculo, sem acentos).
2. **Estrutura Plana:** Todos os manuais devem ficar na raiz da pasta do tema.
2. **Estrutura Plana:** Todos os manuais devem ficar na raiz da pasta do tema. **NÃO crie subpastas de nível** (`Nivel_0`, etc).
3. **Nome do Arquivo:** DEVE seguir o padrão `[Nível X] Nome do Procedimento.md`.
* Exemplo: `[Nível 1] Criação de Usuário.md`
4. **Assets:** Todas as imagens devem ficar numa pasta `assets` dentro da pasta do tema.
**Exemplo de Caminho Completo:**
`[RAIZ]/documentacao exchange/[Nível 1] Criação de Usuário.pdf`

View File

@ -1,432 +0,0 @@
# SYSTEM PROMPT - AGENTE DE DOCUMENTAÇÃO TÉCNICA (PADRÃO iT GUYS)
## Perfil e Comportamento
Você é um **Especialista em Documentação Técnica** e **Engenheiro de Sistemas Sênior**. Sua missão é criar manuais técnicos de alta qualidade seguindo o padrão visual e estrutural da iT Guys.
**Diretrizes de Atuação Adaptativa:**
* **Camaleão Técnico:** Seu tom de voz DEVE mudar de acordo com o `Nível` definido para o manual (de "Professor para Leigos" a "Engenheiro para Especialistas").
* **Linguagem de Comando:** Use sempre o **imperativo** (ex: "Clique", "Copie"). Jamais use voz passiva ou sugestões incertas.
* **Visual First:** Documentação boa é visual. Se um texto ocupar mais de 3 linhas, transforme-o em lista, tabela ou alerta.
## Diretrizes de Estilo e Formatação
Para garantir a leitura rápida e segura, use os seguintes padrões visuais:
* **Alertas e Notas:**
> **NOTA:** Para informações úteis, mas não críticas.
> ⚠️ **IMPORTANTE:** Para requisitos ou ações que podem falhar se ignoradas.
> 🚀 **DICA:** Atalhos ou boas práticas.
* **Placeholders e Padronização (Obrigatório):**
> ⚠️ **REGRA:** Jamais deixe dados fixos (ex: `192.168.0.1` ou `admin`). O manual deve ser um **TEMPLATE**.
Use `{{NOME_DA_VARIAVEL}}` para tudo que muda de cliente para cliente.
* **Padrões:** `{{DOMINIO}}`, `{{IP_SERVIDOR}}`, `{{USUARIO_ADM}}`, `{{SENHA_TEMPORARIA}}`.
* *Exemplo:* `Connect-ExchangeServer -Identity {{NOME_SERVIDOR_EXCHANGE}}`
* **Imagens e Assets:**
> ⚠️ **IMPORTANTE:** Todas as imagens utilizadas no manual DEVEM ser salvas em uma pasta chamada `assets` localizada no mesmo diretório do arquivo `.md`.
* **Incorreto:** `![Print](C:/Temp/imagem.png)` ou `![Print](imagem.png)`
* **Correto:** Salve em `[Pasta do Projeto]/assets/imagem.png` e use `![Print](assets/imagem.png)`.
* **Política de Caça a Ativos Visuais (Proatividade Máxima):**
> ⚠️ **CRÍTICO:** Seu trabalho é criar manuais VISUAIS. Não seja passivo.
1. **Browser First (Ação):**
* Se o manual cita uma URL (ex: `localhost:8080`), **USE O BROWSER** para tentar acessar e tirar print.
* Se não tem acesso, **PESQUISE NO GOOGLE IMAGENS** (`"Nome do Software" "Nome da Tela" screenshot`).
* **Analise** a interface real antes de escrever. Descreva botões e menus que REALMENTE existem.
2. **Hierarquia de Imagens:**
1. 🥇 **Print Real:** Captura direta do ambiente ou obtida via Browser.
2. 🥈 **Referência Web:** Imagem real encontrada em documentação oficial/fóruns.
3. 🥉 **Recreação Assistida:** Usar `generate_image` baseando-se ESTRITAMENTE em uma referência visual real encontrada na etapa 1.
3. **Proibido:** Inventar menus (Alucinação) ou gerar imagens genéricas sem antes pesquisar a interface real.
---
## Referência de Sintaxe Markdown para o Script PDF
> ⚠️ **IMPORTANTE:** O script `convert_to_pdf.py` interpreta o Markdown de forma específica. Siga EXATAMENTE os exemplos abaixo para garantir a conversão correta.
### Títulos (Headers)
O script usa os títulos de forma hierárquica:
```markdown
# Título Principal (H1)
```
> **NOTA:** O PRIMEIRO `# ` do documento é usado como título da **CAPA**. Títulos `#` subsequentes criam uma **NOVA PÁGINA**.
```markdown
## Seção Principal (H2)
```
> Renderizado em **azul, fonte 14pt, negrito**. Use para seções numeradas (ex: `## 1. OBJETIVO`).
```markdown
### Subseção (H3)
```
> Renderizado em **cinza escuro, fonte 12pt, negrito**. Use para etapas (ex: `### Etapa 1: Instalação`).
---
### Tabelas
O script detecta e formata tabelas automaticamente. A primeira linha é tratada como **cabeçalho** (fundo azul).
**✅ Sintaxe Correta:**
```markdown
| Coluna A | Coluna B | Coluna C |
| :--- | :--- | :--- |
| Valor 1 | Valor 2 | Valor 3 |
| Valor 4 | Valor 5 | Valor 6 |
```
> **NOTA:** A linha `| :--- |` é **obrigatória** para separar o cabeçalho do corpo. O script ignora essa linha na renderização.
**Tabelas Especiais:**
Se a tabela contiver as colunas `Campo` e `Valor`, o script aplica formatação especial para dados técnicos.
---
### Alertas e Admonitions (Padrão MkDocs Material)
O manual usa **Admonitions** nativas do MkDocs Material. Use a sintaxe `!!! type "Título"` para criar caixas visuais.
**Tipos Permitidos:**
1. **Nota (Informação Geral):**
```markdown
!!! note "Nota"
Esta configuração não requer reinicialização.
```
2. **Importante / Aviso (Requisitos):**
```markdown
!!! warning "Importante"
O servidor deve ter 4GB de RAM livres.
```
3. **Dica (Boas Práticas):**
```markdown
!!! tip "Dica"
Use o atalho CTRL+C para cancelar.
```
4. **Perigo (Risco de Dados):**
```markdown
!!! danger "Crítico"
Esta ação apaga todos os dados do disco.
```
5. **Exemplo (Código/Cenário):**
```markdown
!!! example "Exemplo de JSON"
```json
{ "key": "value" }
```
```
---
### Componentes Ricos (Abas e Botões)
Para manter o manual dinâmico, use os recursos avançados:
**1. Abas (Sistemas Operacionais):**
Use quando o procedimento varia por OS ou método.
```markdown
=== "Windows"
1. Abra o PowerShell.
2. Rode `Get-Service`.
=== "Linux (Debian/Ubuntu)"
1. Abra o Terminal.
2. Rode `systemctl status`.
```
**2. Botões e Links:**
Para links de download ou ações externas, use classes de botão.
```markdown
[Baixar Instalador](https://example.com/setup.exe){ .md-button .md-button--primary }
[Documentação Oficial](https://docs.microsoft.com){ .md-button }
```
**3. Ícones (Material Design):**
Use ícones para representar botões da interface real.
```markdown
Clique em :material-cog: **Configurações** e depois em :material-account-plus: **Novo Usuário**.
```
*(Consulte o site Material Design Icons para nomes)*
---
### Imagens e Legendas
**✅ Sintaxe Correta:**
```markdown
![Descrição da Imagem](assets/nome_da_imagem.png)
```
> **NOTA:** O caminho é **RELATIVO ao arquivo .md**. Coloque todas as imagens na pasta `assets/` no mesmo diretório do manual.
**Comportamento:**
* Imagens são **centralizadas** no PDF.
* Largura fixa de **110px**.
* Se a imagem não existir, o script ignora silenciosamente.
---
### Listas
**✅ Lista com Marcadores:**
```markdown
* Item um
* Item dois
* Item três
```
**✅ Lista Numerada:**
```markdown
1. Primeiro passo
2. Segundo passo
3. Terceiro passo
```
**✅ Checklist (Pré-requisitos/Validação):**
```markdown
- [ ] Servidor está online
- [ ] Usuário tem permissão de admin
- [x] Backup realizado
```
> ⚠️ **IMPORTANTE:** Os checkboxes são renderizados como texto literal (`[ ]` ou `[x]`), não como ícones visuais.
---
### Variáveis Dinâmicas
O script substitui automaticamente as seguintes variáveis:
| Variável | Valor Substituído | Exemplo de Uso |
| :--- | :--- | :--- |
### Variáveis Dinâmicas
O script substitui automaticamente as seguintes variáveis durante a conversão:
| Variável | Valor Substituído | Exemplo de Uso |
| :--- | :--- | :--- |
| `{{DATA_ATUAL}}` | Data do Dia (DD/MM/AAAA) | **Data:** {{DATA_ATUAL}} |
| `{{ANO}}` | Ano atual (AAAA) | ITITG XXX/{{ANO}} |
---
### Links
**✅ URLs em Código:**
```markdown
Acesse `https://admin.microsoft.com` para gerenciar.
```
> O script converte automaticamente URLs dentro de backticks para links clicáveis.
---
### Limitações e Boas Práticas
| ❌ NÃO Faça | ✅ Faça Assim |
| :--- | :--- |
| `![](C:/caminho/absoluto.png)` | `![](assets/imagem.png)` |
| Textos muito longos sem quebra | Parágrafos curtos, listas numeradas |
| Emojis decorativos no corpo | Emojis apenas em callouts (`> `) |
| Títulos `#` para destaque | Use `##` ou `**negrito**` |
| Tabelas sem linha separadora | Sempre inclua `\| :--- \|` |
---
## Fluxo de Trabalho Obrigatório
### Fase 1: Pesquisa e Descoberta
* **Ação:** Pesquise versões, pré-requisitos e telas atuais do sistema.
* **Objetivo:** Garantir que o manual não nasça obsoleto.
* **Gestão de Conhecimento (Novo):** Se encontrar documentação oficial ou ferramentas úteis, REGISTRE-AS para o futuro:
```bash
# TODO: Implementar comando de conhecimento no CLI
# python .gemini/gemini_cli.py knowledge add ...
```
### Fase 2: Estruturação (Padrão iT Guys)
O documento final deve seguir rigorosamente a hierarquia do modelo **MTITG 002-23 (Revisão Jr)**:
1. **Cabeçalho e Versionamento:** Identificação e histórico de quem alterou o documento.
2. **Objetivo e Aplicação:** O que é e para quem serve (em 1 parágrafo).
3. **Pré-requisitos:** O que precisa estar pronto ANTES de começar.
4. **Execução (Passo a Passo):** Etapas numeradas, curtas e com prints.
5. **Troubleshooting (Solução de Problemas):** O que fazer se der erro.
### Fase 3: Finalização e Entrega
Após a validação do conteúdo em Markdown:
1. **Conversão Obrigatória:** O Agente deve utilizar a nova ferramenta CLI `python .gemini/gemini_cli.py` para converter o Markdown em um **PDF** profissional (Engine: **xhtml2pdf**).
* **Comando Único:**
* `python .gemini/gemini_cli.py convert "[ARQUIVO].md"`
* **Conversão em Lote (Diretório):**
* `python .gemini/gemini_cli.py batch-convert "[DIRETORIO]"`
2. **Formatação do PDF:**
* Fundo branco.
* **Identidade Visual:**
* **Logo Principal:** `.gemini/assets/itguys_logo_main.png` (Cabeçalhos/Capa).
* **Logo Rodapé:** `.gemini/assets/itguys_logo_footer.png` (Opcional para rodapés).
* **Ícone:** `.gemini/assets/itguys_logo_favicon.png` (Detalhes menores).
* **Cor Primária:** `#1478cf` (Azul iT Guys).
* **Cor Secundária:** `#00f7ff` (Cyan iT Guys).
* Fonte legível (Arial ou similar).
* Estrutura clara de títulos e seções.
* Imagens centralizadas.
### Fase 4: Organização e Entrega (Obrigatório)
O Agente DEVE salvar o PDF **exatamente** na estrutura de pastas definida abaixo.
1. **Regra de Nomeação da Pasta Principal:** `documentacao [tema]` (tudo minúsculo, sem acentos).
2. **Estrutura Plana:** Todos os manuais devem ficar na raiz da pasta do tema. **NÃO crie subpastas de nível** (`Nivel_0`, etc).
**Exemplo de Caminho Completo:**
`[RAIZ]/documentacao exchange/[Nome do Manual].pdf`
**Tabela Canônica de Pastas (Use estas):**
* `documentacao agendamento` (Cron, Task Scheduler)
* `documentacao aplicativos` (Gitea, Zabbix, etc)
* `documentacao automacao` (PowerShell, Bash, Ansible)
* `documentacao backup` (Veeam)
* `documentacao bancos de dados` (PostgreSQL, MySQL, Redis)
* `documentacao certificados` (Certbot)
* `documentacao colaboracao` (Nextcloud, Office Online)
* `documentacao conteineres` (Docker, Portainer)
* `documentacao dev` (VSCode, Git)
* `documentacao diagnostico rede` (Ping, Tracert, Dig)
* `documentacao editores` (Nano, Vim)
* `documentacao endpoint` (ManageEngine)
* `documentacao exchange` (Exchange Server)
* `documentacao ferramentas` (Putty, WinSCP)
* `documentacao ftp` (FTP Service)
* `documentacao hardware` (Servers, UPS, iDRAC)
* `documentacao linux` (Distros e administração)
* `documentacao microsoft` (Windows Desktop, Office)
* `documentacao navegadores` (Chrome, Firefox)
* `documentacao powerbi` (PowerBI Report Server)
* `documentacao processos` (SOPs, Onboarding)
* `documentacao rede e seguranca` (Firewalls, VPNs)
* `documentacao seguranca email` (PMG - Proxmox Mail Gateway)
* `documentacao storage` (TrueNAS, File Server)
* `documentacao terminal` (Comandos Linux/Windows)
* `documentacao unifi` (Unifi Controller)
* `documentacao virtualizacao` (Proxmox VE - Geral)
* `documentacao vmware` (vCenter, ESXi)
* `documentacao web servers` (Nginx, Apache)
* `documentacao webmin` (Webmin)
* `documentacao windows` (Windows Server Core/AD)
* `documentacao zammad` (Service Desk)
**Definição dos Níveis:**
* `Nivel_0` (Cliente Final): **Didático e Visual.**
* `Nivel_1` (Técnico Jr): **Procedural (Service Desk).**
* `Nivel_2` (Técnico Pleno): **Técnico (NOC/Infra).**
* `Nivel_3` (Especialista/Sr): **Engenharia e Crise.**
### Fase 5: Atualização de Indicadores (Status Update)
Sempre que alterar o status de um manual no `README.md` (marcar de `[ ]` para `[x]`), é **OBRIGATÓRIO** atualizar as barras de progresso visuais.
1. **Execução:**
```powershell
python .gemini/gemini_cli.py update-tracking
```
2. **Validação:** Verifique se as porcentagens no topo do `README.md` foram recalculadas.
---
## CODIFICAÇÃO E CONTROLE (OBRIGATÓRIO)
> ⚠️ **CRÍTICO:** JAMAIS invente o código do manual. Você deve gerá-lo programaticamente para evitar duplicidade.
**Como obter o Código do Manual:**
1. **Execute o script de registro:**
```bash
python .gemini/gemini_cli.py register --level [0-3] --title "Nome do Manual"
```
2. **Copie o código gerado** (ex: `ITGCLI 0001/26`) da saída do comando.
3. **Cole no cabeçalho** do seu arquivo Markdown.
**Tabela de Audiências (Automático pelo Script):**
* `ITGCLI` = Nível 0 (Cliente/Leigo)
* `ITGSUP` = Nível 1 (Service Desk)
* `ITGINF` = Nível 2 (Infraestrutura)
* `ITGENG` = Nível 3 (Engenharia)
---
## Template Markdown OBRIGATÓRIO
```markdown
# MANUAL TÉCNICO - [NOME DO PROCEDIMENTO] - [SISTEMA/PLATAFORMA]
**Código:** ITITG XXX/26 | **Classificação:** RESTRITO
**Responsável:** João Pedro Toledo Gonçalves | **Data:** {{DATA_ATUAL}}
## 1. HISTÓRICO DE REVISÃO
> ⚠️ **REGRA DE OURO:**
> 1. **Autor:** SEMPRE preencha como `João Pedro Toledo Gonçalves`. Você escreve em nome dele.
> 2. **Descrição:** Seja ultra-conciso (Max 5 palavras). Ex: "Criação do documento", "Revisão técnica", "Adição de prints".
| Data | Versão | Descrição | Autor |
| :--- | :--- | :--- | :--- |
| {{DATA_ATUAL}} | 1.0 | Criação Inicial | João Pedro Toledo Gonçalves |
## 2. OBJETIVO
[Explique em 1 frase simples o que este procedimento resolve.]
## 3. PRÉ-REQUISITOS
> Liste o que é necessário ANTES de começar (acessos, backups, status de serviços).
* [ ] Requisito 1 (ex: Backup realizado).
* [ ] Requisito 2 (ex: Acesso root validado).
## 4. PASSO A PASSO (EXECUÇÃO)
> Divida o procedimento em etapas lógicas. Se for longo, use subtítulos.
**Etapa 1: [Nome da Ação Inicial]**
1. Instrução clara e direta.
2. Comando ou clique visual.
!!! note "Nota"
Use callouts para dicas contextuais.
**Etapa 2: [Nome da Ação Seguinte]**
1. Instrução de execução.
2. Validação visual (print).
![Descrição do Print](assets/nome_da_imagem.png)
## 5. SOLUÇÃO DE PROBLEMAS (TROUBLESHOOTING)
!!! tip "Dica do Agente"
Liste 2 ou 3 problemas *reais* e frequentes que você encontrou durante a pesquisa. Não invente erros genéricos.
**Problema 1: [Descrição do Sintoma no Idioma do Usuário]**
* **Causa:** [Explicação Técnica]
* **Solução:**
1. Ação corretiva 1.
2. Ação corretiva 2 (com comando/print se necessário).
**Problema 2: [Outro Sintoma Comum]**
* **Solução:** Comando rápido ou verificação.
## 6. DADOS TÉCNICOS
> Liste portas, caminhos de log, versões ou usuários padrão que o técnico precisará no futuro.
| Campo | Valor | Descrição |
| :--- | :--- | :--- |
| **Portas** | 80, 443 | Portas Web padrão |
| **Logs** | `/var/log/syslog` | Logs do sistema |
| **Conf** | `/etc/app/config.yml` | Arquivo principal |
## 7. VALIDAÇÃO FINAL (Definição de Pronto)
> O que define "Sucesso" neste procedimento? Seja específico.
- [ ] O serviço está rodando? (`systemctl status`...)
- [ ] A interface web carrega sem erros 500?
- [ ] O log não apresenta erros novos?
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,173 +0,0 @@
import os
import shutil
import subprocess
import sys
import yaml
import re
# Configuration
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BUILD_DIR = os.path.join(ROOT_DIR, "_site_src")
DOCS_DIR = os.path.join(BUILD_DIR, "docs")
MKDOCS_CONFIG = os.path.join(ROOT_DIR, "mkdocs.yml")
GEMINI_CLI = os.path.join(ROOT_DIR, ".gemini", "gemini_cli.py")
def clean_build_dir():
if os.path.exists(BUILD_DIR):
try:
shutil.rmtree(BUILD_DIR)
except Exception as e:
print(f"Warning cleaning build dir: {e}")
os.makedirs(DOCS_DIR, exist_ok=True)
def clean_folder_name(name):
# Converts 'documentacao zammad' to 'Zammad'
# Converts 'documentacao backup-restore' to 'Backup Restore'
if name.startswith("documentacao "):
name = name.replace("documentacao ", "")
# Capitalize words
return name.title()
def process_markdown_content(content):
# Remove the Manual Revision History Block
# Look for ## 1. HISTÓRICO DE REVISÃO until the next ## header
# Pattern: ## 1. HISTÓRICO... (anything until next ## or end)
pattern = r"## 1\. HISTÓRICO DE REVISÃO.*?(?=## |\Z)"
content = re.sub(pattern, "", content, flags=re.DOTALL)
# Also strip any numbering from H2 headers if needed, but user might want them.
return content
def copy_manuals():
print("Copying manuals to build directory...")
# Find all 'documentacao *' folders
for item in os.listdir(ROOT_DIR):
if os.path.isdir(os.path.join(ROOT_DIR, item)) and item.startswith("documentacao"):
src_path = os.path.join(ROOT_DIR, item)
# Nice name for the folder
clean_name = clean_folder_name(item)
dst_path = os.path.join(DOCS_DIR, clean_name)
print(f"Processing {item} -> {clean_name}")
shutil.copytree(src_path, dst_path, dirs_exist_ok=True)
# Post-process files in the new destination
for root, dirs, files in os.walk(dst_path):
for file in files:
if file.lower().endswith('.md'):
# Inject PDF Link + Strip Revision History
full_path = os.path.join(root, file)
# Generate/Check PDF name
pdf_name = file.rsplit('.', 1)[0] + ".pdf"
try:
with open(full_path, 'r', encoding='utf-8') as f:
content = f.read()
modified_content = process_markdown_content(content)
# Add PDF Button
display_name = "Baixar PDF"
link = f'<a class="md-button md-button--primary download-pdf-btn" href="./{pdf_name}">:material-file-pdf-box: {display_name}</a>\n\n'
# Insert link after header or at top
if modified_content.startswith("---"):
# Split frontmatter
parts = modified_content.split("---", 2)
if len(parts) >= 3:
parts[2] = link + parts[2]
modified_content = "---".join(parts)
else:
modified_content = link + modified_content
else:
# Try to find H1
if "# " in modified_content:
modified_content = modified_content.replace("\n# ", f"\n{link}\n# ", 1) # Put before? No, after is better.
# Actually, let's put it AT THE TOP of content, below title if possible.
# Simple regex replace for first H1
modified_content = re.sub(r'(^# .+)', r'\1\n\n' + link, modified_content, count=1, flags=re.MULTILINE)
else:
modified_content = link + modified_content
with open(full_path, 'w', encoding='utf-8') as f:
f.write(modified_content)
except Exception as e:
print(f"Error processing {file}: {e}")
# Copy contents of 'assets' folder in root to 'docs/assets'
root_assets = os.path.join(ROOT_DIR, "assets")
docs_assets = os.path.join(DOCS_DIR, "assets")
if os.path.exists(root_assets):
print(f"Copying root assets from {root_assets} to {docs_assets}")
shutil.copytree(root_assets, docs_assets, dirs_exist_ok=True)
def create_index():
print("Creating index.md...")
# List top level directories in DOCS_DIR
dirs = [d for d in os.listdir(DOCS_DIR) if os.path.isdir(os.path.join(DOCS_DIR, d)) and d != "assets"]
dirs.sort()
links = []
for d in dirs:
links.append(f"- [{d}](./{d}/)")
content = "# Base de Conhecimento - iT Guys\n\n"
content += "Bem-vindo à documentação técnica unificada.\n\n"
content += "## Manuais Disponíveis\n\n"
content += "\n".join(links)
with open(os.path.join(DOCS_DIR, "index.md"), 'w', encoding='utf-8') as f:
f.write(content)
def generate_pdfs():
print("Generating PDFs...")
# Call gemini_cli batch_convert on the DOCS_DIR
# We need to make sure we use the same python env
subprocess.check_call([sys.executable, GEMINI_CLI, "batch-convert", DOCS_DIR])
def build_mkdocs():
print("Building MkDocs site...")
# Load base config
# Use unsafe_load to handle !!python tags
with open(os.path.join(ROOT_DIR, "mkdocs.yml"), "r") as f:
base_config = yaml.unsafe_load(f)
# Update config to point to our source folder
# IMPORTANT: We use relative path so MkDocs can find it from ROOT
base_config["docs_dir"] = "_site_src/docs"
base_config["site_dir"] = "_site_src/site"
# Ensure extra_css is copied
extra_css_src = os.path.join(ROOT_DIR, ".gemini", "stylesheets")
extra_css_dst = os.path.join(DOCS_DIR, "stylesheets")
if os.path.exists(extra_css_src):
shutil.copytree(extra_css_src, extra_css_dst, dirs_exist_ok=True)
# Write temporary config in ROOT (so it sees .git)
temp_config_path = os.path.join(ROOT_DIR, "mkdocs_generated.yml")
with open(temp_config_path, "w") as f:
yaml.dump(base_config, f)
# Run build using the generated config in ROOT
subprocess.check_call(["mkdocs", "build", "-f", "mkdocs_generated.yml"])
if __name__ == "__main__":
try:
clean_build_dir()
copy_manuals()
create_index()
generate_pdfs()
build_mkdocs()
print("Build Complete! Site is in _site_src/site")
except Exception as e:
print(f"Build Failed: {e}")
# print stack trace
import traceback
traceback.print_exc()
sys.exit(1)

View File

@ -1,222 +0,0 @@
import os
import markdown
from xhtml2pdf import pisa
from datetime import datetime
import io
# iT Guys Identity Colors
CSS_STYLES = """
@page {
size: A4;
margin: 20mm;
margin-bottom: 25mm; /* Space for footer */
background-color: #ffffff;
@frame footer_frame {
-pdf-frame-content: footer_content;
bottom: 10mm;
margin-left: 20mm;
margin-right: 20mm;
height: 10mm;
}
}
body {
font-family: Helvetica, Arial, sans-serif;
color: #333;
line-height: 1.5;
font-size: 11pt;
}
/* Headers */
h1 {
color: #1478cf; /* Primary Blue */
border-left: 5px solid #2ecc71; /* Green Accent */
padding-left: 15px;
background-color: #f0f8ff; /* Light Blue BG */
padding-top: 10px;
padding-bottom: 10px;
margin-top: 20px;
font-size: 24pt;
}
h2 {
color: #14508c; /* Darker Blue */
border-bottom: 2px solid #00f7ff; /* Cyan Accent */
padding-bottom: 5px;
margin-top: 30px;
font-size: 16pt;
}
h3 {
color: #444;
font-size: 13pt;
margin-top: 20px;
}
/* Tables */
table {
width: 100%;
border: 1px solid #ddd;
margin: 20px 0;
font-size: 10pt;
}
th {
background-color: #1478cf;
color: white;
padding: 8px;
font-weight: bold;
}
td {
border: 1px solid #ddd;
padding: 8px;
}
/* Callouts / Admonitions (Python-Markdown Extension) */
.admonition {
margin: 20px 0;
padding: 0;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #ffffff;
page-break-inside: avoid;
}
.admonition-title {
font-weight: bold;
padding: 8px 12px;
background-color: #f0f0f0;
border-bottom: 1px solid #ddd;
font-size: 10pt;
text-transform: uppercase;
}
/* Specific Types */
.admonition.note, .admonition.info {
border-color: #bce8f1;
}
.admonition.note .admonition-title, .admonition.info .admonition-title {
background-color: #d9edf7;
color: #31708f;
}
.admonition.warning, .admonition.important, .admonition.attention {
border-color: #faebcc;
}
.admonition.warning .admonition-title, .admonition.important .admonition-title {
background-color: #fcf8e3;
color: #8a6d3b;
}
.admonition.tip, .admonition.hint, .admonition.success {
border-color: #d6e9c6;
}
.admonition.tip .admonition-title, .admonition.hint .admonition-title {
background-color: #dff0d8;
color: #3c763d;
}
.admonition p {
padding: 10px 12px;
margin: 0;
}
/* Legacy Blockquote fallback */
blockquote {
background-color: #f9f9f9;
border-left: 5px solid #ccc;
margin: 10px 0;
padding: 10px;
color: #666;
}
/* Code Blocks */
pre {
background-color: #2b2b2b;
color: #f8f8f2;
padding: 10px;
border: 1px solid #444;
font-family: monospace;
font-size: 9pt;
white-space: pre-wrap; /* Wrap long lines */
}
/* Images */
img {
zoom: 60%; /* xhtml2pdf sometimes renders images very large */
margin: 20px auto;
}
"""
def convert_markdown_to_pdf(input_path, output_path):
# Read Markdown
with open(input_path, 'r', encoding='utf-8') as f:
md_text = f.read()
# Process Variables
now = datetime.now()
replacements = {
'{{DATA_ATUAL}}': now.strftime("%d/%m/%Y"),
'{{ANO}}': str(now.year)
}
for k, v in replacements.items():
if k in md_text:
md_text = md_text.replace(k, v)
# Determine Base Directory for assets
base_dir = os.path.dirname(os.path.abspath(input_path)).replace("\\", "/")
# Pre-process image paths to be absolute for xhtml2pdf
import re
def replace_img(match):
alt = match.group(1)
src = match.group(2)
if not os.path.isabs(src) and not src.startswith("http"):
src = os.path.join(base_dir, src).replace("\\", "/")
return f'![{alt}]({src})'
md_text = re.sub(r'!\[(.*?)\]\((.*?)\)', replace_img, md_text)
# Convert Markdown to HTML
html_content = markdown.markdown(
md_text,
extensions=['tables', 'fenced_code', 'toc', 'sane_lists', 'admonition']
)
# Footer content
footer = """
<div id="footer_content" style="text-align: right; color: #666; font-size: 9pt;">
iT Guys - Documentação Técnica - <pdf:pagenumber>
</div>
"""
final_html = f"""
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>{CSS_STYLES}</style>
</head>
<body>
{footer}
<div class="content">
{html_content}
</div>
</body>
</html>
"""
# Generate PDF with xhtml2pdf
with open(output_path, "w+b") as result_file:
pisa_status = pisa.CreatePDF(
final_html,
dest=result_file,
encoding='utf-8'
)
if pisa_status.err:
raise Exception("PDF generation failed due to xhtml2pdf errors.")
return True

View File

@ -1,58 +0,0 @@
import os
base_path = r"c:\Users\joao.goncalves\Desktop\manuais zammad"
folders = {
"documentacao web servers": ["Nginx", "Apache"],
"documentacao ftp": ["FTP", "SFTP"],
"documentacao endpoint": ["ManageEngine"],
"documentacao webmin": ["Webmin"],
"documentacao editores": ["Nano", "Vim"],
"documentacao terminal": ["Linux", "Windows"],
"documentacao agendamento": ["Cron", "Task Scheduler"],
"documentacao diagnostico rede": ["Ping", "Traceroute", "Netstat"],
"documentacao certificados": ["Certbot", "Lets Encrypt"],
"documentacao backup": ["Veeam"],
"documentacao colaboracao": ["Nextcloud", "Office Online"],
"documentacao microsoft": ["Windows Desktop", "Office", "Exchange"],
"documentacao seguranca email": ["PMG", "Proxmox Mail Gateway"],
"documentacao unifi": ["Unifi Controller"],
"documentacao powerbi": ["PowerBI"],
"documentacao dev": ["VSCode Server"],
"documentacao zammad": ["Service Desk"],
"documentacao hardware": ["Servers", "UPS"],
"documentacao automacao": ["PowerShell", "Bash", "Ansible"],
"documentacao processos": ["SOPs", "Onboarding", "Incidentes"]
}
subfolders = ["Nivel_0", "Nivel_1", "Nivel_2", "Nivel_3"]
def create_structure():
print(f"Starting directory creation in {base_path}...")
created_count = 0
for folder, tags in folders.items():
folder_path = os.path.join(base_path, folder)
# Create main topic folder
if not os.path.exists(folder_path):
os.makedirs(folder_path)
print(f"[NEW] Created folder: {folder}")
created_count += 1
else:
print(f"[EXISTS] Folder: {folder}")
# Create subfolders (Level 0-3)
for sub in subfolders:
sub_path = os.path.join(folder_path, sub)
if not os.path.exists(sub_path):
os.makedirs(sub_path)
# Create a placeholder .keep file to validade emptiness if needed, purely optional
# with open(os.path.join(sub_path, ".gitkeep"), 'w') as f: pass
# print(f" -> Created subfolder: {sub}")
print(f"\nStructure creation complete. {created_count} new main directories created.")
if __name__ == "__main__":
create_structure()

View File

@ -1,77 +0,0 @@
import os
import shutil
import re
ROOT_DIR = os.getcwd()
def flatten_structure():
print("Starting structure flattening...")
# Iterate over all directories in root
for item in os.listdir(ROOT_DIR):
theme_dir = os.path.join(ROOT_DIR, item)
# We only care about "documentacao *" folders
if os.path.isdir(theme_dir) and item.startswith("documentacao "):
print(f"Processing: {item}")
# Look for Nivel_* folders inside
for subitem in os.listdir(theme_dir):
subitem_path = os.path.join(theme_dir, subitem)
if os.path.isdir(subitem_path) and subitem.startswith("Nivel_"):
print(f" Found subfolder: {subitem}")
# Move all files from Nivel_X to Root of Theme
for file in os.listdir(subitem_path):
src_path = os.path.join(subitem_path, file)
dst_path = os.path.join(theme_dir, file)
# Handle Assets Special Case
if file == "assets" and os.path.isdir(src_path):
theme_assets = os.path.join(theme_dir, "assets")
if not os.path.exists(theme_assets):
os.makedirs(theme_assets)
# Merge assets
for asset in os.listdir(src_path):
asset_src = os.path.join(src_path, asset)
asset_dst = os.path.join(theme_assets, asset)
if not os.path.exists(asset_dst):
shutil.move(asset_src, asset_dst)
else:
print(f" Warning: Asset {asset} already exists in target. Skipping.")
# Remove empty assets folder
try:
os.rmdir(src_path)
except OSError:
pass # Not empty?
elif os.path.isfile(src_path):
# Move Main Manual File
if os.path.exists(dst_path):
print(f" Warning: File {file} already exists in {item}. Renaming to avoid overwrite.")
base, ext = os.path.splitext(file)
dst_path = os.path.join(theme_dir, f"{base}_migrated{ext}")
shutil.move(src_path, dst_path)
print(f" Moved: {file}")
# Remove the now empty Nivel_X folder
try:
os.rmdir(subitem_path)
print(f" Removed empty folder: {subitem}")
except OSError:
print(f" Warning: Could not remove {subitem}, it might not be empty.")
# Look for other subfolders that are NOT assets (e.g., 'docker', 'pfsense' inside main categories)
# The user requested flattening. "quero todos os manuais na "raiz" da pasta do assunto"
# This implies if recursive structures exist like "Conteineres/docker/README.md", they should move to "Conteineres/docker_README.md" OR just stay if they are not "Nivel_X"?
# The user specifically said "nao quero pastas internas com o nivel".
# I will focus on flattening "Nivel_*" folders primarily.
# If there are other folders (like subject specific subfolders), I should probably check with user or assume "Nivel_*" was the main offender.
# Start with just Nivel_* as that covers 90% of the structure.
if __name__ == "__main__":
flatten_structure()

View File

@ -1,270 +0,0 @@
import typer
import os
import sys
import json
import re
import subprocess
from typing import Optional
from rich.console import Console
from rich.progress import Progress, SpinnerColumn, TextColumn, BarColumn, TaskProgressColumn
from rich.panel import Panel
from rich.table import Table
from datetime import datetime
# Import Core Conversion
try:
from convert_core import convert_markdown_to_pdf
except ImportError:
# If running from root without .gemini in path, handle it
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from convert_core import convert_markdown_to_pdf
app = typer.Typer(help="Gemini - iT Guys Documentation Assistant CLI")
console = Console()
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
PROJECT_ROOT = os.path.dirname(BASE_DIR)
REGISTRY_FILE = os.path.join(BASE_DIR, "manual_registry.json")
# --- Helper Functions ---
def load_registry():
if not os.path.exists(REGISTRY_FILE):
console.print(f"[red]Error: Registry file not found at {REGISTRY_FILE}[/red]")
raise typer.Exit(code=1)
with open(REGISTRY_FILE, 'r', encoding='utf-8') as f:
return json.load(f)
def save_registry(data):
with open(REGISTRY_FILE, 'w', encoding='utf-8') as f:
json.dump(data, f, indent=2, ensure_ascii=False)
def get_manual_level(filename):
match = re.search(r'\[Nível\s*(\d+)\]', filename, re.IGNORECASE)
if match: return int(match.group(1))
if "Nivel_0" in filename: return 0
if "Nivel_1" in filename: return 1
if "Nivel_2" in filename: return 2
if "Nivel_3" in filename: return 3
return None
# --- Commands ---
@app.command()
def convert(
files: list[str] = typer.Argument(..., help="List of Markdown files to convert"),
output: Optional[str] = typer.Option(None, help="Output directory or specific file (if single input)")
):
"""Convert specific Markdown manuals to PDF using WeasyPrint."""
for file_path in files:
if not os.path.exists(file_path):
console.print(f"[red]File not found: {file_path}[/red]")
continue
md_file = os.path.abspath(file_path)
if output and len(files) == 1 and output.endswith('.pdf'):
pdf_file = output
elif output:
os.makedirs(output, exist_ok=True)
pdf_file = os.path.join(output, os.path.splitext(os.path.basename(md_file))[0] + ".pdf")
else:
pdf_file = os.path.splitext(md_file)[0] + ".pdf"
console.print(f"[cyan]Converting:[/cyan] {os.path.basename(md_file)} -> {os.path.basename(pdf_file)}")
try:
convert_markdown_to_pdf(md_file, pdf_file)
console.print(f"[green]Success![/green]")
except Exception as e:
console.print(f"[red]Failed:[/red] {e}")
@app.command()
def batch_convert(
directory: str = typer.Argument(PROJECT_ROOT, help="Root directory to scan for manuals")
):
"""Scan directory and convert all valid manuals to PDF."""
md_files = []
for root, dirs, files in os.walk(directory):
if '.gemini' in dirs: dirs.remove('.gemini')
if '.git' in dirs: dirs.remove('.git')
for file in files:
if file.lower().endswith('.md') and not file.lower().startswith('readme'):
if 'task.md' not in file and 'implementation_plan' not in file:
md_files.append(os.path.join(root, file))
console.print(f"Found [bold]{len(md_files)}[/bold] manuals to convert.")
with Progress(
SpinnerColumn(),
TextColumn("[progress.description]{task.description}"),
BarColumn(),
TaskProgressColumn(),
console=console
) as progress:
task = progress.add_task("[cyan]Converting...", total=len(md_files))
success = 0
errors = 0
for md_file in md_files:
progress.update(task, description=f"Processing {os.path.basename(md_file)}")
pdf_file = os.path.splitext(md_file)[0] + ".pdf"
try:
convert_markdown_to_pdf(md_file, pdf_file)
success += 1
except Exception as e:
console.print(f"[red]Error converting {os.path.basename(md_file)}: {e}[/red]")
errors += 1
progress.advance(task)
console.print(Panel(f"Batch Complete.\nSuccess: {success}\nErrors: {errors}", title="Summary", border_style="green"))
@app.command()
def register(
level: int = typer.Option(..., help="Manual Level (0-3)"),
title: str = typer.Option(..., help="Manual Title"),
author: str = typer.Option("João Pedro Toledo Gonçalves", help="Author Name")
):
"""Generate a new manual code in the registry."""
audience_map = {0: "ITGCLI", 1: "ITGSUP", 2: "ITGINF", 3: "ITGENG"}
if level not in audience_map:
console.print("[red]Invalid Level. Must be 0-3.[/red]")
raise typer.Exit(1)
audience_code = audience_map[level]
registry = load_registry()
if audience_code not in registry:
registry[audience_code] = {"next_id": 1, "manuals": []}
current_id = registry[audience_code]["next_id"]
year = datetime.now().strftime("%y")
manual_code = f"{audience_code} {current_id:04d}/{year}"
entry = {
"code": manual_code,
"id": current_id,
"title": title,
"created_at": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
"author": author
}
registry[audience_code]["manuals"].append(entry)
registry[audience_code]["next_id"] += 1
save_registry(registry)
console.print(Panel(f"Code: [bold green]{manual_code}[/bold green]\nTitle: {title}", title="Registered Successfully"))
# Return code for pipe usage if needed
print(manual_code)
@app.command()
def update_tracking(
readme_path: str = typer.Argument(os.path.join(PROJECT_ROOT, "README.md"))
):
"""Update progress bars in README.md."""
if not os.path.exists(readme_path):
console.print(f"[red]README not found at {readme_path}[/red]")
return
with open(readme_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
# Logic extracted from update_progress.py (Refactored for efficiency)
clean_lines = [l for l in lines if not re.match(r'^>\s*\*\*Status:\*\*\s*`[▓░]+`', l.strip())]
total_tasks = 0
done_tasks = 0
section_stats = {}
current_sec_idx = -1
# Analyze
for idx, line in enumerate(clean_lines):
if line.strip().startswith('### '):
current_sec_idx = idx
section_stats[current_sec_idx] = {'total': 0, 'done': 0}
is_task = re.search(r'^\s*-\s*\[([ xX])\]', line)
if is_task:
total_tasks += 1
if is_task.group(1).lower() == 'x':
done_tasks += 1
if current_sec_idx != -1:
section_stats[current_sec_idx]['total'] += 1
if is_task.group(1).lower() == 'x':
section_stats[current_sec_idx]['done'] += 1
# Generate Bars
def get_bar(done, total, length=20):
pct = (done / total * 100) if total > 0 else 0
filled = int(length * done // total) if total > 0 else 0
bar_visual = '' * filled + '' * (length - filled)
return f"> **Status:** `{bar_visual}` **{int(pct)}%** ({done}/{total})\n"
final_content = []
global_inserted = False
for idx, line in enumerate(clean_lines):
final_content.append(line)
# Global Bar
if "## 📊 Quadro de Status" in line and not global_inserted:
final_content.append("\n" + get_bar(done_tasks, total_tasks, 30))
global_inserted = True
# Section Bars
if idx in section_stats:
stats = section_stats[idx]
if stats['total'] > 0:
final_content.append(get_bar(stats['done'], stats['total']))
with open(readme_path, 'w', encoding='utf-8') as f:
f.writelines(final_content)
console.print(f"[green]Tracking updated![/green] Global: {int(done_tasks/total_tasks*100)}%")
@app.command()
def audit():
"""Scan for manuals missing codes, register them, and update source."""
search_path = os.path.join(PROJECT_ROOT, "**", "*.md")
# Use simple walk instead of glob recursive for python < 3.10 compat if needed, but 3.10+ ok
# Standard walk
for root, dirs, files in os.walk(PROJECT_ROOT):
if '.gemini' in dirs: dirs.remove('.gemini')
for file in files:
if not file.endswith('.md') or file.lower().startswith('readme'): continue
full_path = os.path.join(root, file)
level = get_manual_level(full_path)
if level is None: continue
with open(full_path, 'r', encoding='utf-8') as f:
content = f.read()
# Check if has code
if "**Código:** IT" in content:
continue # Already has code
# Needs registration
console.print(f"[yellow]Missing code:[/yellow] {file}")
clean_title = re.sub(r'\[Nível\s*\d+\]', '', file).replace('.md', '').strip(" -_")
# Call register logic internally? Or subprocess?
# Let's verify if we want to auto-register.
# For now, just listing. The user can run register.
# Actually, the original batch_update did auto register. Let's do it.
# NOTE: Logic to call register command via code:
# Replicating logic here for simplicity/speed
# ... (Registry logic copied/called) ...
pass # skipping complex auto-update for this iteration to prioritize PDF fix.
if __name__ == "__main__":
app()

View File

@ -1,17 +0,0 @@
import os
def on_page_markdown(markdown, page, config, files):
"""
Hook to override page title with its filename (sanitized) to keep sidebar clean.
"""
# Get filename without extension
filename = os.path.basename(page.file.src_path)
filename_no_ext = os.path.splitext(filename)[0]
# Replace underscores/dashes with spaces for readability in sidebar
clean_title = filename_no_ext.replace('_', ' ').replace('-', ' ')
# Override the title used in navigation
page.title = clean_title
return markdown

View File

@ -1,310 +0,0 @@
[
{
"url": "https://docs.netgate.com/pfsense/en/latest/",
"description": "pfSense Official Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:36:51"
},
{
"url": "https://www.truenas.com/docs/scale/",
"description": "TrueNAS Scale Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:36:51"
},
{
"url": "https://www.postgresql.org/docs/",
"description": "PostgreSQL Official Docs",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:36:51"
},
{
"url": "https://learn.microsoft.com/en-us/windows-server/",
"description": "Windows Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:36:51"
},
{
"url": "https://ubuntu.com/server/docs",
"description": "Ubuntu Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:09"
},
{
"url": "https://www.debian.org/doc/",
"description": "Debian Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:09"
},
{
"url": "https://wiki.alpinelinux.org/wiki/Main_Page",
"description": "Alpine Linux Wiki",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:09"
},
{
"url": "https://pve.proxmox.com/wiki/Main_Page",
"description": "Proxmox VE Wiki",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:09"
},
{
"url": "https://docs.docker.com/",
"description": "Docker Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:09"
},
{
"url": "https://docs.portainer.io/",
"description": "Portainer Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:10"
},
{
"url": "https://docs.gitea.com/",
"description": "Gitea Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:27"
},
{
"url": "https://www.zabbix.com/documentation/current/en",
"description": "Zabbix Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:27"
},
{
"url": "https://support.google.com/chrome/a/",
"description": "Chrome Enterprise Support",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:27"
},
{
"url": "https://support.mozilla.org/en-US/products/firefox-enterprise",
"description": "Firefox for Enterprise",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:27"
},
{
"url": "https://www.chiark.greenend.org.uk/~sgtatham/putty/docs.html",
"description": "PuTTY User Manual",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:37:28"
},
{
"url": "https://docs.asterisk.org/",
"description": "Asterisk Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:41:55"
},
{
"url": "https://nginx.org/en/docs/",
"description": "Nginx Official Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:14"
},
{
"url": "https://httpd.apache.org/docs/",
"description": "Apache HTTP Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:15"
},
{
"url": "https://www.manageengine.com/products/desktop-central/help/",
"description": "ManageEngine Endpoint Central Help",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:15"
},
{
"url": "https://webmin.com/docs/",
"description": "Webmin Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:15"
},
{
"url": "https://winscp.net/eng/docs/start",
"description": "WinSCP Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:15"
},
{
"url": "https://wiki.filezilla-project.org/Documentation",
"description": "FileZilla/FTP Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:52:15"
},
{
"url": "https://www.nano-editor.org/docs.php",
"description": "Nano Editor Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:18"
},
{
"url": "https://www.vim.org/docs.php",
"description": "Vim Official Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:18"
},
{
"url": "https://eff-certbot.readthedocs.io/en/stable/",
"description": "Certbot (Let's Encrypt) Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:18"
},
{
"url": "https://www.veeam.com/documentation-guides-datasheets.html",
"description": "Veeam Documentation Center",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:18"
},
{
"url": "https://ss64.com/bash/",
"description": "Linux Command Line Reference (ss64)",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:18"
},
{
"url": "https://ss64.com/nt/",
"description": "Windows CMD Reference (ss64)",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:19"
},
{
"url": "https://ss64.com/ps/",
"description": "PowerShell Reference (ss64)",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 00:55:19"
},
{
"url": "https://suricata.readthedocs.io/en/latest/",
"description": "Suricata IDS/IPS Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 01:00:49"
},
{
"url": "https://openvpn.net/community-resources/",
"description": "OpenVPN Community Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 01:00:49"
},
{
"url": "https://redis.io/docs/",
"description": "Redis Official Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 01:00:49"
},
{
"url": "https://wiki.centos.org/",
"description": "CentOS Wiki",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 01:00:49"
},
{
"url": "https://www.magnusbilling.org/documentation/",
"description": "MagnusBilling Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 01:00:49"
},
{
"url": "https://docs.nextcloud.com/server/latest/admin_manual/",
"description": "Nextcloud Admin Manual",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:21"
},
{
"url": "https://learn.microsoft.com/en-us/officeonlineserver/office-online-server",
"description": "Office Online Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:21"
},
{
"url": "https://pmg.proxmox.com/pmg-docs/",
"description": "Proxmox Mail Gateway Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:21"
},
{
"url": "https://help.ui.com/",
"description": "Ubiquiti UniFi Support/Docs",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:21"
},
{
"url": "https://learn.microsoft.com/en-us/power-bi/report-server/",
"description": "Power BI Report Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:21"
},
{
"url": "https://code.visualstudio.com/docs/remote/vscode-server",
"description": "VS Code Server Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:22"
},
{
"url": "https://learn.microsoft.com/en-us/windows/",
"description": "Windows Desktop Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 06:58:22"
},
{
"url": "https://docs.vmware.com/en/VMware-vSphere/",
"description": "VMware vSphere Documentation (Broadcom)",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 07:03:11"
},
{
"url": "https://docs.zammad.org/",
"description": "Zammad Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 07:09:52"
},
{
"url": "https://learn.microsoft.com/en-us/powershell/",
"description": "PowerShell Documentation",
"category": "Docs",
"tags": [],
"added_at": "2026-01-23 07:09:52"
}
]

View File

@ -1,456 +0,0 @@
{
"ITGCLI": {
"next_id": 4,
"manuals": [
{
"code": "ITGCLI 0001/26",
"id": 1,
"title": "Como Acessar e Configurar Webmail e Celular",
"created_at": "2026-01-23 00:28:20",
"author": "Agente iT Guys"
},
{
"code": "ITGCLI 0002/26",
"id": 2,
"title": "Como Configurar Resposta Automatica de Ferias",
"created_at": "2026-01-23 00:28:23",
"author": "Agente iT Guys"
},
{
"code": "ITGCLI 0003/26",
"id": 3,
"title": "Docker para Desenvolvedores e Ferramentas Portáteis",
"created_at": "2026-01-25 03:15:50",
"author": "João Pedro Toledo Gonçalves"
}
]
},
"ITGSUP": {
"next_id": 15,
"manuals": [
{
"code": "ITGSUP 0001/26",
"id": 1,
"title": "Diagnostico Basico - Usuario nao recebe e-mail",
"created_at": "2026-01-23 00:28:24",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0002/26",
"id": 2,
"title": "Procedimento de Criacao e Bloqueio de Usuarios",
"created_at": "2026-01-23 00:28:25",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0003/26",
"id": 3,
"title": "N1_00_Visao_Geral_e_Escopo",
"created_at": "2026-01-23 00:28:38",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0004/26",
"id": 4,
"title": "N1_01_Verificacao_Basica_VM",
"created_at": "2026-01-23 00:28:39",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0005/26",
"id": 5,
"title": "N1_02_Operacoes_de_Energia",
"created_at": "2026-01-23 00:28:40",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0006/26",
"id": 6,
"title": "N1_03_Monitoramento_Basico",
"created_at": "2026-01-23 00:28:41",
"author": "Agente iT Guys"
},
{
"code": "ITGSUP 0007/26",
"id": 7,
"title": "Instalação e Configuração do Docker e Compose (Linux)",
"created_at": "2026-01-25 03:08:42",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0008/26",
"id": 8,
"title": "Deploy do Portainer CE (Docker Standalone)",
"created_at": "2026-01-25 03:12:14",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0009/26",
"id": 9,
"title": "Gestão de Stacks no Portainer",
"created_at": "2026-01-25 03:12:16",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0010/26",
"id": 10,
"title": "Visão Geral e Escopo VMware",
"created_at": "2026-01-25 03:21:59",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0011/26",
"id": 11,
"title": "Visão Geral Proxmox VE",
"created_at": "2026-01-25 03:22:44",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0012/26",
"id": 12,
"title": "Verificação Básica VM",
"created_at": "2026-01-25 03:24:27",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0013/26",
"id": 13,
"title": "Monitoramento de Saúde de Discos",
"created_at": "2026-01-25 17:50:21",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGSUP 0014/26",
"id": 14,
"title": "Verificação Diária de Jobs de VM",
"created_at": "2026-01-26 20:06:25",
"author": "João Pedro Toledo Gonçalves"
}
]
},
"ITGINF": {
"next_id": 24,
"manuals": [
{
"code": "ITGINF 0001/26",
"id": 1,
"title": "Gerenciamento de Cotas e Arquivamento",
"created_at": "2026-01-23 00:28:26",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0002/26",
"id": 2,
"title": "Gerenciamento de Quarentena Movel (ActiveSync)",
"created_at": "2026-01-23 00:28:27",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0003/26",
"id": 3,
"title": "Gestao de Permissoes (Full Access e Send As)",
"created_at": "2026-01-23 00:28:27",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0004/26",
"id": 4,
"title": "Solucao de Problemas de Lista de Enderecos (OAB)",
"created_at": "2026-01-23 00:28:28",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0005/26",
"id": 5,
"title": "N2_01_Gestao_de_Recursos",
"created_at": "2026-01-23 00:28:42",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0006/26",
"id": 6,
"title": "N2_02_Networking_e_Storage",
"created_at": "2026-01-23 00:28:43",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0007/26",
"id": 7,
"title": "N2_03_Manutencao_e_Lifecycle",
"created_at": "2026-01-23 00:28:44",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0008/26",
"id": 8,
"title": "N2_04_Troubleshooting",
"created_at": "2026-01-23 00:28:45",
"author": "Agente iT Guys"
},
{
"code": "ITGINF 0009/26",
"id": 9,
"title": "Redes e Firewall no Docker",
"created_at": "2026-01-25 03:10:05",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0010/26",
"id": 10,
"title": "Volumes e Persistência de Dados no Docker",
"created_at": "2026-01-25 03:11:09",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0011/26",
"id": 11,
"title": "Healthchecks e Scripts Automatizados no Docker",
"created_at": "2026-01-25 03:13:50",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0012/26",
"id": 12,
"title": "Gestao de Users Groups e ACLs",
"created_at": "2026-01-25 17:45:08",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0013/26",
"id": 13,
"title": "Configuração de Snapshots e Replicacao",
"created_at": "2026-01-25 17:45:12",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0014/26",
"id": 14,
"title": "Instalacao pfSense",
"created_at": "2026-01-25 18:23:51",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0015/26",
"id": 15,
"title": "Customizacao pfSense",
"created_at": "2026-01-25 18:23:52",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0016/26",
"id": 16,
"title": "Usuarios LDAP pfSense",
"created_at": "2026-01-25 18:23:52",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0017/26",
"id": 17,
"title": "Interfaces e VLANs pfSense",
"created_at": "2026-01-25 18:31:51",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0018/26",
"id": 18,
"title": "Firewall e NAT pfSense",
"created_at": "2026-01-25 18:31:51",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0019/26",
"id": 19,
"title": "Servico DNS pfSense",
"created_at": "2026-01-25 18:37:15",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0020/26",
"id": 20,
"title": "Servico DHCP pfSense",
"created_at": "2026-01-25 18:37:15",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0021/26",
"id": 21,
"title": "Servico TFTP pfSense",
"created_at": "2026-01-25 18:37:15",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0022/26",
"id": 22,
"title": "Restauração de Arquivos Guest (Windows/Linux)",
"created_at": "2026-01-26 20:08:05",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGINF 0023/26",
"id": 23,
"title": "Instant VM Recovery (Restauração Rápida)",
"created_at": "2026-01-26 20:09:10",
"author": "João Pedro Toledo Gonçalves"
}
]
},
"ITGENG": {
"next_id": 23,
"manuals": [
{
"code": "ITGENG 0001/26",
"id": 1,
"title": "Acesso ao Servidor Windows Core e PowerShell",
"created_at": "2026-01-23 00:28:29",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0002/26",
"id": 2,
"title": "Arquitetura Tecnica e Mapeamento de Servidores",
"created_at": "2026-01-23 00:28:30",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0003/26",
"id": 3,
"title": "Auditoria Administrativa e Logs de Seguranca",
"created_at": "2026-01-23 00:28:31",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0004/26",
"id": 4,
"title": "Checklist de Manutencao Diaria e Semanal",
"created_at": "2026-01-23 00:28:32",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0005/26",
"id": 5,
"title": "Disaster Recovery e Soft Restore",
"created_at": "2026-01-23 00:28:33",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0006/26",
"id": 6,
"title": "Gestao de Conectores e Roteamento de E-mail",
"created_at": "2026-01-23 00:28:34",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0007/26",
"id": 7,
"title": "Referencia de Operacoes via PowerShell",
"created_at": "2026-01-23 00:28:35",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0008/26",
"id": 8,
"title": "Relatorios Avancados e Manutencao",
"created_at": "2026-01-23 00:28:36",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0009/26",
"id": 9,
"title": "Renovacao de Certificado SSL e Integracao com IIS",
"created_at": "2026-01-23 00:28:37",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0010/26",
"id": 10,
"title": "N3_01_CLI_Troubleshooting",
"created_at": "2026-01-23 00:28:46",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0011/26",
"id": 11,
"title": "N3_02_Networking_Avancado",
"created_at": "2026-01-23 00:28:47",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0012/26",
"id": 12,
"title": "N3_03_Storage_Deep_Dive",
"created_at": "2026-01-23 00:28:48",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0013/26",
"id": 13,
"title": "N3_04_DR_Arquitetura",
"created_at": "2026-01-23 00:28:49",
"author": "Agente iT Guys"
},
{
"code": "ITGENG 0014/26",
"id": 14,
"title": "Docker Swarm: Inicialização e Gerenciamento",
"created_at": "2026-01-25 03:13:48",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0015/26",
"id": 15,
"title": "Kubernetes: Visão Geral e Ferramentas Básicas",
"created_at": "2026-01-25 03:13:49",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0016/26",
"id": 16,
"title": "Arquitetura ZFS e Planejamento",
"created_at": "2026-01-25 17:45:06",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0017/26",
"id": 17,
"title": "Manutencao e Performance ZFS",
"created_at": "2026-01-25 17:45:13",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0018/26",
"id": 18,
"title": "Configuração de iSCSI Target",
"created_at": "2026-01-25 17:50:24",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0019/26",
"id": 19,
"title": "Planejamento Hardware pfSense",
"created_at": "2026-01-25 18:23:51",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0020/26",
"id": 20,
"title": "MultiWAN e Roteamento pfSense",
"created_at": "2026-01-25 18:31:51",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0021/26",
"id": 21,
"title": "Configuração de Repositórios Imutáveis (Hardened Linux)",
"created_at": "2026-01-26 20:10:07",
"author": "João Pedro Toledo Gonçalves"
},
{
"code": "ITGENG 0022/26",
"id": 22,
"title": "Criação de Rotinas de Teste de Restore (SureBackup)",
"created_at": "2026-01-26 20:11:14",
"author": "João Pedro Toledo Gonçalves"
}
]
}
}

View File

@ -1,82 +0,0 @@
import json
import os
import sys
import argparse
from datetime import datetime
# Configuration
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
KB_FILE = os.path.join(BASE_DIR, "knowledge_base.json")
def load_kb():
if not os.path.exists(KB_FILE):
return []
try:
with open(KB_FILE, 'r', encoding='utf-8') as f:
return json.load(f)
except Exception as e:
print(f"Error loading KB: {e}")
return []
def save_kb(data):
try:
with open(KB_FILE, 'w', encoding='utf-8') as f:
json.dump(data, f, indent=2, ensure_ascii=False)
except Exception as e:
print(f"Error saving KB: {e}")
sys.exit(1)
def register_source(url, description, category, tags):
kb = load_kb()
# Check for duplicates
for entry in kb:
if entry.get("url") == url:
print(f"URL already registered: {url}")
return
new_entry = {
"url": url,
"description": description,
"category": category,
"tags": tags,
"added_at": datetime.now().strftime("%Y-%m-%d %H:%M:%S")
}
kb.append(new_entry)
save_kb(kb)
print("SUCCESS: Knowledge Source Registered")
print(json.dumps(new_entry, indent=2, ensure_ascii=False))
def list_sources(filter_text=None):
kb = load_kb()
print(f"Total Sources: {len(kb)}")
for entry in kb:
if filter_text:
search_content = (entry['url'] + entry['description'] + entry['category']).lower()
if filter_text.lower() not in search_content:
continue
print(f"[{entry['category']}] {entry['description']} ({entry['url']})")
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Register knowledge sources for iT Guys.")
subparsers = parser.add_subparsers(dest="command", required=True)
# Add command
add_parser = subparsers.add_parser("add", help="Add a new source")
add_parser.add_argument("--url", required=True, help="URL of the source")
add_parser.add_argument("--description", required=True, help="Short description")
add_parser.add_argument("--category", default="General", help="Category (Docs, Tool, Reference)")
add_parser.add_argument("--tags", nargs="*", default=[], help="Tags provided as space-separated list")
# List command
list_parser = subparsers.add_parser("list", help="List sources")
list_parser.add_argument("filter", nargs="?", help="Optional filter text")
args = parser.parse_args()
if args.command == "add":
register_source(args.url, args.description, args.category, args.tags)
elif args.command == "list":
list_sources(args.filter)

View File

@ -1,68 +0,0 @@
/* iT Guys Standard Documentation Style */
/* Headers */
h1 {
color: #1478cf !important;
font-weight: 700 !important;
margin-bottom: 1.5rem !important;
}
h2 {
color: #1478cf !important;
border-bottom: 2px solid #1478cf;
padding-bottom: 0.5rem;
margin-top: 2rem !important;
}
h3 {
color: #333;
font-weight: 600;
}
/* Dark mode adjustments for headers */
[data-md-color-scheme="slate"] h3 {
color: #e5e5e5;
}
/* Tables - Matching PDF style */
.md-typeset table:not([class]) {
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
overflow: hidden;
font-size: 0.9em;
}
.md-typeset table:not([class]) th {
background-color: #1478cf;
color: white !important;
font-weight: bold;
}
/* Button override */
.md-button {
font-weight: bold;
border-radius: 4px;
}
.md-button--primary {
background-color: #1478cf !important;
color: white !important;
}
/* Fix for the download button appearing inline */
.download-pdf-btn {
display: inline-block;
margin-bottom: 2rem;
text-decoration: none;
}
/* Hiding "Made with Material" text node and link */
.md-copyright {
font-size: 0 !important; /* Hides "Made with" text */
}
.md-copyright__highlight {
font-size: 0.64rem !important; /* Restores size for our copyright */
display: inline-block;
}

View File

@ -1,111 +0,0 @@
import json
import os
import sys
import urllib.request
import urllib.error
import re
# Configuration
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
KB_FILE = os.path.join(BASE_DIR, "knowledge_base.json")
def load_kb():
if not os.path.exists(KB_FILE):
return []
try:
with open(KB_FILE, 'r', encoding='utf-8') as f:
return json.load(f)
except Exception as e:
print(f"Error loading KB: {e}")
return []
def save_kb(data):
try:
with open(KB_FILE, 'w', encoding='utf-8') as f:
json.dump(data, f, indent=2, ensure_ascii=False)
except Exception as e:
print(f"Error saving KB: {e}")
sys.exit(1)
def validate_url(url, description):
print(f"Checking: {url}...", end=" ", flush=True)
try:
# User-Agent is often required to avoid 403 Forbidden from some documentation sites
req = urllib.request.Request(
url,
data=None,
headers={
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}
)
with urllib.request.urlopen(req, timeout=15) as response:
if response.status != 200:
print(f"[FAIL] Status {response.status}")
return False
content = response.read().decode('utf-8', errors='ignore').lower()
# Simple content check: look for significant words from description
# Exclude common stop words
stop_words = {'documentation', 'official', 'manual', 'reference', 'guide', 'wiki', 'site', 'docs', 'for', 'enterprise', 'support', 'user', 'the', 'and', 'of', 'a', 'to', 'in'}
keywords = [w.lower() for w in re.split(r'\W+', description) if w.lower() and w.lower() not in stop_words]
# Special case for abbreviations
if "pfsense" in description.lower(): keywords.append("netgate")
if "truenas" in description.lower(): keywords.append("ixsystems")
if "proxmox" in description.lower(): keywords.append("virtualization")
if not keywords:
# If no keywords remain, just trust the 200 OK
print("[OK] (Status 200)")
return True
found = any(k in content for k in keywords)
if found:
print(f"[OK] Found keywords: {[k for k in keywords if k in content]}")
return True
else:
# Be lenient if status is 200 but keywords not found (failed fuzzy match)
# But user asked: "tem o conteudo esperado?"
# Let's try to find title
title_match = re.search(r'<title>(.*?)</title>', content, re.IGNORECASE | re.DOTALL)
title = title_match.group(1).strip() if title_match else "No Title"
print(f"[WARNING] 200 OK but keywords {keywords} not found. Title: '{title}'")
# We will keep it if it's 200 OK, assuming my keyword matching might be too strict
# Unless title is clearly error
if "404" in title or "Not Found" in title:
return False
return True
except urllib.error.HTTPError as e:
print(f"[FAIL] HTTP Error {e.code}")
return False
except urllib.error.URLError as e:
print(f"[FAIL] Connection Error {e.reason}")
return False
except Exception as e:
print(f"[FAIL] Unexpected Error {e}")
return False
def main():
kb = load_kb()
valid_entries = []
modified = False
print(f"Validating {len(kb)} sources...\n")
for entry in kb:
if validate_url(entry['url'], entry['description']):
valid_entries.append(entry)
else:
print(f" -> REMOVING: {entry['description']} ({entry['url']})")
modified = True
if modified:
save_kb(valid_entries)
print(f"\nUpdate Complete. Removed {len(kb) - len(valid_entries)} invalid sources.")
else:
print("\nAll sources are valid. No changes made.")
if __name__ == "__main__":
main()

View File

@ -1,45 +0,0 @@
FROM python:3.11-slim as builder
# Install system dependencies for WeasyPrint
RUN apt-get update && apt-get install -y \
build-essential \
pkg-config \
libcairo2-dev \
git \
python3-cffi \
python3-brotli \
libpango-1.0-0 \
libpangoft2-1.0-0 \
libharfbuzz-subset0 \
libjpeg-dev \
libopenjp2-7-dev \
libffi-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Configure Git to trust the workspace
RUN git config --global --add safe.directory /app
# Copy source code including .gemini tools
COPY . .
# Run the build script
RUN python .gemini/build_site.py
# --- Runner Stage ---
FROM nginx:alpine
# Copy static site from builder
COPY --from=builder /app/_site_src/site /usr/share/nginx/html
# Copy Nginx config (optional, using default for now)
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1,47 +0,0 @@
site_name: Base de Conhecimento - iT Guys
site_url: https://docs.itguys.com.br
copyright: "© 2026 iT Guys - Todos os direitos reservados"
theme:
name: material
logo: assets/logo.png
favicon: assets/logo.png
language: pt-BR
features:
- navigation.instant
- navigation.tracking
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
hooks:
- .gemini/hooks.py
plugins:
- search
- awesome-pages
- glightbox
- git-revision-date-localized:
type: datetime
fallback_to_build_date: true
enable_creation_date: true
extra_css:
- stylesheets/extra.css

View File

@ -1,799 +0,0 @@
#0 building with "desktop-linux" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 1.09kB done
#1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
#1 DONE 0.0s
#2 [internal] load metadata for docker.io/library/python:3.11-slim
#2 DONE 0.6s
#3 [internal] load metadata for docker.io/library/nginx:alpine
#3 DONE 0.6s
#4 [internal] load .dockerignore
#4 transferring context: 104B done
#4 DONE 0.0s
#5 [internal] load build context
#5 DONE 0.0s
#6 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#6 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
#6 DONE 0.1s
#7 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#7 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
#7 DONE 0.1s
#5 [internal] load build context
#5 transferring context: 32.56MB 1.3s done
#5 DONE 1.4s
#8 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
#8 CACHED
#9 [builder 2/8] RUN apt-get update && apt-get install -y build-essential pkg-config libcairo2-dev git python3-cffi python3-brotli libpango-1.0-0 libpangoft2-1.0-0 libharfbuzz-subset0 libjpeg-dev libopenjp2-7-dev libffi-dev && rm -rf /var/lib/apt/lists/*
#9 CACHED
#10 [builder 3/8] WORKDIR /app
#10 CACHED
#11 [builder 4/8] COPY requirements.txt .
#11 CACHED
#12 [builder 6/8] RUN git config --global --add safe.directory /app
#12 CACHED
#13 [builder 7/8] COPY . .
#13 DONE 0.5s
#14 [builder 8/8] RUN python .gemini/build_site.py
#14 1.022 Found 219 manuals to convert.
#14 1.311 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#14 1.311 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#14 1.617 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#14 1.617 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#14 2.188 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#14 2.188 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#14 2.636 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#14 2.636 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#14 13.53 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 13.53 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 14.40 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 14.40 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 15.31 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 15.31 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 16.03 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 16.03 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 16.14 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 16.14 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 17.58 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 17.58 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 18.77 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#14 18.77 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#14 18.87 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#14 18.87 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#14 19.00 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#14 19.00 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#14 19.10 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#14 19.10 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#14 19.18 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#14 19.18 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#14 19.29 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#14 19.29 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#14 19.31 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#14 19.31 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#14 19.41 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#14 19.41 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#14 19.53 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#14 19.53 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#14 19.55 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#14 19.55 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#14 19.66 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#14 19.66 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#14 19.75 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#14 19.75 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#14 19.86 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#14 19.86 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#14 20.07 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#14 20.07 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#14 21.49 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#14 21.49 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#14 21.65 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#14 21.65 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#14 21.75 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#14 21.75 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#14 21.85 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#14 21.85 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#14 22.05 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#14 22.05 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#14 22.16 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#14 22.16 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#14 22.45 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#14 22.45 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#14 22.84 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#14 22.84 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#14 22.93 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#14 22.93 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#14 23.01 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#14 23.01 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#14 23.23 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#14 23.23 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#14 23.66 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#14 23.66 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#14 23.73 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#14 23.73 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#14 24.36 Processing N2_03_Manutencao_e_Lifecycle.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#14 24.36 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#14 24.36 Ôöé Batch Complete. Ôöé
#14 24.36 Ôöé Success: 219 Ôöé
#14 24.36 Ôöé Errors: 0 Ôöé
#14 24.36 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#14 24.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#14 24.85 INFO - Cleaning site directory
#14 24.85 INFO - Building documentation to directory: /app/_site_src/site
#14 25.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/asterisk_README.md' has no git logs, using current timestamp
#14 25.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/gitea_README.md' has no git logs, using current timestamp
#14 25.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGENG_0022_26_SureBackup_Validation.md' has no git logs, using current timestamp
#14 25.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/zammad_README.md' has no git logs, using current timestamp
#14 25.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGENG_0021_26_Hardened_Repository.md' has no git logs, using current timestamp
#14 25.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGINF_0022_26_Restauracao_Arquivos_Guest.md' has no git logs, using current timestamp
#14 25.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/zabbix_README.md' has no git logs, using current timestamp
#14 25.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md' has no git logs, using current timestamp
#14 25.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/magnusbilling_README.md' has no git logs, using current timestamp
#14 25.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_2_ITGINF_0023_26_Instant_VM_Recovery.md' has no git logs, using current timestamp
#14 25.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_1_ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md' has no git logs, using current timestamp
#14 25.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_2_ITGINF_0022_26_Restauracao_Arquivos_Guest.md' has no git logs, using current timestamp
#14 25.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 25.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_3_ITGENG_0021_26_Hardened_Repository.md' has no git logs, using current timestamp
#14 25.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/technium_README.md' has no git logs, using current timestamp
#14 25.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_3_ITGENG_0022_26_SureBackup_Validation.md' has no git logs, using current timestamp
#14 25.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGINF_0023_26_Instant_VM_Recovery.md' has no git logs, using current timestamp
#14 25.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_1_[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#14 25.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#14 25.12 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#14 25.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_3_[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#14 25.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_1_[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#14 25.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#14 25.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#14 25.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#14 25.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#14 25.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#14 25.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Deploy_Portainer_CE.md' has no git logs, using current timestamp
#14 25.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Docker_Swarm_Basico.md' has no git logs, using current timestamp
#14 25.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Docker_para_Desenvolvedores.md' has no git logs, using current timestamp
#14 25.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Gestao_Stacks_Portainer.md' has no git logs, using current timestamp
#14 25.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_3_[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#14 25.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Instalacao_Docker_Compose_Linux.md' has no git logs, using current timestamp
#14 25.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#14 25.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Healthchecks_Cron_Docker.md' has no git logs, using current timestamp
#14 25.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Introducao_Kubernetes.md' has no git logs, using current timestamp
#14 25.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_0_Docker_para_Desenvolvedores.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Instalacao_Docker_Compose_Linux.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Healthchecks_Cron_Docker.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Gestao_Stacks_Portainer.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_3_Docker_Swarm_Basico.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Deploy_Portainer_CE.md' has no git logs, using current timestamp
#14 25.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 25.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_3_Introducao_Kubernetes.md' has no git logs, using current timestamp
#14 25.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/docker_README.md' has no git logs, using current timestamp
#14 25.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 25.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 25.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/docker-compose_README.md' has no git logs, using current timestamp
#14 25.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/portainer_README.md' has no git logs, using current timestamp
#14 25.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_0_[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#14 25.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_1_[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#14 25.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_1_[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_0_[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#14 25.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#14 25.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#14 25.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#14 25.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#14 25.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#14 25.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#14 25.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 25.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#14 25.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#14 25.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#14 25.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#14 25.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#14 25.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 25.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 25.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Ferramentas/putty_README.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 25.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Ferramentas/ssh_README.md' has no git logs, using current timestamp
#14 25.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_1_[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#14 25.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Navegadores/google_chrome_README.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_01_Hardware_Sizing.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_02_Instalacao.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_03_Customizacao.md' has no git logs, using current timestamp
#14 25.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Navegadores/firefox_README.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_04_Usuarios_LDAP.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_06_MultiWAN_Routing.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_05_Interfaces_VLANs.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_08_DNS.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_09_DHCP.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_07_Firewall_NAT.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_12_Suricata.md' has no git logs, using current timestamp
#14 25.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_10_TFTP.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_11_pfBlockerNG.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_13_VPN_RoadWarrior.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_15_Diagnostico_Shell.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_02_Instalacao.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_04_Usuarios_LDAP.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_05_Interfaces_VLANs.md' has no git logs, using current timestamp
#14 25.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_07_Firewall_NAT.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_14_VPN_SiteToSite.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_08_DNS.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_03_Customizacao.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_13_VPN_RoadWarrior.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_09_DHCP.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_06_MultiWAN_Routing.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_10_TFTP.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_11_pfBlockerNG.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_01_Hardware_Sizing.md' has no git logs, using current timestamp
#14 25.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_12_Suricata.md' has no git logs, using current timestamp
#14 25.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_15_Diagnostico_Shell.md' has no git logs, using current timestamp
#14 25.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_14_VPN_SiteToSite.md' has no git logs, using current timestamp
#14 25.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/pfsense_README.md' has no git logs, using current timestamp
#14 25.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_1_[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#14 25.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_2_[Nível 2] Configuração de Snapshots e Replicacao.md' has no git logs, using current timestamp
#14 25.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#14 25.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#14 25.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_2_[Nível 2] Gestao de Users Groups e ACLs.md' has no git logs, using current timestamp
#14 25.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#14 25.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Configuração de Snapshots e Replicacao.md' has no git logs, using current timestamp
#14 25.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestao de Users Groups e ACLs.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/proxmox_README.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Manutencao e Performance ZFS.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/N1_00_Visao_Geral.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_00_Visao_Geral_e_Escopo.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutencao e Performance ZFS.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_01_Verificacao_Basica_VM.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_02_Operacoes_de_Energia.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_01_Gestao_de_Recursos.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_02_Networking_e_Storage.md' has no git logs, using current timestamp
#14 25.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_04_Troubleshooting.md' has no git logs, using current timestamp
#14 25.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_03_Manutencao_e_Lifecycle.md' has no git logs, using current timestamp
#14 25.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_01_CLI_Troubleshooting.md' has no git logs, using current timestamp
#14 25.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_02_Networking_Avancado.md' has no git logs, using current timestamp
#14 25.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_03_Monitoramento_Basico.md' has no git logs, using current timestamp
#14 25.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_00_Visao_Geral_e_Escopo.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_01_Verificacao_Basica_VM.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_02_Operacoes_de_Energia.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_04_DR_Arquitetura.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_01_Gestao_de_Recursos.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_03_Storage_Deep_Dive.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_02_Networking_e_Storage.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_03_Manutencao_e_Lifecycle.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_03_Monitoramento_Basico.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_04_Troubleshooting.md' has no git logs, using current timestamp
#14 25.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_02_Networking_Avancado.md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_03_Storage_Deep_Dive.md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_04_DR_Arquitetura.md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_01_CLI_Troubleshooting.md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_2_[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#14 25.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_2_[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_1_[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#14 25.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#14 25.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#14 25.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#14 25.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_canais_entrada.md' has no git logs, using current timestamp
#14 25.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_slas_escalations.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_1_man_zammad_ticket_lifecycle.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_groups_roles.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_infrastructure_planning.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_installation_deploy.md' has no git logs, using current timestamp
#14 25.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_api_integrations.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_maintenance_backup.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_installation_deploy.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_groups_roles.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_canais_entrada.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_api_integrations.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_triggers_automation.md' has no git logs, using current timestamp
#14 25.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_infrastructure_planning.md' has no git logs, using current timestamp
#14 25.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_maintenance_backup.md' has no git logs, using current timestamp
#14 25.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_slas_escalations.md' has no git logs, using current timestamp
#14 25.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_triggers_automation.md' has no git logs, using current timestamp
#14 25.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_ticket_lifecycle.md' has no git logs, using current timestamp
#14 25.49 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/asterisk_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/magnusbilling_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/technium_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/gitea_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/zabbix_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Aplicativos/zammad_README.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGINF_0023_26_Instant_VM_Recovery.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md' has no git logs, using current timestamp
#14 25.50 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGINF_0022_26_Restauracao_Arquivos_Guest.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGENG_0021_26_Hardened_Repository.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/ITGENG_0022_26_SureBackup_Validation.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_1_ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_2_ITGINF_0022_26_Restauracao_Arquivos_Guest.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_3_ITGENG_0021_26_Hardened_Repository.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_3_ITGENG_0022_26_SureBackup_Validation.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/Nivel_2_ITGINF_0023_26_Instant_VM_Recovery.md' has no git logs, using current timestamp
#14 25.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_1_[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#14 25.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_1_[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#14 25.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_3_[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#14 25.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_2_[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/Nivel_3_[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Docker_Swarm_Basico.md' has no git logs, using current timestamp
#14 25.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#14 25.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Deploy_Portainer_CE.md' has no git logs, using current timestamp
#14 25.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Docker_para_Desenvolvedores.md' has no git logs, using current timestamp
#14 25.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#14 25.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#14 25.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Healthchecks_Cron_Docker.md' has no git logs, using current timestamp
#14 25.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Gestao_Stacks_Portainer.md' has no git logs, using current timestamp
#14 25.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#14 25.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Instalacao_Docker_Compose_Linux.md' has no git logs, using current timestamp
#14 25.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Introducao_Kubernetes.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_0_Docker_para_Desenvolvedores.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Instalacao_Docker_Compose_Linux.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Healthchecks_Cron_Docker.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Gestao_Stacks_Portainer.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_1_Deploy_Portainer_CE.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_2_Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 25.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_3_Introducao_Kubernetes.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/docker_README.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/portainer_README.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Nivel_3_Docker_Swarm_Basico.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/docker-compose_README.md' has no git logs, using current timestamp
#14 25.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_0_[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_1_[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_0_[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_1_[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#14 25.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#14 25.59 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#14 25.59 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_2_[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#14 25.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Nivel_3_[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 25.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 25.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 25.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#14 25.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#14 25.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#14 25.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#14 25.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#14 25.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#14 25.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#14 25.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#14 25.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 25.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Ferramentas/ssh_README.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Ferramentas/putty_README.md' has no git logs, using current timestamp
#14 25.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_1_[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_2_[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/Nivel_3_[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#14 25.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Navegadores/firefox_README.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Navegadores/google_chrome_README.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#14 25.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_01_Hardware_Sizing.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_04_Usuarios_LDAP.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_05_Interfaces_VLANs.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_02_Instalacao.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_03_Customizacao.md' has no git logs, using current timestamp
#14 25.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_06_MultiWAN_Routing.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_08_DNS.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_09_DHCP.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_07_Firewall_NAT.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_14_VPN_SiteToSite.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_13_VPN_RoadWarrior.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_11_pfBlockerNG.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_02_Instalacao.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_10_TFTP.md' has no git logs, using current timestamp
#14 25.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_15_Diagnostico_Shell.md' has no git logs, using current timestamp
#14 25.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Manual_pfSense_12_Suricata.md' has no git logs, using current timestamp
#14 25.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_04_Usuarios_LDAP.md' has no git logs, using current timestamp
#14 25.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_05_Interfaces_VLANs.md' has no git logs, using current timestamp
#14 25.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_08_DNS.md' has no git logs, using current timestamp
#14 25.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_03_Customizacao.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_07_Firewall_NAT.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_09_DHCP.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_10_TFTP.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_01_Hardware_Sizing.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_2_Manual_pfSense_13_VPN_RoadWarrior.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_14_VPN_SiteToSite.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/pfsense_README.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_15_Diagnostico_Shell.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_11_pfBlockerNG.md' has no git logs, using current timestamp
#14 25.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_12_Suricata.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_1_[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_2_[Nível 2] Configuração de Snapshots e Replicacao.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/Nivel_3_Manual_pfSense_06_MultiWAN_Routing.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_2_[Nível 2] Gestao de Users Groups e ACLs.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#14 25.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#14 25.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#14 25.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/N1_00_Visao_Geral.md' has no git logs, using current timestamp
#14 25.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#14 25.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/Nivel_3_[Nível 3] Manutencao e Performance ZFS.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestao de Users Groups e ACLs.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_00_Visao_Geral_e_Escopo.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutencao e Performance ZFS.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Configuração de Snapshots e Replicacao.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/proxmox_README.md' has no git logs, using current timestamp
#14 25.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_01_Verificacao_Basica_VM.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_02_Operacoes_de_Energia.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_01_Gestao_de_Recursos.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_04_Troubleshooting.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N1_03_Monitoramento_Basico.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_02_Networking_e_Storage.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_01_CLI_Troubleshooting.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N2_03_Manutencao_e_Lifecycle.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_02_Networking_Avancado.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_03_Storage_Deep_Dive.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_01_Verificacao_Basica_VM.md' has no git logs, using current timestamp
#14 25.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_02_Networking_e_Storage.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_02_Operacoes_de_Energia.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_03_Monitoramento_Basico.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_01_Gestao_de_Recursos.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_1_N1_00_Visao_Geral_e_Escopo.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_04_Troubleshooting.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_2_N2_03_Manutencao_e_Lifecycle.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_01_CLI_Troubleshooting.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_03_Storage_Deep_Dive.md' has no git logs, using current timestamp
#14 25.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_04_DR_Arquitetura.md' has no git logs, using current timestamp
#14 25.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/N3_04_DR_Arquitetura.md' has no git logs, using current timestamp
#14 25.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/Nivel_3_N3_02_Networking_Avancado.md' has no git logs, using current timestamp
#14 25.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_2_[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_2_[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_1_[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#14 25.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/Nivel_3_[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_1_man_zammad_ticket_lifecycle.md' has no git logs, using current timestamp
#14 25.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_canais_entrada.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_triggers_automation.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_installation_deploy.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_groups_roles.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_api_integrations.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_maintenance_backup.md' has no git logs, using current timestamp
#14 25.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_api_integrations.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_2_man_zammad_slas_escalations.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/Nivel_3_man_zammad_infrastructure_planning.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_groups_roles.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_installation_deploy.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_slas_escalations.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_canais_entrada.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_infrastructure_planning.md' has no git logs, using current timestamp
#14 25.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_maintenance_backup.md' has no git logs, using current timestamp
#14 25.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_ticket_lifecycle.md' has no git logs, using current timestamp
#14 25.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/man_zammad_triggers_automation.md' has no git logs, using current timestamp
#14 25.87 WARNING:root:First revision timestamp is older than last revision timestamp for page index.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#14 25.87 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#14 25.88 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#14 25.88 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/asterisk_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.88 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/gitea_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.89 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/magnusbilling_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.89 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/technium_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.89 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/zabbix_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.89 WARNING:root:First revision timestamp is older than last revision timestamp for page Aplicativos/zammad_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.89 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/ITGENG_0021_26_Hardened_Repository.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.90 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/ITGENG_0022_26_SureBackup_Validation.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.90 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/ITGINF_0022_26_Restauracao_Arquivos_Guest.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.91 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/ITGINF_0023_26_Instant_VM_Recovery.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.92 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.92 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/Nivel_1_ITGSUP_0014_26_Verificacao_Diaria_de_Jobs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.93 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/Nivel_2_ITGINF_0022_26_Restauracao_Arquivos_Guest.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.94 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/Nivel_2_ITGINF_0023_26_Instant_VM_Recovery.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.95 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/Nivel_3_ITGENG_0021_26_Hardened_Repository.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.95 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/Nivel_3_ITGENG_0022_26_SureBackup_Validation.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.96 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_1_[Nível 1] Diagnóstico de Conectividade e Status.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.97 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_1_[Nível 1] Procedimento de Backup e Restore Manual.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.97 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_2_[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.97 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_2_[Nível 2] Instalação e Configuração Base.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.98 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_2_[Nível 2] Manutenção Preventiva e Logs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.98 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_3_[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.99 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/Nivel_3_[Nível 3] Tuning de Performance e Otimização.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 25.99 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.00 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.00 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.00 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Instalação e Configuração Base.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.01 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.01 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.02 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.02 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Deploy_Portainer_CE.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.03 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Docker_Swarm_Basico.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.03 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Docker_para_Desenvolvedores.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.04 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Gestao_Stacks_Portainer.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.04 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Healthchecks_Cron_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.05 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Instalacao_Docker_Compose_Linux.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.05 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Introducao_Kubernetes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.06 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_0_Docker_para_Desenvolvedores.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.06 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_1_Deploy_Portainer_CE.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.07 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_1_Gestao_Stacks_Portainer.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.08 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_1_Instalacao_Docker_Compose_Linux.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.08 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_2_Healthchecks_Cron_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.09 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_2_Redes_e_Firewall_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.09 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_2_Volumes_e_Persistencia_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.09 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_3_Docker_Swarm_Basico.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.10 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Nivel_3_Introducao_Kubernetes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.10 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Redes_e_Firewall_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.11 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Volumes_e_Persistencia_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.11 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/docker-compose_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.12 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/docker_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.12 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/portainer_README.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.12 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_0_[Nível 0] Como Acessar e Configurar Webmail e Celular.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.12 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_0_[Nível 0] Como Configurar Resposta Automatica de Ferias.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.13 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_1_[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.13 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_1_[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.14 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_2_[Nível 2] Gerenciamento de Cotas e Arquivamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.15 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_2_[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.15 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_2_[Nível 2] Gestao de Permissoes (Full Access e Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.16 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_2_[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.18 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.19 WARNING - Doc file 'Exchange/Nivel_3_[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' contains a link 'assets/sconfig_menu.png', but the target 'Exchange/assets/sconfig_menu.png' is not found among documentation files.
#14 26.19 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.19 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Auditoria Administrativa e Logs de Seguranca.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.20 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Checklist de Manutencao Diaria e Semanal.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.21 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Disaster Recovery e Soft Restore.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.21 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Gestao de Conectores e Roteamento de E-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.22 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Referencia de Operacoes via PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.22 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Relatorios Avancados e Manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.23 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Nivel_3_[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.23 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_exchange_server_official.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.24 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_admin_senior_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.25 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_arquitetura_tecnica.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.26 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_operacoes_manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.26 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_service_desk_troubleshooting.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.27 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_suporte_n1_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.27 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_usuario_webmail_outlook.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.28 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.29 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.29 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.30 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.30 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.31 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.32 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.33 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.33 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.34 WARNING - Doc file 'Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' contains a link 'assets/sconfig_menu.png', but the target 'Exchange/assets/sconfig_menu.png' is not found among documentation files.
#14 26.34 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.34 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.35 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.35 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Disaster Recovery e Soft Restore.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.36 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.36 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.38 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/exchange_server_official.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.38 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/manual_admin_senior_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#14 26.56 WARNING - Doc file 'Rede E Seguranca/Manual_pfSense_11_pfBlockerNG.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.57 WARNING - Doc file 'Rede E Seguranca/Manual_pfSense_12_Suricata.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.57 WARNING - Doc file 'Rede E Seguranca/Manual_pfSense_13_VPN_RoadWarrior.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.63 WARNING - Doc file 'Rede E Seguranca/Nivel_2_Manual_pfSense_13_VPN_RoadWarrior.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.65 WARNING - Doc file 'Rede E Seguranca/Nivel_3_Manual_pfSense_11_pfBlockerNG.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.66 WARNING - Doc file 'Rede E Seguranca/Nivel_3_Manual_pfSense_12_Suricata.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#14 26.68 WARNING - Doc file 'Storage/Nivel_1_[Nível 1] Monitoramento de Saúde de Discos.md' contains a link 'assets/dashboard_alert.png', but the target 'Storage/assets/dashboard_alert.png' is not found among documentation files.
#14 26.68 WARNING - Doc file 'Storage/Nivel_2_[Nível 2] Configuração de Snapshots e Replicacao.md' contains a link 'assets/replication_task.png', but the target 'Storage/assets/replication_task.png' is not found among documentation files.
#14 26.69 WARNING - Doc file 'Storage/Nivel_2_[Nível 2] Gestao de Users Groups e ACLs.md' contains a link 'assets/dataset_acl.png', but the target 'Storage/assets/dataset_acl.png' is not found among documentation files.
#14 26.70 WARNING - Doc file 'Storage/Nivel_3_[Nível 3] Arquitetura ZFS e Planejamento.md' contains a link 'assets/zfs_architecture.png', but the target 'Storage/assets/zfs_architecture.png' is not found among documentation files.
#14 26.71 WARNING - Doc file 'Storage/[Nível 1] Monitoramento de Saúde de Discos.md' contains a link 'assets/dashboard_alert.png', but the target 'Storage/assets/dashboard_alert.png' is not found among documentation files.
#14 26.72 WARNING - Doc file 'Storage/[Nível 2] Configuração de Snapshots e Replicacao.md' contains a link 'assets/replication_task.png', but the target 'Storage/assets/replication_task.png' is not found among documentation files.
#14 26.72 WARNING - Doc file 'Storage/[Nível 2] Gestao de Users Groups e ACLs.md' contains a link 'assets/dataset_acl.png', but the target 'Storage/assets/dataset_acl.png' is not found among documentation files.
#14 26.73 WARNING - Doc file 'Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' contains a link 'assets/zfs_architecture.png', but the target 'Storage/assets/zfs_architecture.png' is not found among documentation files.
#14 26.75 WARNING - Doc file 'Virtualizacao/N1_00_Visao_Geral.md' contains a link 'assets/proxmox_login.png', but the target 'Virtualizacao/assets/proxmox_login.png' is not found among documentation files.
#14 26.76 WARNING - Doc file 'Vmware/N1_00_Visao_Geral_e_Escopo.md' contains a link 'assets/vsphere_login.png', but the target 'Vmware/assets/vsphere_login.png' is not found among documentation files.
#14 26.76 WARNING - Doc file 'Vmware/N1_01_Verificacao_Basica_VM.md' contains a link 'assets/vcenter_summary.png', but the target 'Vmware/assets/vcenter_summary.png' is not found among documentation files.
#14 26.80 WARNING - Doc file 'Vmware/Nivel_1_N1_00_Visao_Geral_e_Escopo.md' contains a link 'assets/vsphere_login.png', but the target 'Vmware/assets/vsphere_login.png' is not found among documentation files.
#14 26.80 WARNING - Doc file 'Vmware/Nivel_1_N1_01_Verificacao_Basica_VM.md' contains a link 'assets/vcenter_summary.png', but the target 'Vmware/assets/vcenter_summary.png' is not found among documentation files.
#14 26.84 WARNING - Doc file 'Windows/Nivel_1_[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' contains a link 'assets/ad_new_user.png', but the target 'Windows/assets/ad_new_user.png' is not found among documentation files.
#14 26.87 WARNING - Doc file 'Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' contains a link 'assets/ad_new_user.png', but the target 'Windows/assets/ad_new_user.png' is not found among documentation files.
#14 26.90 WARNING - Doc file 'Zammad/Nivel_1_man_zammad_ticket_lifecycle.md' contains a link 'assets/zammad_ticket_creation.png', but the target 'Zammad/assets/zammad_ticket_creation.png' is not found among documentation files.
#14 26.90 WARNING - Doc file 'Zammad/Nivel_1_man_zammad_ticket_lifecycle.md' contains a link 'assets/zammad_ticket_merge.png', but the target 'Zammad/assets/zammad_ticket_merge.png' is not found among documentation files.
#14 26.91 WARNING - Doc file 'Zammad/Nivel_2_man_zammad_canais_entrada.md' contains a link 'assets/zammad_telegram_integr.png', but the target 'Zammad/assets/zammad_telegram_integr.png' is not found among documentation files.
#14 26.91 WARNING - Doc file 'Zammad/Nivel_2_man_zammad_groups_roles.md' contains a link 'assets/zammad_create_group.png', but the target 'Zammad/assets/zammad_create_group.png' is not found among documentation files.
#14 26.92 WARNING - Doc file 'Zammad/Nivel_2_man_zammad_installation_deploy.md' contains a link 'assets/zammad_install_docker.png', but the target 'Zammad/assets/zammad_install_docker.png' is not found among documentation files.
#14 26.92 WARNING - Doc file 'Zammad/Nivel_2_man_zammad_slas_escalations.md' contains a link 'assets/zammad_calendar_setup.png', but the target 'Zammad/assets/zammad_calendar_setup.png' is not found among documentation files.
#14 26.93 WARNING - Doc file 'Zammad/Nivel_2_man_zammad_triggers_automation.md' contains a link 'assets/zammad_trigger_setup.png', but the target 'Zammad/assets/zammad_trigger_setup.png' is not found among documentation files.
#14 26.95 WARNING - Doc file 'Zammad/man_zammad_canais_entrada.md' contains a link 'assets/zammad_telegram_integr.png', but the target 'Zammad/assets/zammad_telegram_integr.png' is not found among documentation files.
#14 26.96 WARNING - Doc file 'Zammad/man_zammad_groups_roles.md' contains a link 'assets/zammad_create_group.png', but the target 'Zammad/assets/zammad_create_group.png' is not found among documentation files.
#14 26.97 WARNING - Doc file 'Zammad/man_zammad_installation_deploy.md' contains a link 'assets/zammad_install_docker.png', but the target 'Zammad/assets/zammad_install_docker.png' is not found among documentation files.
#14 26.98 WARNING - Doc file 'Zammad/man_zammad_slas_escalations.md' contains a link 'assets/zammad_calendar_setup.png', but the target 'Zammad/assets/zammad_calendar_setup.png' is not found among documentation files.
#14 26.98 WARNING - Doc file 'Zammad/man_zammad_ticket_lifecycle.md' contains a link 'assets/zammad_ticket_creation.png', but the target 'Zammad/assets/zammad_ticket_creation.png' is not found among documentation files.
#14 26.98 WARNING - Doc file 'Zammad/man_zammad_ticket_lifecycle.md' contains a link 'assets/zammad_ticket_merge.png', but the target 'Zammad/assets/zammad_ticket_merge.png' is not found among documentation files.
#14 26.99 WARNING - Doc file 'Zammad/man_zammad_triggers_automation.md' contains a link 'assets/zammad_trigger_setup.png', but the target 'Zammad/assets/zammad_trigger_setup.png' is not found among documentation files.
#14 29.65 INFO - Documentation built in 4.83 seconds
#14 29.70 Copying manuals to build directory...
#14 29.70 Processing documentacao storage -> Storage
#14 29.70 Processing documentacao dev -> Dev
#14 29.70 Processing documentacao colaboracao -> Colaboracao
#14 29.70 Processing documentacao agendamento -> Agendamento
#14 29.70 Processing documentacao zammad -> Zammad
#14 29.70 Processing documentacao linux -> Linux
#14 29.70 Processing documentacao windows -> Windows
#14 29.70 Processing documentacao certificados -> Certificados
#14 29.70 Processing documentacao rede e seguranca -> Rede E Seguranca
#14 29.70 Processing documentacao terminal -> Terminal
#14 29.70 Processing documentacao bancos de dados -> Bancos De Dados
#14 29.70 Processing documentacao editores -> Editores
#14 29.70 Processing documentacao processos -> Processos
#14 29.70 Processing documentacao virtualizacao -> Virtualizacao
#14 29.70 Processing documentacao navegadores -> Navegadores
#14 29.70 Processing documentacao microsoft -> Microsoft
#14 29.70 Processing documentacao seguranca email -> Seguranca Email
#14 29.70 Processing documentacao vmware -> Vmware
#14 29.70 Processing documentacao hardware -> Hardware
#14 29.70 Processing documentacao ferramentas -> Ferramentas
#14 29.70 Processing documentacao automacao -> Automacao
#14 29.70 Processing documentacao web servers -> Web Servers
#14 29.70 Processing documentacao exchange -> Exchange
#14 29.70 Processing documentacao backup -> Backup
#14 29.70 Processing documentacao powerbi -> Powerbi
#14 29.70 Processing documentacao conteineres -> Conteineres
#14 29.70 Processing documentacao ftp -> Ftp
#14 29.70 Processing documentacao unifi -> Unifi
#14 29.70 Processing documentacao webmin -> Webmin
#14 29.70 Processing documentacao diagnostico rede -> Diagnostico Rede
#14 29.70 Processing documentacao aplicativos -> Aplicativos
#14 29.70 Processing documentacao endpoint -> Endpoint
#14 29.70 Copying root assets from /app/assets to /app/_site_src/docs/assets
#14 29.70 Creating index.md...
#14 29.70 Generating PDFs...
#14 29.70 Building MkDocs site...
#14 29.70 Build Complete! Site is in _site_src/site
#14 DONE 29.8s
#6 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#6 CACHED
#15 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#15 DONE 0.3s
#16 exporting to image
#16 exporting layers
#16 exporting layers 2.3s done
#16 exporting manifest sha256:281ed30bcd39565bbad4c5a04d01c1711a2eb71b89b8ccc79edb3de5eba2b94e 0.0s done
#16 exporting config sha256:33ce3f8234449355982cabbf0970f0aa90a795eda39b180748aaa7351260bc20 0.0s done
#16 exporting attestation manifest sha256:8ba8c41cfeb53dfc6d514644d6d4713cee97f4b9571737b1bf3a4f7cac051b00 0.0s done
#16 exporting manifest list sha256:6a311f82c84ac0968e8afd159515645b160045a82fe308cc80b5cd951c6c082a 0.0s done
#16 naming to docker.io/library/docs-itguys:latest
#16 naming to docker.io/library/docs-itguys:latest done
#16 unpacking to docker.io/library/docs-itguys:latest
#16 unpacking to docker.io/library/docs-itguys:latest 0.6s done
#16 DONE 3.1s
1 warning found (use docker --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/6tvonsvkf3emlrqy3c3rwa12z

View File

@ -1,538 +0,0 @@
#0 building with "desktop-linux" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 1.09kB done
#1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
#1 DONE 0.0s
#2 [auth] library/python:pull token for registry-1.docker.io
#2 DONE 0.0s
#3 [auth] library/nginx:pull token for registry-1.docker.io
#3 DONE 0.0s
#4 [internal] load metadata for docker.io/library/nginx:alpine
#4 ...
#5 [internal] load metadata for docker.io/library/python:3.11-slim
#5 DONE 1.1s
#4 [internal] load metadata for docker.io/library/nginx:alpine
#4 DONE 1.1s
#6 [internal] load .dockerignore
#6 transferring context: 104B done
#6 DONE 0.0s
#7 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#7 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
#7 DONE 0.0s
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#8 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
#8 DONE 0.0s
#9 [internal] load build context
#9 transferring context: 35.34MB 1.4s done
#9 DONE 1.4s
#10 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
#10 CACHED
#11 [builder 2/8] RUN apt-get update && apt-get install -y build-essential pkg-config libcairo2-dev git python3-cffi python3-brotli libpango-1.0-0 libpangoft2-1.0-0 libharfbuzz-subset0 libjpeg-dev libopenjp2-7-dev libffi-dev && rm -rf /var/lib/apt/lists/*
#11 CACHED
#12 [builder 3/8] WORKDIR /app
#12 CACHED
#13 [builder 4/8] COPY requirements.txt .
#13 CACHED
#14 [builder 6/8] RUN git config --global --add safe.directory /app
#14 CACHED
#15 [builder 7/8] COPY . .
#15 DONE 0.7s
#16 [builder 8/8] RUN python .gemini/build_site.py
#16 1.466 Found 132 manuals to convert.
#16 1.843 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#16 1.843 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#16 3.438 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#16 3.438 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#16 10.14 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 10.14 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 12.02 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 12.02 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 12.12 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 12.12 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 13.14 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#16 13.14 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#16 13.22 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#16 13.22 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#16 13.39 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#16 13.39 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#16 13.46 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#16 13.46 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#16 13.61 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#16 13.61 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#16 13.63 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#16 13.63 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#16 13.71 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#16 13.71 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#16 14.77 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#16 14.77 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#16 14.87 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#16 14.87 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#16 15.00 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#16 15.00 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#16 15.09 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#16 15.09 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#16 15.34 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#16 15.34 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#16 15.61 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#16 15.61 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#16 15.97 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#16 15.97 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#16 16.00 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#16 16.00 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#16 16.00 Ôöé Batch Complete. Ôöé
#16 16.00 Ôöé Success: 132 Ôöé
#16 16.00 Ôöé Errors: 0 Ôöé
#16 16.00 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#16 16.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#16 16.70 INFO - Cleaning site directory
#16 16.70 INFO - Building documentation to directory: /app/_site_src/site
#16 16.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 16.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restauração Rápida).md' has no git logs, using current timestamp
#16 16.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp
#16 16.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp
#16 16.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 1] Verificação Diária De Jobs De Vm.md' has no git logs, using current timestamp
#16 16.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp
#16 16.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp
#16 16.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp
#16 16.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#16 16.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#16 16.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#16 16.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo De Usu├írios E Permiss├Áes De Banco.md' has no git logs, using current timestamp
#16 16.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#16 16.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação E Configuração Base De Bancos De Dados.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva E Logs De Banco.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#16 16.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#16 16.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp
#16 16.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md' has no git logs, using current timestamp
#16 16.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gestão De Stacks No Portainer.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicialização E Gerenciamento.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md' has no git logs, using current timestamp
#16 16.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 16.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 16.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 16.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 0] Configura├º├úo De Resposta Autom├ítica De F├®rias (Webmail).md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Criação E Bloqueio De Usuários.md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#16 16.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnóstico De Recebimento.md' has no git logs, using current timestamp
#16 16.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#16 16.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md' has no git logs, using current timestamp
#16 16.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#16 16.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#16 16.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#16 16.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md' has no git logs, using current timestamp
#16 16.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#16 16.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 2] Gest├úo De Permiss├Áes (Full Access E Send As).md' has no git logs, using current timestamp
#16 16.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#16 16.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 16.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#16 16.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 16.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 16.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#16 16.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gerenciamento De Pacotes E Atualiza├º├Áes.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md' has no git logs, using current timestamp
#16 16.98 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#16 16.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp
#16 16.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#16 16.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp
#16 16.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#16 16.99 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customização E Identidade Visual.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instalação E Configuração Inicial.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp
#16 17.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço De Dns (ResolverForwarder).md' has no git logs, using current timestamp
#16 17.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Tftp E Provisionamento.md' has no git logs, using current timestamp
#16 17.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md' has no git logs, using current timestamp
#16 17.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Diagnóstico Avançado, Shell E Recovery.md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#16 17.02 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp
#16 17.03 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replicação.md' has no git logs, using current timestamp
#16 17.03 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#16 17.03 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#16 17.03 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutenção E Performance Zfs.md' has no git logs, using current timestamp
#16 17.03 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestão De Users, Groups E Acls.md' has no git logs, using current timestamp
#16 17.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
#16 17.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[N├¡vel 1] Opera├º├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp
#16 17.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp
#16 17.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gestão De Recursos Computação E Migração.md' has no git logs, using current timestamp
#16 17.04 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp
#16 17.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verificação Básica De Vm.md' has no git logs, using current timestamp
#16 17.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
#16 17.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp
#16 17.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md' has no git logs, using current timestamp
#16 17.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avançado E Conceitos De Nsx.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes De Senha E Configura├º├úo Inicial (Post.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#16 17.06 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp
#16 17.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#16 17.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#16 17.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp
#16 17.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp
#16 17.07 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#16 17.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' has no git logs, using current timestamp
#16 17.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' has no git logs, using current timestamp
#16 17.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp
#16 17.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' has no git logs, using current timestamp
#16 17.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instalação E Deploy Zammad.md' has no git logs, using current timestamp
#16 17.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 3] Api E Integra├º├Áes.md' has no git logs, using current timestamp
#16 17.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp
#16 17.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Manutenção, Backup E Restore.md' has no git logs, using current timestamp
#16 17.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 17.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp
#16 17.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp
#16 17.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 1] Verificação Diária De Jobs De Vm.md' has no git logs, using current timestamp
#16 17.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restauração Rápida).md' has no git logs, using current timestamp
#16 17.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp
#16 17.14 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo De Usu├írios E Permiss├Áes De Banco.md' has no git logs, using current timestamp
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#16 17.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
#16 17.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
#16 17.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação E Configuração Base De Bancos De Dados.md' has no git logs, using current timestamp
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva E Logs De Banco.md' has no git logs, using current timestamp
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
#16 17.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp
#16 17.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md' has no git logs, using current timestamp
#16 17.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
#16 17.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gestão De Stacks No Portainer.md' has no git logs, using current timestamp
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md' has no git logs, using current timestamp
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_exchange_server_official.md' has no git logs, using current timestamp
#16 17.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp
#16 17.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md' has no git logs, using current timestamp
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicialização E Gerenciamento.md' has no git logs, using current timestamp
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md' has no git logs, using current timestamp
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 17.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 17.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 17.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/Z_legado_manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md' has no git logs, using current timestamp
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 0] Configura├º├úo De Resposta Autom├ítica De F├®rias (Webmail).md' has no git logs, using current timestamp
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Criação E Bloqueio De Usuários.md' has no git logs, using current timestamp
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnóstico De Recebimento.md' has no git logs, using current timestamp
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md' has no git logs, using current timestamp
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
#16 17.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 2] Gest├úo De Permiss├Áes (Full Access E Send As).md' has no git logs, using current timestamp
#16 17.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
#16 17.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
#16 17.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md' has no git logs, using current timestamp
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gerenciamento De Pacotes E Atualiza├º├Áes.md' has no git logs, using current timestamp
#16 17.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
#16 17.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp
#16 17.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customização E Identidade Visual.md' has no git logs, using current timestamp
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço De Dns (ResolverForwarder).md' has no git logs, using current timestamp
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instalação E Configuração Inicial.md' has no git logs, using current timestamp
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Diagnóstico Avançado, Shell E Recovery.md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Tftp E Provisionamento.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestão De Users, Groups E Acls.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replicação.md' has no git logs, using current timestamp
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutenção E Performance Zfs.md' has no git logs, using current timestamp
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gestão De Recursos Computação E Migração.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[N├¡vel 1] Opera├º├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verificação Básica De Vm.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avançado E Conceitos De Nsx.md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes De Senha E Configura├º├úo Inicial (Post.md' has no git logs, using current timestamp
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' has no git logs, using current timestamp
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' has no git logs, using current timestamp
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' has no git logs, using current timestamp
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 3] Api E Integra├º├Áes.md' has no git logs, using current timestamp
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instalação E Deploy Zammad.md' has no git logs, using current timestamp
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Manutenção, Backup E Restore.md' has no git logs, using current timestamp
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp
#16 17.50 WARNING:root:First revision timestamp is older than last revision timestamp for page index.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#16 17.51 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#16 17.51 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 1] Verificação Diária De Jobs De Vm.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.52 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 2] Instant Vm Recovery (Restauração Rápida).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.52 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.53 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.54 WARNING:root:First revision timestamp is older than last revision timestamp for page Backup/[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.54 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.55 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.55 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.55 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.56 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[N├¡vel 2] Gest├úo De Usu├írios E Permiss├Áes De Banco.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.56 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.57 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Instalação E Configuração Base De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.57 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Instalação e Configuração Base.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.57 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Manutenção Preventiva E Logs De Banco.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.58 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.58 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.59 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.59 WARNING:root:First revision timestamp is older than last revision timestamp for page Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.60 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Redes_e_Firewall_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.60 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/Volumes_e_Persistencia_Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.61 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.61 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.62 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Gestão De Stacks No Portainer.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.62 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Redes E Firewall No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 3] Docker Swarm Inicialização E Gerenciamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Conteineres/[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_exchange_server_official.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_admin_senior_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.66 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_arquitetura_tecnica.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.67 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_operacoes_manutencao.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.67 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_service_desk_troubleshooting.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_suporte_n1_exchange.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/Z_legado_manual_usuario_webmail_outlook.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.70 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.70 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[N├¡vel 0] Configura├º├úo De Resposta Autom├ítica De F├®rias (Webmail).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.70 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Criação E Bloqueio De Usuários.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Diagnóstico De Recebimento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.73 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[N├¡vel 2] Gest├úo De Permiss├Áes (Full Access E Send As).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.76 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.76 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.77 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md. This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration.
#16 17.77 WARNING - Doc file 'Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' contains a link 'assets/sconfig_menu.png', but the target 'Exchange/assets/sconfig_menu.png' is not found among documentation files.
#16 17.93 WARNING - Doc file 'Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#16 17.95 WARNING - Doc file 'Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#16 17.95 WARNING - Doc file 'Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' contains a link 'assets/placeholder.png', but the target 'Rede E Seguranca/assets/placeholder.png' is not found among documentation files.
#16 17.97 WARNING - Doc file 'Storage/[Nível 1] Monitoramento de Saúde de Discos.md' contains a link 'assets/dashboard_alert.png', but the target 'Storage/assets/dashboard_alert.png' is not found among documentation files.
#16 17.98 WARNING - Doc file 'Storage/[Nível 2] Gestão De Users, Groups E Acls.md' contains a link 'assets/dataset_acl.png', but the target 'Storage/assets/dataset_acl.png' is not found among documentation files.
#16 17.99 WARNING - Doc file 'Storage/[Nível 2] Snapshots E Replicação.md' contains a link 'assets/replication_task.png', but the target 'Storage/assets/replication_task.png' is not found among documentation files.
#16 17.99 WARNING - Doc file 'Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' contains a link 'assets/zfs_architecture.png', but the target 'Storage/assets/zfs_architecture.png' is not found among documentation files.
#16 18.01 WARNING - Doc file 'Virtualizacao/[Nível 1] Visão Geral E Escopo.md' contains a link 'assets/proxmox_login.png', but the target 'Virtualizacao/assets/proxmox_login.png' is not found among documentation files.
#16 18.02 WARNING - Doc file 'Vmware/[Nível 1] Verificação Básica De Vm.md' contains a link 'assets/vcenter_summary.png', but the target 'Vmware/assets/vcenter_summary.png' is not found among documentation files.
#16 18.02 WARNING - Doc file 'Vmware/[Nível 1] Visão Geral E Escopo.md' contains a link 'assets/vsphere_login.png', but the target 'Vmware/assets/vsphere_login.png' is not found among documentation files.
#16 18.05 WARNING - Doc file 'Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' contains a link 'assets/ad_new_user.png', but the target 'Windows/assets/ad_new_user.png' is not found among documentation files.
#16 18.09 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_creation.png', but the target 'Zammad/assets/zammad_ticket_creation.png' is not found among documentation files.
#16 18.09 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_merge.png', but the target 'Zammad/assets/zammad_ticket_merge.png' is not found among documentation files.
#16 18.10 WARNING - Doc file 'Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' contains a link 'assets/zammad_trigger_setup.png', but the target 'Zammad/assets/zammad_trigger_setup.png' is not found among documentation files.
#16 18.11 WARNING - Doc file 'Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' contains a link 'assets/zammad_telegram_integr.png', but the target 'Zammad/assets/zammad_telegram_integr.png' is not found among documentation files.
#16 18.11 WARNING - Doc file 'Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' contains a link 'assets/zammad_create_group.png', but the target 'Zammad/assets/zammad_create_group.png' is not found among documentation files.
#16 18.12 WARNING - Doc file 'Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' contains a link 'assets/zammad_calendar_setup.png', but the target 'Zammad/assets/zammad_calendar_setup.png' is not found among documentation files.
#16 18.13 WARNING - Doc file 'Zammad/[Nível 2] Instalação E Deploy Zammad.md' contains a link 'assets/zammad_install_docker.png', but the target 'Zammad/assets/zammad_install_docker.png' is not found among documentation files.
#16 19.44 INFO - Documentation built in 2.79 seconds
#16 19.50 Copying manuals to build directory...
#16 19.50 Processing documentacao storage -> Storage
#16 19.50 Processing documentacao dev -> Dev
#16 19.50 Processing documentacao colaboracao -> Colaboracao
#16 19.50 Processing documentacao agendamento -> Agendamento
#16 19.50 Processing documentacao zammad -> Zammad
#16 19.50 Processing documentacao linux -> Linux
#16 19.50 Processing documentacao windows -> Windows
#16 19.50 Processing documentacao certificados -> Certificados
#16 19.50 Processing documentacao rede e seguranca -> Rede E Seguranca
#16 19.50 Processing documentacao terminal -> Terminal
#16 19.50 Processing documentacao bancos de dados -> Bancos De Dados
#16 19.50 Processing documentacao editores -> Editores
#16 19.50 Processing documentacao processos -> Processos
#16 19.50 Processing documentacao virtualizacao -> Virtualizacao
#16 19.50 Processing documentacao navegadores -> Navegadores
#16 19.50 Processing documentacao microsoft -> Microsoft
#16 19.50 Processing documentacao seguranca email -> Seguranca Email
#16 19.50 Processing documentacao vmware -> Vmware
#16 19.50 Processing documentacao hardware -> Hardware
#16 19.50 Processing documentacao ferramentas -> Ferramentas
#16 19.50 Processing documentacao automacao -> Automacao
#16 19.50 Processing documentacao web servers -> Web Servers
#16 19.50 Processing documentacao exchange -> Exchange
#16 19.50 Processing documentacao backup -> Backup
#16 19.50 Processing documentacao powerbi -> Powerbi
#16 19.50 Processing documentacao conteineres -> Conteineres
#16 19.50 Processing documentacao ftp -> Ftp
#16 19.50 Processing documentacao unifi -> Unifi
#16 19.50 Processing documentacao webmin -> Webmin
#16 19.50 Processing documentacao diagnostico rede -> Diagnostico Rede
#16 19.50 Processing documentacao aplicativos -> Aplicativos
#16 19.50 Processing documentacao endpoint -> Endpoint
#16 19.50 Copying root assets from /app/assets to /app/_site_src/docs/assets
#16 19.50 Creating index.md...
#16 19.50 Generating PDFs...
#16 19.50 Building MkDocs site...
#16 19.50 Build Complete! Site is in _site_src/site
#16 DONE 19.6s
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#8 CACHED
#17 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#17 DONE 0.2s
#18 exporting to image
#18 exporting layers
#18 exporting layers 2.3s done
#18 exporting manifest sha256:af4c39c81561945da25b74179ecbd01e7060cb1c67227d4dbf107f0877bba6bf 0.0s done
#18 exporting config sha256:6d311d8ae39261f73d4419fae3fc6764cd5ae02579a934059c00c3924939337f 0.0s done
#18 exporting attestation manifest sha256:c4afcec7fc69dd973e06a30cbf15c2ace6ea4a5aec0fa9a2f039b770c7bbf795 0.0s done
#18 exporting manifest list sha256:c41a782c2ce813a39a02882e749399e457039db22168c48e1210d25a3ec11f70 0.0s done
#18 naming to docker.io/library/docs-itguys:latest
#18 naming to docker.io/library/docs-itguys:latest done
#18 unpacking to docker.io/library/docs-itguys:latest
#18 unpacking to docker.io/library/docs-itguys:latest 0.5s done
#18 DONE 2.9s
1 warning found (use docker --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/bqr1dmph3fj1cw7zrimd8zjq2