UI Fix V7: Restore Click-to-Dismiss Overlay + Unlock Body Scroll

This commit is contained in:
João Pedro Toledo Goncalves 2026-02-02 21:44:27 -03:00
parent 17bd0cd8d3
commit 56bd7060a4
7 changed files with 460 additions and 2956 deletions

View File

@ -1,13 +1,12 @@
/* iT Guys Premium Documentation Style v6 (Final Polish) */ /* iT Guys Premium Documentation Style v7 (Final Interaction Fix) */
/* ROOT VARIABLES - iT Guys Official Colors */ /* ROOT VARIABLES - iT Guys Official Colors */
:root { :root {
--md-primary-fg-color: #1478cf; /* iT Guys Blue */ --md-primary-fg-color: #1478cf;
--md-primary-fg-color--light: #4ea5f5; /* Lighter Blue */ --md-primary-fg-color--light: #4ea5f5;
--md-primary-fg-color--dark: #0d5ea6; /* Darker Blue */ --md-primary-fg-color--dark: #0d5ea6;
--md-accent-fg-color: #00f7ff; /* iT Guys Cyan */ --md-accent-fg-color: #00f7ff;
/* Strict Header Height */
--header-height: 48px; --header-height: 48px;
} }
@ -29,7 +28,7 @@
gap: 0 !important; gap: 0 !important;
} }
/* 1. LOGO AREA (Left) */ /* 1. LOGO AREA */
.md-header__title { .md-header__title {
flex-grow: 0; flex-grow: 0;
width: auto; width: auto;
@ -53,7 +52,7 @@
display: none !important; display: none !important;
} }
/* 2. SEARCH BAR (Absolutely Centered & Non-Modal) */ /* 2. SEARCH BAR */
.md-search { .md-search {
display: block !important; display: block !important;
position: absolute !important; position: absolute !important;
@ -64,15 +63,24 @@
margin: 0 !important; margin: 0 !important;
padding: 0 !important; padding: 0 !important;
height: 36px !important; height: 36px !important;
z-index: 20; /* Higher than toggle */ z-index: 20;
} }
/* REMOVE MODAL OVERLAY (Allow clicking page) */ /*
CRITICAL FIX: Restore Overlay functionality but keep it invisible.
This allows "Click Outside" to trigger the close event handled by MkDocs JS.
*/
.md-search__overlay { .md-search__overlay {
opacity: 0 !important; opacity: 0 !important;
pointer-events: none !important; background-color: transparent !important;
width: 0 !important; width: 100% !important;
height: 0 !important; height: 100vh !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
pointer-events: auto !important; /* Must catch clicks */
z-index: 15 !important; /* Below search (20) but above content */
cursor: default !important;
} }
.md-search__inner { .md-search__inner {
@ -84,22 +92,19 @@
box-shadow: none !important; box-shadow: none !important;
} }
/* Active State (When typing) configuration */
.md-search__inner.md-search__inner--active { .md-search__inner.md-search__inner--active {
background-color: #fff !important; background-color: #fff !important;
box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important; box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
} }
/* INPUT & ICON ALIGNMENT FIX */
.md-search__input { .md-search__input {
background: transparent !important; background: transparent !important;
height: 100% !important; height: 100% !important;
padding-left: 40px !important; /* increased padding for icon */ padding-left: 40px !important;
font-size: 0.9rem !important; font-size: 0.9rem !important;
color: #fff !important; /* Default white text */ color: #fff !important;
} }
/* Text color when active (white background) */
.md-search__inner--active .md-search__input { .md-search__inner--active .md-search__input {
color: #333 !important; color: #333 !important;
} }
@ -107,19 +112,18 @@
color: #999 !important; color: #999 !important;
} }
/* FIX ICON ALIGNMENT (Flex centering) */ /* Center Icon */
.md-search__icon { .md-search__icon {
height: 36px !important; /* Match container */ height: 36px !important;
width: 40px !important; width: 40px !important;
top: 0 !important; top: 0 !important;
left: 0 !important; left: 0 !important;
display: flex !important; display: flex !important;
align-items: center !important; align-items: center !important;
justify-content: center !important; justify-content: center !important;
pointer-events: none; /* Let clicks pass to input */ pointer-events: none;
} }
/* Icon Color adjustments */
.md-search__icon[for="__search"] svg { .md-search__icon[for="__search"] svg {
fill: rgba(255,255,255,0.7) !important; fill: rgba(255,255,255,0.7) !important;
} }
@ -127,7 +131,7 @@
fill: #666 !important; fill: #666 !important;
} }
/* 3. TOGGLE / ACTIONS (Right) */ /* 3. TOGGLE / ACTIONS */
.md-header__option { .md-header__option {
margin-left: 0 !important; margin-left: 0 !important;
} }
@ -136,6 +140,11 @@
} }
} }
/* SCROLL UNLOCK - Prevent 'Trapped' feeling */
body[data-md-scrolllock] {
overflow: auto !important; /* Force scroll */
}
/* GENERAL TYPOGRAPHY */ /* GENERAL TYPOGRAPHY */
h1 { h1 {
color: var(--md-primary-fg-color) !important; color: var(--md-primary-fg-color) !important;
@ -155,12 +164,11 @@ h2 {
padding-bottom: 0.5rem; padding-bottom: 0.5rem;
} }
/* Dark Mode Adjustments */ /* Dark Mode */
[data-md-color-scheme="slate"] { [data-md-color-scheme="slate"] {
--md-primary-fg-color: #1478cf; --md-primary-fg-color: #1478cf;
--md-primary-fg-color--dark: #62a3ea; --md-primary-fg-color--dark: #62a3ea;
} }
[data-md-color-scheme="slate"] h1 { [data-md-color-scheme="slate"] h1 {
color: #62a3ea !important; color: #62a3ea !important;
} }

View File

@ -1,578 +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 DONE 1.2s
#5 [internal] load metadata for docker.io/library/python:3.11-slim
#5 DONE 1.2s
#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.1s done
#7 DONE 0.1s
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#8 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.1s done
#8 DONE 0.1s
#9 [internal] load build context
#9 transferring context: 208.84kB 0.2s done
#9 DONE 0.2s
#10 [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/*
#10 CACHED
#11 [builder 3/8] WORKDIR /app
#11 CACHED
#12 [builder 4/8] COPY requirements.txt .
#12 CACHED
#13 [builder 5/8] RUN pip install --no-cache-dir -r 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.4s
#16 [builder 8/8] RUN python .gemini/build_site.py
#16 0.881 Found 132 manuals to convert.
#16 1.271 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#16 1.271 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#16 2.532 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#16 2.532 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#16 9.293 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 9.293 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 11.25 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 11.25 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 11.35 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 11.35 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 12.44 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#16 12.44 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#16 12.52 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#16 12.52 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#16 12.70 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#16 12.70 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#16 12.77 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#16 12.77 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#16 12.93 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#16 12.93 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#16 12.95 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#16 12.95 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#16 13.03 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#16 13.03 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#16 13.99 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#16 13.99 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#16 14.08 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#16 14.08 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#16 14.22 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#16 14.22 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#16 14.31 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#16 14.31 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#16 14.55 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#16 14.55 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#16 14.83 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#16 14.83 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#16 15.22 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#16 15.22 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#16 15.26 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#16 15.26 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#16 15.26 Ôöé Batch Complete. Ôöé
#16 15.26 Ôöé Success: 132 Ôöé
#16 15.26 Ôöé Errors: 0 Ôöé
#16 15.26 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#16 15.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#16 15.67 INFO - Cleaning site directory
#16 15.67 INFO - Building documentation to directory: /app/_site_src/site
#16 15.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 15.78 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 15.78 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 15.78 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 15.78 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 15.78 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 15.79 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 15.79 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 15.79 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 15.79 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 15.79 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 15.79 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 15.80 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 15.80 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 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 15.81 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 15.81 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 15.81 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 15.81 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 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 15.81 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 15.81 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 15.82 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 15.82 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 15.82 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 15.82 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 15.82 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.84 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 15.84 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 15.84 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 15.84 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 15.84 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 15.84 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 15.85 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 15.85 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 15.85 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 15.85 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 15.85 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 15.86 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 15.86 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 15.86 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 15.86 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 15.87 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 15.87 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 15.87 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 15.87 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 15.87 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 15.87 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 15.88 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 15.88 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 15.88 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 15.88 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 15.88 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 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 15.89 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 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 15.89 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 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 15.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 15.90 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 15.90 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 15.90 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 15.90 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 15.90 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 15.91 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 15.91 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 15.92 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 15.92 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 15.92 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 15.92 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 15.92 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 15.92 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 15.93 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 15.93 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 15.93 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 15.93 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 15.93 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 15.93 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 15.93 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 15.94 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 15.94 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.96 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 15.96 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 15.96 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 15.96 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 15.96 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 15.96 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 15.97 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 15.97 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 15.97 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 15.97 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 15.97 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 15.98 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 15.98 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 15.98 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 15.98 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 15.99 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 15.99 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 15.99 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 15.99 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 15.99 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 15.99 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 16.00 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 16.00 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 16.00 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 16.00 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 16.00 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 16.00 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 16.01 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 16.01 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 16.01 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 16.01 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 16.01 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 16.01 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 16.02 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 16.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 16.05 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.05 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.05 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.05 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.05 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.06 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.06 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.06 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.06 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.06 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.06 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.06 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.07 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.07 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.07 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.07 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.07 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.08 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.08 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.08 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.08 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.09 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.09 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.09 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.09 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.09 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.10 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.10 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.10 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.10 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.10 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.10 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.10 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.11 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.11 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.11 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.11 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.11 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.12 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.12 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.12 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.12 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.12 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.13 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.13 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.13 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.13 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.13 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.13 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.13 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.14 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.14 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.14 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.15 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.15 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.15 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.15 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.15 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.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 16.15 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.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 16.16 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.16 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.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 16.16 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.16 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.16 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.17 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.17 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.17 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.18 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.18 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.18 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.18 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.18 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.18 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.19 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.19 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 16.19 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 16.19 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 16.20 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.20 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 16.20 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 16.20 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 16.21 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 16.21 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 16.21 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 16.21 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 16.22 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 16.22 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 16.22 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 16.22 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 16.22 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 16.22 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 16.22 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 16.23 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 16.23 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 16.24 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 16.24 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 16.24 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 16.24 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 16.24 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 16.24 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 16.24 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 16.25 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 16.25 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 16.25 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 16.25 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 16.26 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 16.26 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 16.26 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 16.26 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 16.26 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 16.26 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 16.27 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 16.27 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 16.27 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 16.27 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 16.27 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 16.28 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 16.28 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 16.28 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 16.28 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 16.28 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 16.29 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 16.29 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 16.29 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 16.29 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 16.29 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 16.30 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 16.30 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 16.34 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 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#16 16.34 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#16 16.34 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 16.35 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 16.35 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 16.36 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 16.37 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 16.37 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 16.38 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 16.38 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 16.38 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 16.39 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 16.39 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 16.40 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 16.40 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 16.41 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 16.41 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 16.41 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 16.42 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 16.42 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 16.43 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 16.43 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 16.44 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 16.44 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 16.45 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 16.45 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 16.46 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 16.46 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 16.47 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 16.47 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 16.47 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 16.48 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 16.48 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 16.49 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 16.49 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 16.50 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 16.50 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 16.51 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 16.51 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 16.51 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 16.52 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 16.53 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 16.53 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 16.53 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 16.54 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 16.54 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 16.55 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 16.56 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 16.56 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 16.57 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 16.57 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 16.58 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 16.58 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 16.59 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 16.60 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 16.60 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 16.60 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.
#16 16.61 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.
#16 16.61 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.
#16 16.61 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.
#16 16.62 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.
#16 16.62 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.
#16 16.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[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.
#16 16.63 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/[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.
#16 16.64 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.
#16 16.64 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.
#16 16.64 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/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 16.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/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 16.65 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/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 16.66 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/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 16.66 WARNING:root:First revision timestamp is older than last revision timestamp for page Exchange/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 16.67 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 1] Comandos Essenciais De Diagnóstico E Navegaçã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 16.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 1] Comandos Essenciais de Diagnóstico.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 16.68 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Configuração de Rede e Firewall.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 16.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[N├¡vel 2] Gerenciamento De Pacotes E Atualiza├º├Á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 16.69 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 2] Gerenciamento de Pacotes e Updates.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 16.70 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[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 16.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Análise De Logs (SystemdJournalctl).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 16.71 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Análise de Logs (Journalctl).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 16.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Hardening De Servidor 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 16.72 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Hardening de Servidor.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 16.73 WARNING:root:First revision timestamp is older than last revision timestamp for page Linux/[Nível 3] Scripting e Automação Avançada.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 16.73 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Customização E Identidade Visual.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 16.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Firewall Rules E Nat.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 16.74 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.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 16.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Instalação E Configuração Inicial.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 16.75 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.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 16.76 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Serviço De Dns (ResolverForwarder).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 16.77 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).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 16.77 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Serviço Tftp E Provisionamento.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 16.78 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).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 16.79 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 16.79 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Diagnóstico Avançado, Shell E 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.
#16 16.79 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).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 16.80 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 16.80 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] IdsIps Com Suricata.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 16.81 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 16.81 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Multi.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 16.82 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.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 16.82 WARNING:root:First revision timestamp is older than last revision timestamp for page Rede E Seguranca/[Nível 3] Vpn Site.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 16.83 WARNING:root:First revision timestamp is older than last revision timestamp for page Storage/[Nível 1] Monitoramento de Saúde de Discos.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 16.84 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 16.84 WARNING:root:First revision timestamp is older than last revision timestamp for page Storage/[Nível 2] Gestão De Users, Groups E Acls.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 16.84 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 16.85 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 16.86 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 16.87 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 16.89 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 16.89 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 16.92 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 16.96 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 16.96 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 16.97 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 16.97 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 16.98 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 16.98 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 16.99 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 18.26 INFO - Documentation built in 2.63 seconds
#16 18.31 Copying manuals to build directory...
#16 18.31 Processing documentacao storage -> Storage
#16 18.31 Processing documentacao dev -> Dev
#16 18.31 Processing documentacao colaboracao -> Colaboracao
#16 18.31 Processing documentacao agendamento -> Agendamento
#16 18.31 Processing documentacao zammad -> Zammad
#16 18.31 Processing documentacao linux -> Linux
#16 18.31 Processing documentacao windows -> Windows
#16 18.31 Processing documentacao certificados -> Certificados
#16 18.31 Processing documentacao rede e seguranca -> Rede E Seguranca
#16 18.31 Processing documentacao terminal -> Terminal
#16 18.31 Processing documentacao bancos de dados -> Bancos De Dados
#16 18.31 Processing documentacao editores -> Editores
#16 18.31 Processing documentacao processos -> Processos
#16 18.31 Processing documentacao virtualizacao -> Virtualizacao
#16 18.31 Processing documentacao navegadores -> Navegadores
#16 18.31 Processing documentacao microsoft -> Microsoft
#16 18.31 Processing documentacao seguranca email -> Seguranca Email
#16 18.31 Processing documentacao vmware -> Vmware
#16 18.31 Processing documentacao hardware -> Hardware
#16 18.31 Processing documentacao ferramentas -> Ferramentas
#16 18.31 Processing documentacao automacao -> Automacao
#16 18.31 Processing documentacao web servers -> Web Servers
#16 18.31 Processing documentacao exchange -> Exchange
#16 18.31 Processing documentacao backup -> Backup
#16 18.31 Processing documentacao powerbi -> Powerbi
#16 18.31 Processing documentacao conteineres -> Conteineres
#16 18.31 Processing documentacao ftp -> Ftp
#16 18.31 Processing documentacao unifi -> Unifi
#16 18.31 Processing documentacao webmin -> Webmin
#16 18.31 Processing documentacao diagnostico rede -> Diagnostico Rede
#16 18.31 Processing documentacao aplicativos -> Aplicativos
#16 18.31 Processing documentacao endpoint -> Endpoint
#16 18.31 Copying root assets from /app/assets to /app/_site_src/docs/assets
#16 18.31 Creating index.md...
#16 18.31 Generating PDFs...
#16 18.31 Building MkDocs site...
#16 18.31 Build Complete! Site is in _site_src/site
#16 DONE 18.4s
#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 1.4s done
#18 exporting manifest sha256:81833b7e061cffc4851a7635b32dff1e19c79d2dd8e505dff7e29ef50ffa723b 0.0s done
#18 exporting config sha256:a4429395af89de9f340d15c9f7b1798eb2d321418bed97cc7ea1a618ba3ac310 0.0s done
#18 exporting attestation manifest sha256:2794d254f38a161d723698b05482693eba9c59ccb2571c91e7fd1ed328c20b4c 0.0s done
#18 exporting manifest list sha256:be50523135cea6787f54d472b5b39e5d4a1b0bbd0a741d5f93575ff9b622325c 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.3s done
#18 DONE 1.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/fh3mhmt2d5r9rtjsf65qm2bgp

View File

@ -1,481 +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 ...
#3 [internal] load metadata for docker.io/library/nginx:alpine
#3 DONE 0.6s
#2 [internal] load metadata for docker.io/library/python:3.11-slim
#2 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.1s 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.1s done
#7 DONE 0.1s
#5 [internal] load build context
#5 transferring context: 242.85kB 0.2s done
#5 DONE 0.2s
#8 [builder 4/8] COPY requirements.txt .
#8 CACHED
#9 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
#9 CACHED
#10 [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/*
#10 CACHED
#11 [builder 3/8] WORKDIR /app
#11 CACHED
#12 [builder 6/8] RUN git config --global --add safe.directory /app
#12 CACHED
#13 [builder 7/8] COPY . .
#13 DONE 0.9s
#14 [builder 8/8] RUN python .gemini/build_site.py
#14 0.860 Found 132 manuals to convert.
#14 1.235 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#14 1.235 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#14 2.534 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#14 2.534 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#14 8.832 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 8.832 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 10.72 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 10.72 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 10.82 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 10.82 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 11.80 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#14 11.80 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#14 11.88 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#14 11.88 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#14 12.04 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#14 12.04 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#14 12.11 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#14 12.11 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#14 12.26 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#14 12.26 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#14 12.28 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#14 12.28 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#14 12.36 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#14 12.36 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#14 13.29 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#14 13.29 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#14 13.38 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#14 13.38 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#14 13.51 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#14 13.51 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#14 13.60 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#14 13.60 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#14 13.81 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#14 13.81 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#14 14.06 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#14 14.06 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#14 14.40 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#14 14.40 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#14 14.45 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#14 14.45 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#14 14.45 Ôöé Batch Complete. Ôöé
#14 14.45 Ôöé Success: 132 Ôöé
#14 14.45 Ôöé Errors: 0 Ôöé
#14 14.45 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#14 14.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#14 14.94 INFO - Cleaning site directory
#14 14.94 INFO - Building documentation to directory: /app/_site_src/site
#14 15.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 15.15 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
#14 15.15 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
#14 15.15 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
#14 15.15 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
#14 15.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
#14 15.16 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
#14 15.16 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 15.17 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
#14 15.17 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 15.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
#14 15.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
#14 15.17 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
#14 15.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 15.18 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 15.18 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
#14 15.18 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
#14 15.18 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 15.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 15.19 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 15.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
#14 15.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
#14 15.20 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
#14 15.20 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
#14 15.20 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
#14 15.20 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
#14 15.21 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
#14 15.21 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
#14 15.21 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 15.21 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 15.21 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 15.21 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 15.22 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
#14 15.22 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
#14 15.22 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 15.22 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 15.22 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 15.23 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
#14 15.23 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 15.23 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
#14 15.23 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 15.24 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 15.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 15.24 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
#14 15.24 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
#14 15.25 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 15.25 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
#14 15.25 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 15.25 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 15.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 15.26 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
#14 15.26 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
#14 15.26 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
#14 15.27 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 15.27 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 15.27 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 15.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 15.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 15.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 15.28 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 15.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 15.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 15.28 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 15.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 15.29 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 15.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 15.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 15.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 15.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 15.30 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
#14 15.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 15.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 15.31 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
#14 15.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 15.31 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
#14 15.31 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 15.31 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 15.32 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
#14 15.32 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 15.32 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 15.32 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
#14 15.32 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
#14 15.32 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
#14 15.33 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
#14 15.33 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
#14 15.33 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
#14 15.34 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.35 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
#14 15.36 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
#14 15.36 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
#14 15.36 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 15.36 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 15.37 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
#14 15.37 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 15.37 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
#14 15.37 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
#14 15.38 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
#14 15.38 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
#14 15.38 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
#14 15.39 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
#14 15.39 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
#14 15.39 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
#14 15.39 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
#14 15.39 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
#14 15.39 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
#14 15.40 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
#14 15.40 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 15.40 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
#14 15.40 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 15.40 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
#14 15.41 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 15.41 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
#14 15.41 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 15.41 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 15.42 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
#14 15.42 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 15.42 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 15.42 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
#14 15.43 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
#14 15.43 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
#14 15.43 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
#14 15.43 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
#14 15.43 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
#14 15.43 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
#14 15.44 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
#14 15.47 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 15.48 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
#14 15.49 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
#14 15.49 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
#14 15.49 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
#14 15.49 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
#14 15.50 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 15.50 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
#14 15.50 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
#14 15.50 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 15.50 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
#14 15.51 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 15.51 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
#14 15.51 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
#14 15.52 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 15.52 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 15.52 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
#14 15.52 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 15.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 15.52 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 15.53 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 15.53 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
#14 15.53 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
#14 15.53 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
#14 15.53 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
#14 15.54 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
#14 15.54 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
#14 15.54 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 15.54 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 15.54 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
#14 15.54 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
#14 15.55 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 15.55 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
#14 15.55 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 15.55 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 15.55 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 15.55 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 15.56 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
#14 15.56 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 15.56 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 15.57 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 15.57 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
#14 15.57 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
#14 15.57 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
#14 15.57 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 15.58 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
#14 15.58 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
#14 15.58 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 15.58 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
#14 15.59 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 15.59 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 15.59 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 15.59 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
#14 15.59 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 15.59 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 15.60 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 15.60 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 15.60 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 15.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 15.61 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 15.61 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 15.61 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 15.61 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 15.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 15.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 15.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 15.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 15.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 15.62 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
#14 15.62 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 15.62 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 15.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 15.63 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 15.63 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 15.63 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
#14 15.64 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
#14 15.64 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
#14 15.64 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 15.64 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
#14 15.64 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
#14 15.65 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 15.65 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 15.65 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
#14 15.65 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
#14 15.65 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.67 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
#14 15.67 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
#14 15.67 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
#14 15.67 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
#14 15.67 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
#14 15.67 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 15.67 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
#14 15.68 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
#14 15.68 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 15.69 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
#14 15.69 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 15.69 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
#14 15.69 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
#14 15.69 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
#14 15.69 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
#14 15.70 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
#14 15.70 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
#14 15.70 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
#14 15.71 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
#14 15.71 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
#14 15.71 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
#14 15.71 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
#14 15.71 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
#14 15.71 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
#14 15.72 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
#14 15.72 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 15.73 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 15.73 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
#14 15.73 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 15.73 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 15.73 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 15.73 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 15.74 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
#14 15.74 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
#14 15.74 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
#14 15.75 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
#14 15.75 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
#14 15.75 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 15.75 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
#14 15.75 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
#14 15.75 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
#14 15.76 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
#14 15.76 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
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#14 15.80 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#14 15.81 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#14 15.81 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#14 16.02 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 16.17 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.
#14 16.18 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.
#14 16.19 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.
#14 16.21 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 16.22 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.
#14 16.22 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.
#14 16.23 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 16.25 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.
#14 16.25 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.
#14 16.26 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.
#14 16.29 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 16.32 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.
#14 16.32 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.
#14 16.33 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.
#14 16.33 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.
#14 16.34 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.
#14 16.34 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.
#14 16.35 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.
#14 17.57 INFO - Documentation built in 2.67 seconds
#14 17.62 Copying manuals to build directory...
#14 17.62 Processing documentacao storage -> Storage
#14 17.62 Processing documentacao dev -> Dev
#14 17.62 Processing documentacao colaboracao -> Colaboracao
#14 17.62 Processing documentacao agendamento -> Agendamento
#14 17.62 Processing documentacao zammad -> Zammad
#14 17.62 Processing documentacao linux -> Linux
#14 17.62 Processing documentacao windows -> Windows
#14 17.62 Processing documentacao certificados -> Certificados
#14 17.62 Processing documentacao rede e seguranca -> Rede E Seguranca
#14 17.62 Processing documentacao terminal -> Terminal
#14 17.62 Processing documentacao bancos de dados -> Bancos De Dados
#14 17.62 Processing documentacao editores -> Editores
#14 17.62 Processing documentacao processos -> Processos
#14 17.62 Processing documentacao virtualizacao -> Virtualizacao
#14 17.62 Processing documentacao navegadores -> Navegadores
#14 17.62 Processing documentacao microsoft -> Microsoft
#14 17.62 Processing documentacao seguranca email -> Seguranca Email
#14 17.62 Processing documentacao vmware -> Vmware
#14 17.62 Processing documentacao hardware -> Hardware
#14 17.62 Processing documentacao ferramentas -> Ferramentas
#14 17.62 Processing documentacao automacao -> Automacao
#14 17.62 Processing documentacao web servers -> Web Servers
#14 17.62 Processing documentacao exchange -> Exchange
#14 17.62 Processing documentacao backup -> Backup
#14 17.62 Processing documentacao powerbi -> Powerbi
#14 17.62 Processing documentacao conteineres -> Conteineres
#14 17.62 Processing documentacao ftp -> Ftp
#14 17.62 Processing documentacao unifi -> Unifi
#14 17.62 Processing documentacao webmin -> Webmin
#14 17.62 Processing documentacao diagnostico rede -> Diagnostico Rede
#14 17.62 Processing documentacao aplicativos -> Aplicativos
#14 17.62 Processing documentacao endpoint -> Endpoint
#14 17.62 Copying root assets from /app/assets to /app/_site_src/docs/assets
#14 17.62 Creating index.md...
#14 17.62 Generating PDFs...
#14 17.62 Building MkDocs site...
#14 17.62 Build Complete! Site is in _site_src/site
#14 DONE 18.2s
#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.5s
#16 exporting to image
#16 exporting layers
#16 exporting layers 1.6s done
#16 exporting manifest sha256:48ceb98642aaccd0004e16bf3410cfc4c73433c6665cf1f0a37e7352ac009293 0.0s done
#16 exporting config sha256:1674deefe3f711d3181c91ffc708b3b3af79cee46aae71f7045c6ede7d925105 0.0s done
#16 exporting attestation manifest sha256:1c6e849b921d8c279bd34f3d155a4d178948719e2734daba24b70b9e523c5252 0.1s done
#16 exporting manifest list sha256:d2d9862cff17af7654bdac08afc92dfc5f419581f0b32a04893e4dce58e6f1d1
#16 exporting manifest list sha256:d2d9862cff17af7654bdac08afc92dfc5f419581f0b32a04893e4dce58e6f1d1 0.0s done
#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.3s done
#16 DONE 2.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/954qfz4t39806va1bv8mvn7oy

View File

@ -1,481 +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/nginx:pull token for registry-1.docker.io
#2 DONE 0.0s
#3 [auth] library/python:pull token for registry-1.docker.io
#3 DONE 0.0s
#4 [internal] load metadata for docker.io/library/nginx:alpine
#4 DONE 1.1s
#5 [internal] load metadata for docker.io/library/python:3.11-slim
#5 DONE 1.1s
#6 [internal] load .dockerignore
#6 transferring context: 104B done
#6 DONE 0.0s
#7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
#7 DONE 0.0s
#8 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#8 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
#8 DONE 0.0s
#9 [internal] load build context
#9 transferring context: 249.75kB 0.1s done
#9 DONE 0.1s
#10 [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/*
#10 CACHED
#11 [builder 3/8] WORKDIR /app
#11 CACHED
#12 [builder 4/8] COPY requirements.txt .
#12 CACHED
#13 [builder 5/8] RUN pip install --no-cache-dir -r 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.3s
#16 [builder 8/8] RUN python .gemini/build_site.py
#16 0.862 Found 132 manuals to convert.
#16 1.259 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#16 1.259 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#16 2.526 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#16 2.526 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#16 8.798 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 8.798 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 10.65 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 10.65 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 10.76 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 10.76 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 11.79 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#16 11.79 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#16 11.87 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#16 11.87 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#16 12.05 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#16 12.05 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#16 12.12 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#16 12.12 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#16 12.27 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#16 12.27 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#16 12.29 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#16 12.29 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#16 12.37 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#16 12.37 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#16 13.32 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#16 13.32 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#16 13.42 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#16 13.42 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#16 13.55 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#16 13.55 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#16 13.64 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#16 13.64 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#16 13.85 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#16 13.85 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#16 14.10 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#16 14.10 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#16 14.44 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#16 14.44 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#16 14.50 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#16 14.50 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#16 14.50 Ôöé Batch Complete. Ôöé
#16 14.50 Ôöé Success: 132 Ôöé
#16 14.50 Ôöé Errors: 0 Ôöé
#16 14.50 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#16 14.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#16 14.94 INFO - Cleaning site directory
#16 14.94 INFO - Building documentation to directory: /app/_site_src/site
#16 15.05 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 15.06 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 15.07 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 15.07 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 15.07 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 15.07 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 15.07 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 15.07 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 15.07 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 15.08 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 15.08 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 15.08 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 15.09 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 15.09 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 15.09 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 15.09 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 15.09 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 15.09 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 15.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 15.10 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 15.10 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 15.11 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 15.11 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 15.11 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 15.11 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 15.11 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 15.12 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 15.12 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 15.12 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 15.12 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 15.12 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 15.12 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 15.13 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 15.13 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 15.13 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 15.13 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 15.13 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 15.14 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 15.14 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 15.14 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 15.14 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 15.14 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 15.15 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 15.15 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 15.16 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 15.16 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 15.16 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 15.17 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 15.17 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 15.17 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 15.17 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 15.17 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 15.17 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 15.18 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 15.19 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 15.19 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 15.19 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 15.19 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 15.19 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 15.20 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 15.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 15.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 15.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 15.20 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 15.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 15.20 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 15.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 15.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 15.22 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 15.22 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 15.22 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 15.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 15.23 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 15.23 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 15.23 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 15.23 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 15.23 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 15.24 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 15.24 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 15.24 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 15.24 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 15.24 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 15.25 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 15.25 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 15.25 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 15.25 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 15.26 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 15.26 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 15.26 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 15.26 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 15.27 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 15.27 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 15.27 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 15.27 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 15.28 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 15.28 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 15.29 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 15.29 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 15.29 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 15.29 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 15.29 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 15.29 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 15.30 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 15.30 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 15.30 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 15.30 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 15.31 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 15.31 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 15.31 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 15.31 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 15.32 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 15.32 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 15.32 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 15.33 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 15.33 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 15.33 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 15.33 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 15.34 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 15.34 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 15.34 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 15.35 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 15.35 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 15.35 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 15.35 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 15.35 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 15.36 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 15.36 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 15.36 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 15.36 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 15.37 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 15.37 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 15.37 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 15.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 15.42 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 15.42 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 15.42 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 15.42 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 15.42 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 15.42 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 15.43 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 15.43 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 15.44 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 15.44 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 15.44 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 15.44 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 15.44 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 15.44 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 15.44 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 15.44 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 15.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 15.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 15.45 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 15.45 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 15.46 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 15.46 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 15.46 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 15.46 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 15.47 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 15.47 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 15.47 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 15.47 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 15.47 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 15.48 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 15.48 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 15.48 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 15.48 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 15.48 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 15.48 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 15.49 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 15.49 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 15.49 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 15.49 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 15.50 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 15.50 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 15.50 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 15.50 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 15.51 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 15.51 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 15.51 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 15.51 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 15.51 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 15.51 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 15.51 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 15.52 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 15.52 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 15.53 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 15.53 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 15.53 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 15.53 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 15.53 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 15.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 15.54 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 15.54 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 15.55 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 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 15.55 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 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 15.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 15.56 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 15.57 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 15.57 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 15.57 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 15.57 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 15.58 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 15.58 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 15.58 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 15.58 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 15.58 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 15.59 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 15.59 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 15.60 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 15.60 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 15.60 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 15.60 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 15.61 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 15.61 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 15.61 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 15.62 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 15.62 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 15.62 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 15.62 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 15.63 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 15.63 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 15.63 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 15.63 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 15.64 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 15.64 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 15.64 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 15.64 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 15.65 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 15.65 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 15.65 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 15.66 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 15.66 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 15.66 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 15.66 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 15.66 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 15.66 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 15.67 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 15.67 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 15.67 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 15.68 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 15.68 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 15.69 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 15.69 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 15.69 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 15.69 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 15.69 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 15.69 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 15.69 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 15.70 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 15.71 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 15.71 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 15.71 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 15.71 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 15.71 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 15.71 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 15.71 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 15.72 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 15.72 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 15.72 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 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#16 15.76 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#16 15.77 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#16 15.99 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 16.14 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 16.16 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 16.17 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 16.19 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 16.20 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 16.21 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 16.21 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 16.23 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 16.24 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 16.25 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 16.28 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 16.32 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 16.32 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 16.33 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 16.34 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 16.35 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 16.36 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 16.36 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 17.64 INFO - Documentation built in 2.74 seconds
#16 17.69 Copying manuals to build directory...
#16 17.69 Processing documentacao storage -> Storage
#16 17.69 Processing documentacao dev -> Dev
#16 17.69 Processing documentacao colaboracao -> Colaboracao
#16 17.69 Processing documentacao agendamento -> Agendamento
#16 17.69 Processing documentacao zammad -> Zammad
#16 17.69 Processing documentacao linux -> Linux
#16 17.69 Processing documentacao windows -> Windows
#16 17.69 Processing documentacao certificados -> Certificados
#16 17.69 Processing documentacao rede e seguranca -> Rede E Seguranca
#16 17.69 Processing documentacao terminal -> Terminal
#16 17.69 Processing documentacao bancos de dados -> Bancos De Dados
#16 17.69 Processing documentacao editores -> Editores
#16 17.69 Processing documentacao processos -> Processos
#16 17.69 Processing documentacao virtualizacao -> Virtualizacao
#16 17.69 Processing documentacao navegadores -> Navegadores
#16 17.69 Processing documentacao microsoft -> Microsoft
#16 17.69 Processing documentacao seguranca email -> Seguranca Email
#16 17.69 Processing documentacao vmware -> Vmware
#16 17.69 Processing documentacao hardware -> Hardware
#16 17.69 Processing documentacao ferramentas -> Ferramentas
#16 17.69 Processing documentacao automacao -> Automacao
#16 17.69 Processing documentacao web servers -> Web Servers
#16 17.69 Processing documentacao exchange -> Exchange
#16 17.69 Processing documentacao backup -> Backup
#16 17.69 Processing documentacao powerbi -> Powerbi
#16 17.69 Processing documentacao conteineres -> Conteineres
#16 17.69 Processing documentacao ftp -> Ftp
#16 17.69 Processing documentacao unifi -> Unifi
#16 17.69 Processing documentacao webmin -> Webmin
#16 17.69 Processing documentacao diagnostico rede -> Diagnostico Rede
#16 17.69 Processing documentacao aplicativos -> Aplicativos
#16 17.69 Processing documentacao endpoint -> Endpoint
#16 17.69 Copying root assets from /app/assets to /app/_site_src/docs/assets
#16 17.69 Creating index.md...
#16 17.69 Generating PDFs...
#16 17.69 Building MkDocs site...
#16 17.69 Build Complete! Site is in _site_src/site
#16 DONE 17.8s
#7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 CACHED
#17 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#17 DONE 0.4s
#18 exporting to image
#18 exporting layers
#18 exporting layers 1.6s done
#18 exporting manifest sha256:572bf1c04d9214e83295d4de04156555ad98554cdab336aa31348413e28a339a 0.0s done
#18 exporting config sha256:51c67d9f937ab91f463ccdebb2726543f967aad848789c28bb13277f52f5f40a 0.0s done
#18 exporting attestation manifest sha256:7e4d57c4b4d5e95e9551e71017ae9ec34023af4c1d7730a75324694eb46e838b 0.0s done
#18 exporting manifest list sha256:a77b41dada783f03b5cda8d795ee3aa0aa9a49cec02dd265f93ecc2763e9a14c
#18 exporting manifest list sha256:a77b41dada783f03b5cda8d795ee3aa0aa9a49cec02dd265f93ecc2763e9a14c 0.0s done
#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.4s done
#18 DONE 2.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/fvbzot8olhlyeuqgcmwjikx5a

View File

@ -1,482 +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.1s
#2 [internal] load metadata for docker.io/library/nginx:alpine
#2 ...
#3 [internal] load metadata for docker.io/library/python:3.11-slim
#3 DONE 0.6s
#2 [internal] load metadata for docker.io/library/nginx:alpine
#2 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 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#6 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.1s done
#6 DONE 0.1s
#7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.1s done
#7 DONE 0.1s
#5 [internal] load build context
#5 transferring context: 247.38kB 0.1s done
#5 DONE 0.1s
#8 [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/*
#8 CACHED
#9 [builder 3/8] WORKDIR /app
#9 CACHED
#10 [builder 4/8] COPY requirements.txt .
#10 CACHED
#11 [builder 5/8] RUN pip install --no-cache-dir -r 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 1.1s
#14 [builder 8/8] RUN python .gemini/build_site.py
#14 1.077 Found 132 manuals to convert.
#14 1.438 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#14 1.438 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#14 2.828 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#14 2.828 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#14 9.467 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 9.467 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 11.30 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 11.30 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 11.42 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 11.42 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 12.44 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#14 12.44 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#14 12.52 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#14 12.52 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#14 12.69 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#14 12.69 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#14 12.75 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#14 12.75 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#14 12.91 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#14 12.91 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#14 12.93 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#14 12.93 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#14 13.01 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#14 13.01 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#14 14.21 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#14 14.21 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#14 14.30 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#14 14.30 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#14 14.43 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#14 14.43 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#14 14.53 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#14 14.53 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#14 14.76 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#14 14.76 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#14 15.08 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#14 15.08 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#14 15.43 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#14 15.43 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#14 15.46 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#14 15.47 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#14 15.47 Ôöé Batch Complete. Ôöé
#14 15.47 Ôöé Success: 132 Ôöé
#14 15.47 Ôöé Errors: 0 Ôöé
#14 15.47 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#14 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#14 15.86 INFO - Cleaning site directory
#14 15.86 INFO - Building documentation to directory: /app/_site_src/site
#14 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 15.98 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
#14 15.98 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
#14 15.98 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
#14 15.98 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
#14 15.98 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
#14 15.99 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
#14 15.99 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
#14 15.99 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 15.99 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 15.99 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
#14 15.99 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
#14 16.00 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 16.00 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 16.00 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 16.00 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 16.01 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
#14 16.01 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 16.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 16.01 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
#14 16.01 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 16.02 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
#14 16.02 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
#14 16.02 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
#14 16.03 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
#14 16.03 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
#14 16.03 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
#14 16.03 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 16.03 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
#14 16.03 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 16.03 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 16.03 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 16.03 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 16.04 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 16.04 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
#14 16.04 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 16.05 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
#14 16.05 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 16.05 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 16.05 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
#14 16.05 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
#14 16.06 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
#14 16.06 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 16.06 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
#14 16.06 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 16.06 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 16.07 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 16.07 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
#14 16.07 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
#14 16.08 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
#14 16.08 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 16.08 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 16.08 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
#14 16.08 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 16.09 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 16.09 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 16.09 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 16.09 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 16.10 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 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 16.10 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 16.10 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 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 16.10 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 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 16.11 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 16.11 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
#14 16.12 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 16.12 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
#14 16.13 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 16.13 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 16.13 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
#14 16.13 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 16.13 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
#14 16.14 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 16.14 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 16.14 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
#14 16.15 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 16.15 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
#14 16.15 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
#14 16.16 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
#14 16.16 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
#14 16.16 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
#14 16.16 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
#14 16.16 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
#14 16.17 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
#14 16.17 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
#14 16.17 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
#14 16.17 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
#14 16.17 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
#14 16.17 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
#14 16.18 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
#14 16.18 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
#14 16.19 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
#14 16.19 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 16.19 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 16.19 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
#14 16.19 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 16.19 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
#14 16.19 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
#14 16.20 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
#14 16.20 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
#14 16.20 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
#14 16.20 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
#14 16.21 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
#14 16.21 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
#14 16.22 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
#14 16.22 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
#14 16.22 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
#14 16.22 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
#14 16.22 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
#14 16.22 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 16.22 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 16.23 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
#14 16.23 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 16.24 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 16.24 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 16.24 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 16.24 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 16.24 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
#14 16.24 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
#14 16.24 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
#14 16.25 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
#14 16.25 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
#14 16.25 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
#14 16.25 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
#14 16.25 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
#14 16.26 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
#14 16.26 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
#14 16.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 16.30 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
#14 16.31 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
#14 16.31 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
#14 16.31 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
#14 16.31 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
#14 16.31 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
#14 16.31 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
#14 16.31 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 16.32 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 16.32 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 16.32 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 16.32 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
#14 16.33 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
#14 16.33 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
#14 16.33 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 16.33 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 16.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 16.34 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 16.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 16.34 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
#14 16.34 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
#14 16.34 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
#14 16.35 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
#14 16.35 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
#14 16.35 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
#14 16.36 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 16.36 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
#14 16.36 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
#14 16.36 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 16.36 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
#14 16.37 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 16.37 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 16.37 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 16.37 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
#14 16.37 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 16.38 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 16.38 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
#14 16.38 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 16.39 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
#14 16.39 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 16.39 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
#14 16.39 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 16.39 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
#14 16.39 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 16.40 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
#14 16.40 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
#14 16.40 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 16.41 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 16.41 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 16.41 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 16.41 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 16.41 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
#14 16.41 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 16.42 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 16.42 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
#14 16.43 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 16.43 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 16.43 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 16.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 16.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 16.44 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 16.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 16.44 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 16.44 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 16.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 16.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 16.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 16.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 16.45 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 16.45 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
#14 16.45 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 16.45 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
#14 16.46 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 16.46 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 16.46 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
#14 16.46 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
#14 16.46 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 16.46 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 16.47 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 16.47 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
#14 16.47 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
#14 16.48 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
#14 16.48 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
#14 16.48 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
#14 16.48 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
#14 16.48 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
#14 16.49 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
#14 16.49 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
#14 16.49 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
#14 16.50 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
#14 16.50 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
#14 16.50 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
#14 16.50 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
#14 16.50 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
#14 16.51 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 16.51 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
#14 16.51 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
#14 16.51 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 16.52 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
#14 16.52 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 16.52 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
#14 16.52 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
#14 16.52 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
#14 16.53 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
#14 16.53 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
#14 16.54 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
#14 16.54 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
#14 16.54 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
#14 16.54 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
#14 16.54 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
#14 16.54 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
#14 16.55 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
#14 16.55 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 16.55 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
#14 16.56 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 16.56 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 16.56 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 16.56 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
#14 16.57 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 16.57 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 16.57 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 16.57 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
#14 16.58 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
#14 16.58 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
#14 16.58 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
#14 16.58 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
#14 16.58 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
#14 16.59 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
#14 16.59 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
#14 16.59 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
#14 16.59 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
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#14 16.63 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#14 16.64 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#14 16.86 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 17.01 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.
#14 17.03 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.
#14 17.03 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.
#14 17.06 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 17.06 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.
#14 17.07 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.
#14 17.08 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 17.09 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.
#14 17.10 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.
#14 17.11 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.
#14 17.14 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 17.17 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.
#14 17.17 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.
#14 17.18 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.
#14 17.18 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.
#14 17.19 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.
#14 17.19 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.
#14 17.20 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.
#14 18.39 INFO - Documentation built in 2.57 seconds
#14 18.44 Copying manuals to build directory...
#14 18.44 Processing documentacao storage -> Storage
#14 18.44 Processing documentacao dev -> Dev
#14 18.44 Processing documentacao colaboracao -> Colaboracao
#14 18.44 Processing documentacao agendamento -> Agendamento
#14 18.44 Processing documentacao zammad -> Zammad
#14 18.44 Processing documentacao linux -> Linux
#14 18.44 Processing documentacao windows -> Windows
#14 18.44 Processing documentacao certificados -> Certificados
#14 18.44 Processing documentacao rede e seguranca -> Rede E Seguranca
#14 18.44 Processing documentacao terminal -> Terminal
#14 18.44 Processing documentacao bancos de dados -> Bancos De Dados
#14 18.44 Processing documentacao editores -> Editores
#14 18.44 Processing documentacao processos -> Processos
#14 18.44 Processing documentacao virtualizacao -> Virtualizacao
#14 18.44 Processing documentacao navegadores -> Navegadores
#14 18.44 Processing documentacao microsoft -> Microsoft
#14 18.44 Processing documentacao seguranca email -> Seguranca Email
#14 18.44 Processing documentacao vmware -> Vmware
#14 18.44 Processing documentacao hardware -> Hardware
#14 18.44 Processing documentacao ferramentas -> Ferramentas
#14 18.44 Processing documentacao automacao -> Automacao
#14 18.44 Processing documentacao web servers -> Web Servers
#14 18.44 Processing documentacao exchange -> Exchange
#14 18.44 Processing documentacao backup -> Backup
#14 18.44 Processing documentacao powerbi -> Powerbi
#14 18.44 Processing documentacao conteineres -> Conteineres
#14 18.44 Processing documentacao ftp -> Ftp
#14 18.44 Processing documentacao unifi -> Unifi
#14 18.44 Processing documentacao webmin -> Webmin
#14 18.44 Processing documentacao diagnostico rede -> Diagnostico Rede
#14 18.44 Processing documentacao aplicativos -> Aplicativos
#14 18.44 Processing documentacao endpoint -> Endpoint
#14 18.44 Copying root assets from /app/assets to /app/_site_src/docs/assets
#14 18.44 Creating index.md...
#14 18.44 Generating PDFs...
#14 18.44 Building MkDocs site...
#14 18.44 Build Complete! Site is in _site_src/site
#14 DONE 19.1s
#7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 CACHED
#15 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#15 DONE 0.6s
#16 exporting to image
#16 exporting layers
#16 exporting layers 1.6s done
#16 exporting manifest sha256:3d7e8ff7c09fa6e0e9fc6adf4ca0ef0ea0129d72207136a9d378d644edeb0d8d 0.0s done
#16 exporting config sha256:0885d856ff7a6e21b6fa4c6ad200625882d9a24ca29c0652eb33c53f3acbc21d 0.0s done
#16 exporting attestation manifest sha256:c8ee61cbdcd25dc0fb244df11cdb61117d5703ca51bd0a3185606ddd322718c9 0.0s done
#16 exporting manifest list sha256:1aa4684788fef93ad3c9513075afcd4b349a55740d2b9659d3e5be30cb69750d
#16 exporting manifest list sha256:1aa4684788fef93ad3c9513075afcd4b349a55740d2b9659d3e5be30cb69750d 0.0s done
#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.3s done
#16 DONE 2.2s
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/wsksju5lpa7a5srpp5y4ohbbl

View File

@ -1,475 +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/nginx:alpine
#2 DONE 0.6s
#3 [internal] load metadata for docker.io/library/python:3.11-slim
#3 DONE 0.6s
#4 [internal] load .dockerignore
#4 transferring context: 104B done
#4 DONE 0.0s
#5 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#5 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
#5 DONE 0.0s
#6 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#6 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
#6 DONE 0.0s
#7 [internal] load build context
#7 transferring context: 250.67kB 0.2s done
#7 DONE 0.2s
#8 [builder 4/8] COPY requirements.txt .
#8 CACHED
#9 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
#9 CACHED
#10 [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/*
#10 CACHED
#11 [builder 3/8] WORKDIR /app
#11 CACHED
#12 [builder 6/8] RUN git config --global --add safe.directory /app
#12 CACHED
#13 [builder 7/8] COPY . .
#13 DONE 1.2s
#14 [builder 8/8] RUN python .gemini/build_site.py
#14 0.975 Found 132 manuals to convert.
#14 1.338 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#14 1.338 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#14 2.599 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#14 2.599 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#14 9.294 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 9.294 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 11.16 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 11.16 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 11.26 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#14 11.26 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#14 12.20 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#14 12.20 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#14 12.28 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#14 12.28 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#14 12.44 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#14 12.44 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#14 12.51 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#14 12.51 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#14 12.66 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#14 12.66 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#14 12.68 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#14 12.68 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#14 12.75 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#14 12.75 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#14 13.78 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#14 13.78 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#14 13.88 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#14 13.88 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#14 14.02 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#14 14.02 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#14 14.11 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#14 14.11 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#14 14.33 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#14 14.33 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#14 14.57 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#14 14.57 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#14 14.92 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#14 14.92 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#14 14.96 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#14 14.96 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#14 14.96 Ôöé Batch Complete. Ôöé
#14 14.96 Ôöé Success: 132 Ôöé
#14 14.96 Ôöé Errors: 0 Ôöé
#14 14.96 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#14 15.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#14 15.32 INFO - Cleaning site directory
#14 15.32 INFO - Building documentation to directory: /app/_site_src/site
#14 15.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 15.46 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
#14 15.46 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
#14 15.47 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
#14 15.47 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
#14 15.47 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
#14 15.47 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
#14 15.47 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 15.47 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
#14 15.48 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 15.48 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 15.48 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
#14 15.48 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
#14 15.48 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 15.48 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 15.48 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
#14 15.48 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 15.49 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 15.49 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
#14 15.49 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 15.49 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 15.50 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
#14 15.50 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
#14 15.50 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
#14 15.50 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
#14 15.50 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
#14 15.51 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 15.51 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 15.51 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
#14 15.51 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
#14 15.51 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 15.51 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
#14 15.51 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
#14 15.51 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 15.52 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 15.52 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 15.52 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
#14 15.52 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 15.53 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
#14 15.53 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 15.53 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
#14 15.53 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
#14 15.53 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 15.53 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 15.54 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 15.54 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 15.54 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
#14 15.54 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
#14 15.55 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 15.55 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
#14 15.55 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
#14 15.55 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 15.56 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 15.56 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 15.56 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 15.56 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 15.56 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 15.57 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 15.57 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 15.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 15.57 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 15.57 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 15.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 15.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 15.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 15.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 15.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 15.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 15.58 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 15.59 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
#14 15.59 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 15.59 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
#14 15.59 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 15.59 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 15.60 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 15.60 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 15.60 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
#14 15.61 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 15.61 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
#14 15.61 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
#14 15.61 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
#14 15.61 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 15.61 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
#14 15.62 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
#14 15.62 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
#14 15.62 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
#14 15.62 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
#14 15.62 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
#14 15.62 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
#14 15.63 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
#14 15.63 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
#14 15.63 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
#14 15.64 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
#14 15.64 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
#14 15.64 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 15.64 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
#14 15.64 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 15.64 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
#14 15.65 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
#14 15.65 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 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.66 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
#14 15.67 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
#14 15.67 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
#14 15.67 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
#14 15.68 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
#14 15.68 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
#14 15.68 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
#14 15.68 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
#14 15.69 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 15.69 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
#14 15.70 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 15.70 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 15.70 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 15.70 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 15.70 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 15.70 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
#14 15.71 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 15.71 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
#14 15.71 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
#14 15.71 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
#14 15.72 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
#14 15.72 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
#14 15.72 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
#14 15.72 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
#14 15.72 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
#14 15.73 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
#14 15.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#14 15.78 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
#14 15.79 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
#14 15.79 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
#14 15.79 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
#14 15.79 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
#14 15.79 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
#14 15.80 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 15.82 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 15.82 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
#14 15.82 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 15.83 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 15.83 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
#14 15.83 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
#14 15.83 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
#14 15.84 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 15.84 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 15.84 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 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#14 15.85 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
#14 15.85 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
#14 15.85 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
#14 15.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#14 15.87 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
#14 15.87 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
#14 15.87 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
#14 15.87 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
#14 15.87 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
#14 15.87 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 15.87 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 15.88 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 15.88 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
#14 15.88 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 15.88 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 15.88 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 15.88 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 15.89 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
#14 15.89 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
#14 15.90 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 15.90 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
#14 15.90 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
#14 15.90 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
#14 15.91 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 15.92 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 15.92 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
#14 15.92 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 15.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
#14 15.92 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 15.92 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 15.93 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
#14 15.93 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 15.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
#14 15.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
#14 15.94 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 15.94 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 15.94 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 15.95 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 15.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
#14 15.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
#14 15.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
#14 15.95 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#14 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#14 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#14 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#14 15.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
#14 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#14 15.96 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 15.96 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#14 15.97 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#14 15.97 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 15.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
#14 15.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
#14 15.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
#14 15.98 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
#14 15.99 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 15.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
#14 15.99 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
#14 15.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
#14 16.00 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 16.00 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 16.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
#14 16.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
#14 16.01 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
#14 16.01 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
#14 16.01 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
#14 16.01 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
#14 16.02 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
#14 16.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
#14 16.03 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
#14 16.03 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
#14 16.03 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
#14 16.03 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
#14 16.03 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
#14 16.04 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
#14 16.05 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 16.05 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
#14 16.05 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
#14 16.05 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 16.05 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
#14 16.05 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 16.06 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
#14 16.06 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
#14 16.06 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
#14 16.07 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
#14 16.07 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
#14 16.07 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
#14 16.08 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
#14 16.08 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
#14 16.09 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
#14 16.09 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
#14 16.09 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
#14 16.09 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
#14 16.09 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 16.09 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
#14 16.10 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 16.10 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
#14 16.10 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 16.10 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 16.11 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 16.11 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
#14 16.11 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 16.11 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 16.11 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
#14 16.12 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
#14 16.12 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
#14 16.12 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
#14 16.12 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
#14 16.12 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
#14 16.12 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
#14 16.12 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
#14 16.13 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
#14 16.13 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
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#14 16.17 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#14 16.18 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#14 16.39 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 16.54 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.
#14 16.55 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.
#14 16.56 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.
#14 16.59 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 16.59 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.
#14 16.60 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.
#14 16.61 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 16.62 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.
#14 16.63 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.
#14 16.64 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.
#14 16.66 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 16.70 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.
#14 16.70 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.
#14 16.71 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.
#14 16.71 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.
#14 16.72 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.
#14 16.72 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.
#14 16.73 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.
#14 18.06 INFO - Documentation built in 2.78 seconds
#14 18.11 Copying manuals to build directory...
#14 18.11 Processing documentacao storage -> Storage
#14 18.11 Processing documentacao dev -> Dev
#14 18.11 Processing documentacao colaboracao -> Colaboracao
#14 18.11 Processing documentacao agendamento -> Agendamento
#14 18.11 Processing documentacao zammad -> Zammad
#14 18.11 Processing documentacao linux -> Linux
#14 18.11 Processing documentacao windows -> Windows
#14 18.11 Processing documentacao certificados -> Certificados
#14 18.11 Processing documentacao rede e seguranca -> Rede E Seguranca
#14 18.11 Processing documentacao terminal -> Terminal
#14 18.11 Processing documentacao bancos de dados -> Bancos De Dados
#14 18.11 Processing documentacao editores -> Editores
#14 18.11 Processing documentacao processos -> Processos
#14 18.11 Processing documentacao virtualizacao -> Virtualizacao
#14 18.11 Processing documentacao navegadores -> Navegadores
#14 18.11 Processing documentacao microsoft -> Microsoft
#14 18.11 Processing documentacao seguranca email -> Seguranca Email
#14 18.11 Processing documentacao vmware -> Vmware
#14 18.11 Processing documentacao hardware -> Hardware
#14 18.11 Processing documentacao ferramentas -> Ferramentas
#14 18.11 Processing documentacao automacao -> Automacao
#14 18.11 Processing documentacao web servers -> Web Servers
#14 18.11 Processing documentacao exchange -> Exchange
#14 18.11 Processing documentacao backup -> Backup
#14 18.11 Processing documentacao powerbi -> Powerbi
#14 18.11 Processing documentacao conteineres -> Conteineres
#14 18.11 Processing documentacao ftp -> Ftp
#14 18.11 Processing documentacao unifi -> Unifi
#14 18.11 Processing documentacao webmin -> Webmin
#14 18.11 Processing documentacao diagnostico rede -> Diagnostico Rede
#14 18.11 Processing documentacao aplicativos -> Aplicativos
#14 18.11 Processing documentacao endpoint -> Endpoint
#14 18.11 Copying root assets from /app/assets to /app/_site_src/docs/assets
#14 18.11 Creating index.md...
#14 18.11 Generating PDFs...
#14 18.11 Building MkDocs site...
#14 18.11 Build Complete! Site is in _site_src/site
#14 DONE 18.9s
#5 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#5 CACHED
#15 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#15 DONE 0.5s
#16 exporting to image
#16 exporting layers
#16 exporting layers 1.6s done
#16 exporting manifest sha256:5ba04ac8ddd8afbca68dfb066f6a9251ac84c37ef22499a1cf36b080eb2fbe21 0.0s done
#16 exporting config sha256:6b08ae2ccd5e89b0eb62e60498a1612e5f2861fa6338e07ce563d20c5f7aafa4 0.0s done
#16 exporting attestation manifest sha256:1953c0bb3bd658c299dd0fcdd32b8a2a1350d99e0830471636e2b546bbb22597 0.0s done
#16 exporting manifest list sha256:98f8c02f91d637ae07f13ec9c6dbd526366643c3997b27d980ab5ccd1fdb5ba2 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.3s done
#16 DONE 2.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/tta2cksa9gap279m1uw6j0rad

View File

@ -5,41 +5,34 @@
#1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1) #1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
#1 DONE 0.0s #1 DONE 0.0s
#2 [auth] library/python:pull token for registry-1.docker.io #2 [auth] library/nginx:pull token for registry-1.docker.io
#2 DONE 0.0s #2 DONE 0.0s
#3 [auth] library/nginx:pull token for registry-1.docker.io #3 [auth] library/python:pull token for registry-1.docker.io
#3 DONE 0.0s #3 DONE 0.0s
#4 [internal] load metadata for docker.io/library/python:3.11-slim #4 [internal] load metadata for docker.io/library/nginx:alpine
#4 ...
#5 [internal] load metadata for docker.io/library/nginx:alpine
#5 DONE 1.1s
#4 [internal] load metadata for docker.io/library/python:3.11-slim
#4 DONE 1.1s #4 DONE 1.1s
#5 [internal] load metadata for docker.io/library/python:3.11-slim
#5 DONE 1.2s
#6 [internal] load .dockerignore #6 [internal] load .dockerignore
#6 transferring context: 104B done #6 transferring context: 104B done
#6 DONE 0.0s #6 DONE 0.0s
#7 [internal] load build context #7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#7 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
#7 DONE 0.0s #7 DONE 0.0s
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 #8 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
#8 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.1s done #8 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
#8 DONE 0.1s #8 DONE 0.0s
#9 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 #9 [internal] load build context
#9 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 #9 transferring context: 252.67kB 0.1s done
#9 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.1s done
#9 DONE 0.1s #9 DONE 0.1s
#7 [internal] load build context
#7 transferring context: 246.74kB 0.4s done
#7 DONE 0.4s
#10 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt #10 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
#10 CACHED #10 CACHED
@ -56,433 +49,433 @@
#14 CACHED #14 CACHED
#15 [builder 7/8] COPY . . #15 [builder 7/8] COPY . .
#15 DONE 0.9s #15 DONE 0.4s
#16 [builder 8/8] RUN python .gemini/build_site.py #16 [builder 8/8] RUN python .gemini/build_site.py
#16 0.979 Found 132 manuals to convert. #16 0.846 Found 132 manuals to convert.
#16 1.344 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png #16 1.314 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
#16 1.344 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>' #16 1.314 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
#16 2.578 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png #16 2.649 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
#16 2.578 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>' #16 2.649 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
#16 8.959 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png #16 8.852 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 8.959 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>' #16 8.852 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 10.86 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png #16 10.98 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 10.86 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>' #16 10.98 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 11.04 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png #16 11.13 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
#16 11.04 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>' #16 11.13 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
#16 12.23 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png #16 12.21 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
#16 12.23 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>' #16 12.21 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
#16 12.32 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png #16 12.30 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
#16 12.32 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>' #16 12.30 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
#16 12.49 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png #16 12.45 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
#16 12.49 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>' #16 12.45 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
#16 12.57 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png #16 12.52 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
#16 12.57 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>' #16 12.52 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
#16 12.73 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png #16 12.67 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
#16 12.73 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>' #16 12.67 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
#16 12.75 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png #16 12.69 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
#16 12.75 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>' #16 12.69 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
#16 12.83 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png #16 12.77 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
#16 12.83 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>' #16 12.77 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
#16 13.82 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png #16 13.72 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
#16 13.82 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>' #16 13.72 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
#16 13.93 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png #16 13.80 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
#16 13.93 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>' #16 13.80 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
#16 14.06 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png #16 13.94 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
#16 14.06 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>' #16 13.94 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
#16 14.15 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png #16 14.05 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
#16 14.15 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>' #16 14.05 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
#16 14.38 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png #16 14.47 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
#16 14.38 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>' #16 14.47 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
#16 14.65 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png #16 14.74 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
#16 14.65 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>' #16 14.74 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
#16 15.01 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png #16 15.10 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
#16 15.01 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>' #16 15.10 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
#16 15.04 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100% #16 15.13 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
#16 15.05 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò« #16 15.13 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
#16 15.05 Ôöé Batch Complete. Ôöé #16 15.13 Ôöé Batch Complete. Ôöé
#16 15.05 Ôöé Success: 132 Ôöé #16 15.13 Ôöé Success: 132 Ôöé
#16 15.05 Ôöé Errors: 0 Ôöé #16 15.13 Ôöé Errors: 0 Ôöé
#16 15.05 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò» #16 15.13 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
#16 15.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp #16 15.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
#16 15.42 INFO - Cleaning site directory #16 15.62 INFO - Cleaning site directory
#16 15.42 INFO - Building documentation to directory: /app/_site_src/site #16 15.62 INFO - Building documentation to directory: /app/_site_src/site
#16 15.51 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp #16 15.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 15.52 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 15.77 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 15.52 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 15.77 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 15.52 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 15.77 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 15.52 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 15.77 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 15.52 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 15.77 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 15.53 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 15.77 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 15.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 #16 15.77 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 15.53 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 15.78 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 15.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 De Banco.md' has no git logs, using current timestamp #16 15.79 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 15.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 #16 15.79 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 15.54 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 15.79 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 15.54 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 15.79 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 15.54 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 15.80 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 15.54 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 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 15.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp #16 15.80 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 15.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 #16 15.80 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 15.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp #16 15.81 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 15.55 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 15.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 15.55 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 15.81 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 15.55 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 15.81 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 15.55 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 15.82 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 15.55 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 15.83 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 15.56 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 15.83 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 15.56 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 15.83 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 15.56 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 15.83 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 15.57 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 15.83 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 15.57 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 15.84 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 15.57 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 15.84 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 15.57 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 15.84 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 15.57 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 15.84 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 15.57 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 15.84 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 15.57 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 15.84 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 15.57 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 15.84 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 15.58 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 15.84 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 15.58 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 15.85 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 15.59 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 15.85 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 15.59 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 15.86 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 15.59 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 15.86 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 15.59 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 15.86 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 15.59 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 15.86 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 15.59 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 15.86 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 15.60 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 15.87 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 15.60 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 15.87 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 15.61 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 15.87 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 15.61 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 15.88 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 15.61 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 15.88 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 15.61 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 15.88 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 15.61 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 15.89 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 15.61 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 15.89 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 15.61 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 15.89 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 15.61 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 15.89 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 15.62 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 15.89 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 15.62 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 15.90 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 15.62 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 15.90 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 15.62 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 15.90 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 15.62 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 15.90 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 15.63 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 15.91 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 15.63 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 15.91 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 15.63 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 15.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 15.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp #16 15.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 15.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp #16 15.91 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 15.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp #16 15.91 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 15.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp #16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 15.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp #16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 15.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 #16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 15.64 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 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 15.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp #16 15.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 15.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp #16 15.92 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 15.65 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 15.93 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 15.65 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 15.93 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 15.65 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 15.93 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 15.65 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 15.93 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 15.65 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 15.94 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 15.65 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 15.94 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 15.65 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 15.94 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 15.66 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 15.94 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 15.66 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 15.95 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 15.66 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 15.95 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 15.67 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 15.95 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 15.67 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 15.95 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 15.67 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 15.95 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 15.68 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 15.96 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 15.68 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 15.96 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 15.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 #16 15.97 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 15.68 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 15.68 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 15.68 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 15.69 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 15.69 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 15.69 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 15.69 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 15.70 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 15.70 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 15.70 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 15.70 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 15.71 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 15.71 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 15.71 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 15.71 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 15.71 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 15.72 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 15.72 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 15.72 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 15.72 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 15.73 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 15.73 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 15.73 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 15.73 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 15.73 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 15.74 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 15.74 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 15.74 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 15.74 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 15.74 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 15.75 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 15.75 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 15.75 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 15.75 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 15.75 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 15.75 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 15.76 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 15.76 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 15.76 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 15.76 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 15.77 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 15.77 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 15.77 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 15.77 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 15.77 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 15.78 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 15.78 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 15.80 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 15.81 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 15.81 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 15.81 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 15.81 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 15.82 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 15.82 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 15.82 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 15.82 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.83 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 15.84 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 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
#16 15.84 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 15.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
#16 15.85 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 15.85 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 15.85 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 15.86 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 15.86 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 15.86 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 15.86 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 15.87 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 15.87 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 15.87 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 15.87 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 15.87 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 15.87 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 15.87 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 15.88 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 15.88 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 15.88 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 15.88 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 15.88 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 15.88 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 15.89 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 15.89 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 15.89 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 15.89 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 15.90 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 15.90 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 15.90 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 15.90 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 15.90 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 15.91 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 15.91 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 15.91 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 15.91 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 15.92 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 15.92 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 15.92 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 15.93 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 15.93 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 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 15.93 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 15.93 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 15.93 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 15.94 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 15.94 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 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 15.94 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.95 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 15.97 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 15.97 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 15.97 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 15.97 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 15.97 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 15.97 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 15.97 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 15.97 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 15.98 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 15.97 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 15.98 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 15.97 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 15.97 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 15.97 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 15.98 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 15.98 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 15.99 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 15.98 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 15.99 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 15.98 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 15.99 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 15.98 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 15.99 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 15.99 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 16.00 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 15.99 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 16.00 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 15.99 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 16.00 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 16.00 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 16.01 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 16.00 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 16.01 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 16.00 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 16.01 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 16.00 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 16.01 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 16.00 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 16.01 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 16.00 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 16.02 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 16.01 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 16.02 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 16.01 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 16.02 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 16.01 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 16.02 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 16.01 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 16.02 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 16.02 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 16.03 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 16.02 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 16.03 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 16.02 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 16.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 16.02 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 16.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 16.03 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 16.04 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 16.03 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 16.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 16.03 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 16.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 16.03 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 16.05 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 16.03 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 16.05 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 16.04 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 16.05 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 16.04 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 16.05 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 16.04 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 16.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 16.04 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 16.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 16.05 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 16.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 16.05 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 16.07 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 16.05 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 16.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 16.05 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 16.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 16.06 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 16.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 16.06 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 16.08 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 16.06 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 16.08 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 16.06 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 16.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 16.06 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 16.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 16.07 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 16.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 16.07 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 16.08 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 16.07 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 16.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 16.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
#16 16.09 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 16.11 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.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 16.11 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.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 16.11 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is. #16 16.11 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is. #16 16.11 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is. #16 16.11 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is. #16 16.11 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is. #16 16.12 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is. #16 16.13 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is. #16 16.14 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.13 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is. #16 16.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
#16 16.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is. #16 16.15 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is. #16 16.15 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is. #16 16.15 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is. #16 16.15 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is. #16 16.15 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is. #16 16.16 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is. #16 16.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
#16 16.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is. #16 16.16 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is. #16 16.16 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is. #16 16.17 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.14 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is. #16 16.18 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.36 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 16.18 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.53 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 16.19 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.54 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 16.19 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.55 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 16.19 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.57 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 16.19 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.58 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 16.19 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.58 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 16.20 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.59 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 16.20 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.61 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 16.20 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.62 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 16.20 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.62 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 16.21 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.65 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 16.21 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.69 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 16.21 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.69 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 16.21 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.70 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 16.21 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.70 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 16.21 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.71 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 16.22 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.72 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 16.22 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.72 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 16.23 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 18.02 INFO - Documentation built in 2.64 seconds #16 16.23 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 18.09 Copying manuals to build directory... #16 16.23 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 18.09 Processing documentacao storage -> Storage #16 16.23 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 18.09 Processing documentacao dev -> Dev #16 16.23 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 18.09 Processing documentacao colaboracao -> Colaboracao #16 16.23 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 18.09 Processing documentacao agendamento -> Agendamento #16 16.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/exchange_server_official.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao zammad -> Zammad #16 16.23 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 18.09 Processing documentacao linux -> Linux #16 16.24 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 18.09 Processing documentacao windows -> Windows #16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_arquitetura_tecnica.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao certificados -> Certificados #16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_admin_senior_exchange.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao rede e seguranca -> Rede E Seguranca #16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_operacoes_manutencao.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao terminal -> Terminal #16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_suporte_n1_exchange.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao bancos de dados -> Bancos De Dados #16 16.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_service_desk_troubleshooting.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao editores -> Editores #16 16.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/manual_usuario_webmail_outlook.md' has no git logs, using current timestamp
#16 18.09 Processing documentacao processos -> Processos #16 16.25 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 18.09 Processing documentacao virtualizacao -> Virtualizacao #16 16.25 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 18.09 Processing documentacao navegadores -> Navegadores #16 16.25 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 18.09 Processing documentacao microsoft -> Microsoft #16 16.26 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 18.09 Processing documentacao seguranca email -> Seguranca Email #16 16.26 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 18.09 Processing documentacao vmware -> Vmware #16 16.26 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 18.09 Processing documentacao hardware -> Hardware #16 16.26 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 18.09 Processing documentacao ferramentas -> Ferramentas #16 16.27 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 18.09 Processing documentacao automacao -> Automacao #16 16.27 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 18.09 Processing documentacao web servers -> Web Servers #16 16.27 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 18.09 Processing documentacao exchange -> Exchange #16 16.27 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 18.09 Processing documentacao backup -> Backup #16 16.27 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 18.09 Processing documentacao powerbi -> Powerbi #16 16.27 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 18.09 Processing documentacao conteineres -> Conteineres #16 16.28 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 18.09 Processing documentacao ftp -> Ftp #16 16.29 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 18.09 Processing documentacao unifi -> Unifi #16 16.29 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 18.09 Processing documentacao webmin -> Webmin #16 16.29 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 18.09 Processing documentacao diagnostico rede -> Diagnostico Rede #16 16.29 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 18.09 Processing documentacao aplicativos -> Aplicativos #16 16.29 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 18.09 Processing documentacao endpoint -> Endpoint #16 16.30 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 18.09 Copying root assets from /app/assets to /app/_site_src/docs/assets #16 16.30 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 18.09 Creating index.md... #16 16.31 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 18.09 Generating PDFs... #16 16.31 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 18.09 Building MkDocs site... #16 16.31 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 18.09 Build Complete! Site is in _site_src/site #16 16.31 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 DONE 18.7s #16 16.31 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 16.31 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 16.31 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 16.31 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 16.32 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 16.32 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 16.32 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 16.33 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 16.33 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 16.33 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 16.33 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 16.33 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 16.34 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 16.34 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 16.34 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 16.35 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 16.35 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 16.35 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 16.35 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 16.35 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 16.35 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 16.35 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 16.36 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 16.36 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 16.36 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 16.36 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 16.37 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 16.37 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 16.37 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 16.37 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 16.38 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 16.38 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 16.38 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 16.38 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 16.38 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 16.38 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 16.38 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 16.38 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 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Agendamento/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Aplicativos/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Automacao/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Bancos De Dados/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Certificados/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Colaboracao/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Dev/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Diagnostico Rede/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Editores/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Endpoint/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Ferramentas/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Ftp/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Hardware/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Microsoft/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Navegadores/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Powerbi/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Processos/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede E Seguranca/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Seguranca Email/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Storage/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Terminal/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Unifi/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Virtualizacao/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Web Servers/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Webmin/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/', it was left as is.
#16 16.43 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/', it was left as is.
#16 16.65 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 16.80 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 16.81 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 16.82 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 16.84 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 16.85 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 16.85 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 16.86 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 16.87 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 16.88 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 16.89 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 16.91 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 16.96 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 16.96 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 16.96 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 16.97 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 16.98 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 16.98 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 16.99 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 18.23 INFO - Documentation built in 2.65 seconds
#16 18.29 Copying manuals to build directory...
#16 18.29 Processing documentacao storage -> Storage
#16 18.29 Processing documentacao dev -> Dev
#16 18.29 Processing documentacao colaboracao -> Colaboracao
#16 18.29 Processing documentacao agendamento -> Agendamento
#16 18.29 Processing documentacao zammad -> Zammad
#16 18.29 Processing documentacao linux -> Linux
#16 18.29 Processing documentacao windows -> Windows
#16 18.29 Processing documentacao certificados -> Certificados
#16 18.29 Processing documentacao rede e seguranca -> Rede E Seguranca
#16 18.29 Processing documentacao terminal -> Terminal
#16 18.29 Processing documentacao bancos de dados -> Bancos De Dados
#16 18.29 Processing documentacao editores -> Editores
#16 18.29 Processing documentacao processos -> Processos
#16 18.29 Processing documentacao virtualizacao -> Virtualizacao
#16 18.29 Processing documentacao navegadores -> Navegadores
#16 18.29 Processing documentacao microsoft -> Microsoft
#16 18.29 Processing documentacao seguranca email -> Seguranca Email
#16 18.29 Processing documentacao vmware -> Vmware
#16 18.29 Processing documentacao hardware -> Hardware
#16 18.29 Processing documentacao ferramentas -> Ferramentas
#16 18.29 Processing documentacao automacao -> Automacao
#16 18.29 Processing documentacao web servers -> Web Servers
#16 18.29 Processing documentacao exchange -> Exchange
#16 18.29 Processing documentacao backup -> Backup
#16 18.29 Processing documentacao powerbi -> Powerbi
#16 18.29 Processing documentacao conteineres -> Conteineres
#16 18.29 Processing documentacao ftp -> Ftp
#16 18.29 Processing documentacao unifi -> Unifi
#16 18.29 Processing documentacao webmin -> Webmin
#16 18.29 Processing documentacao diagnostico rede -> Diagnostico Rede
#16 18.29 Processing documentacao aplicativos -> Aplicativos
#16 18.29 Processing documentacao endpoint -> Endpoint
#16 18.29 Copying root assets from /app/assets to /app/_site_src/docs/assets
#16 18.29 Creating index.md...
#16 18.29 Generating PDFs...
#16 18.29 Building MkDocs site...
#16 18.29 Build Complete! Site is in _site_src/site
#16 DONE 18.4s
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 #7 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
#8 CACHED #7 CACHED
#17 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html #17 [stage-1 2/2] COPY --from=builder /app/_site_src/site /usr/share/nginx/html
#17 DONE 0.5s #17 DONE 0.2s
#18 exporting to image #18 exporting to image
#18 exporting layers #18 exporting layers
#18 exporting layers 1.9s done #18 exporting layers 1.4s done
#18 exporting manifest sha256:a1788ca5be751ea7b83768f66df2fd8a381e440a403b26b617a5c510142ab7f1 0.0s done #18 exporting manifest sha256:f8e6813aaceaf6656d2c1e6b0c0ce430014d686c693a4bc47c503aa40e3d5d22 0.0s done
#18 exporting config sha256:37708c8199b79f288e18528b0a8b7c513b3d9f3e0b60c139baf4150e883ecd44 0.1s done #18 exporting config sha256:469597338bf3e70354a916e8eefa5059ef969f9933ef81d707db1ee99d268dc2 0.0s done
#18 exporting attestation manifest sha256:94e6f93a612a5d3bbf1bbe2c058c515b3ec546c635514ae0cb6a6ff303da63a4 0.0s done #18 exporting attestation manifest sha256:28e2fc2bb53b7e8855e4e501ece5133af9dc9b9bf51614fc748acb7ad51170ad 0.0s done
#18 exporting manifest list sha256:2a7b87e9cdcbd3e993f945382e1af951dee018789db0aac2c00393a7a3a8a7fc #18 exporting manifest list sha256:f51acbc7006033f7521e50152c992dae96942b985db01a49e774a6cc59db9970 0.0s done
#18 exporting manifest list sha256:2a7b87e9cdcbd3e993f945382e1af951dee018789db0aac2c00393a7a3a8a7fc 0.1s done #18 naming to docker.io/library/docs-itguys:latest
#18 naming to docker.io/library/docs-itguys:latest done #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
#18 unpacking to docker.io/library/docs-itguys:latest 0.3s done #18 unpacking to docker.io/library/docs-itguys:latest 0.4s done
#18 DONE 2.5s #18 DONE 1.9s
1 warning found (use docker --debug to expand): 1 warning found (use docker --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1) - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/w027xs12fqtjxf3qm1pce5qon View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/vmc0mt8uwrxus2fqxwnazlv3i