Automation: Sync scripts with custom README callout style
This commit is contained in:
parent
52ff8a79fd
commit
2a52707a87
|
|
@ -173,9 +173,31 @@ def update_tracking(
|
|||
with open(readme_path, 'r', encoding='utf-8') as f:
|
||||
lines = f.readlines()
|
||||
|
||||
# Logic extracted from update_progress.py (Refactored for efficiency)
|
||||
clean_lines = [l for l in lines if not re.match(r'^>\s*\*\*Status:\*\*\s*`[▓░]+`', l.strip())]
|
||||
# Remove old status blocks (both callouts and legacy lines)
|
||||
clean_lines = []
|
||||
skip_mode = False
|
||||
|
||||
for l in lines:
|
||||
stripped = l.strip()
|
||||
# Detect legacy bar
|
||||
if re.match(r'^>\s*\*\*Status:\*\*\s*`[▓░]+`', stripped):
|
||||
continue
|
||||
# Detect start of callout info block for status
|
||||
if '!!! info "Gerenciamento de Ativos"' in l or '!!! info "Status da Categoria"' in l:
|
||||
skip_mode = True
|
||||
continue
|
||||
# If in skip mode, skip indented lines
|
||||
if skip_mode:
|
||||
if stripped == "": # Keep empty lines for spacing
|
||||
final_stripped = ""
|
||||
else:
|
||||
if l.startswith(" "): # Indented content of callout
|
||||
continue
|
||||
else:
|
||||
skip_mode = False # End of callout
|
||||
|
||||
clean_lines.append(l)
|
||||
|
||||
total_tasks = 0
|
||||
done_tasks = 0
|
||||
section_stats = {}
|
||||
|
|
@ -185,7 +207,7 @@ def update_tracking(
|
|||
for idx, line in enumerate(clean_lines):
|
||||
if line.strip().startswith('### '):
|
||||
current_sec_idx = idx
|
||||
section_stats[current_sec_idx] = {'total': 0, 'done': 0}
|
||||
section_stats[current_sec_idx] = {'total': 0, 'done': 0, 'title': line.strip().replace('### ', '')}
|
||||
|
||||
is_task = re.search(r'^\s*-\s*\[([ xX])\]', line)
|
||||
if is_task:
|
||||
|
|
@ -199,11 +221,17 @@ def update_tracking(
|
|||
section_stats[current_sec_idx]['done'] += 1
|
||||
|
||||
# Generate Bars
|
||||
def get_bar(done, total, length=20):
|
||||
def get_bar_callout(done, total, title="Gerenciamento de Ativos", is_global=False):
|
||||
pct = (done / total * 100) if total > 0 else 0
|
||||
length = 30 if is_global else 20
|
||||
filled = int(length * done // total) if total > 0 else 0
|
||||
bar_visual = '▓' * filled + '░' * (length - filled)
|
||||
return f"> **Status:** `{bar_visual}` **{int(pct)}%** ({done}/{total})\n"
|
||||
|
||||
callout = f'!!! info "{title}"\n'
|
||||
callout += f' **Status {"Global" if is_global else "da Categoria"}:** `{bar_visual}` **{int(pct)}%** ({done}/{total})\n'
|
||||
if is_global:
|
||||
callout += f' **Responsável:** João Pedro Toledo Gonçalves\n'
|
||||
return callout
|
||||
|
||||
final_content = []
|
||||
global_inserted = False
|
||||
|
|
@ -213,19 +241,19 @@ def update_tracking(
|
|||
|
||||
# Global Bar
|
||||
if "## 📊 Quadro de Status" in line and not global_inserted:
|
||||
final_content.append("\n" + get_bar(done_tasks, total_tasks, 30))
|
||||
final_content.append("\n" + get_bar_callout(done_tasks, total_tasks, is_global=True))
|
||||
global_inserted = True
|
||||
|
||||
# Section Bars
|
||||
if idx in section_stats:
|
||||
stats = section_stats[idx]
|
||||
if stats['total'] > 0:
|
||||
final_content.append(get_bar(stats['done'], stats['total']))
|
||||
final_content.append(get_bar_callout(stats['done'], stats['total'], title=f"Status: {stats['title']}"))
|
||||
|
||||
with open(readme_path, 'w', encoding='utf-8') as f:
|
||||
f.writelines(final_content)
|
||||
|
||||
console.print(f"[green]Tracking updated![/green] Global: {int(done_tasks/total_tasks*100)}%")
|
||||
console.print(f"[green]Tracking updated (Callout Style)![/green] Global: {int(done_tasks/total_tasks*100)}%")
|
||||
|
||||
@app.command()
|
||||
def audit():
|
||||
|
|
|
|||
36
README.md
36
README.md
|
|
@ -1,5 +1,3 @@
|
|||
# Base de Conhecimento iT Guys - Repositório de Documentação
|
||||
|
||||
{ align=center width=150 }
|
||||
|
||||
Este repositório centraliza a documentação técnica da iT Guys, organizada por sistemas e níveis de criticidade. Este arquivo serve como o índice principal tanto para o repositório Git quanto para o site de documentação.
|
||||
|
|
@ -9,16 +7,17 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
## 📊 Quadro de Status Geral
|
||||
|
||||
!!! info "Gerenciamento de Ativos"
|
||||
**Status Global:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░` **52%** (93/177)
|
||||
**Status Global:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░` **89%** (93/104)
|
||||
**Responsável:** João Pedro Toledo Gonçalves
|
||||
**Última Atualização:** {{DATA_ATUAL}}
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 📂 Manuais por Categoria
|
||||
|
||||
### 1. Rede e Segurança (pfSense / Suricata / OpenVPN)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░` **68%**
|
||||
!!! info "Status: 1. Rede e Segurança (pfSense / Suricata / OpenVPN)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░` **68%** (15/22)
|
||||
|
||||
- [x] [Nível 3] [[Planejamento De Hardware E Sizing]](documentacao%20rede%20e%20seguranca/%5BNível%203%5D%20Planejamento%20De%20Hardware%20E%20Sizing.md)
|
||||
- [x] [Nível 2] [[Instalação E Configuração Inicial]](documentacao%20rede%20e%20seguranca/%5BNível%202%5D%20Instalação%20E%20Configuração%20Inicial.md)
|
||||
|
|
@ -44,7 +43,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [ ] [Nível 3] Redes Temporárias e Failover 4G/Starlink
|
||||
|
||||
### 2. Storage (TrueNAS / ZFS)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░` **75%**
|
||||
!!! info "Status: 2. Storage (TrueNAS / ZFS)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░` **75%** (6/8)
|
||||
|
||||
- [x] [Nível 1] [[Monitoramento de Saúde de Discos]](documentacao%20storage/%5BNível%201%5D%20Monitoramento%20de%20Saúde%20de%20Discos.md)
|
||||
- [x] [Nível 2] [[Gestão De Users, Groups E Acls]](documentacao%20storage/%5BNível%202%5D%20Gestão%20De%20Users%2C%20Groups%20E%20Acls.md)
|
||||
|
|
@ -56,7 +56,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [ ] [Nível 3] Otimização de Protocolo SMB para Arquivos Grandes (AutoCAD/Revit)
|
||||
|
||||
### 3. Bancos de Dados (PostgreSQL / MySQL / Redis)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 3. Bancos de Dados (PostgreSQL / MySQL / Redis)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (7/7)
|
||||
|
||||
- [x] [Nível 1] [[Diagnóstico de Conectividade e Status]](documentacao%20bancos%20de%20dados/%5BNível%201%5D%20Diagnóstico%20de%20Conectividade%20e%20Status.md)
|
||||
- [x] [Nível 1] [[Procedimento de Backup e Restore Manual]](documentacao%20bancos%20de%20dados/%5BNível%201%5D%20Procedimento%20de%20Backup%20e%20Restore%20Manual.md)
|
||||
|
|
@ -67,7 +68,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Arquitetura de Persistência e Troubleshooting Avançado]](documentacao%20bancos%20de%20dados/%5BNível%203%5D%20Arquitetura%20de%20Persistência%20e%20Troubleshooting%20Avançado.md)
|
||||
|
||||
### 4. Windows Server (AD / DNS / GPO)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░` **77%**
|
||||
!!! info "Status: 4. Windows Server (AD / DNS / GPO)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░` **77%** (7/9)
|
||||
|
||||
- [x] [Nível 1] [[Criação e Gestão do AD]](documentacao%20windows/%5BNível%201%5D%20Criação%20e%20Gestão%20do%20Ciclo%20de%20Vida%20de%20Usuários%20(AD).md)
|
||||
- [x] [Nível 2] [[Padrões de Senha (Post-Install)]](documentacao%20windows/%5BNível%202%5D%20Padrões%20de%20Senha%20e%20Configuração%20Inicial%20(Post-Install).md)
|
||||
|
|
@ -80,7 +82,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [ ] [Nível 3] Gestão de Impressão Centralizada e Cotas (PaperCut)
|
||||
|
||||
### 5. Microsoft Exchange (Exchange 2019)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 5. Microsoft Exchange (Exchange 2019)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (17/17)
|
||||
|
||||
- [x] [Nível 0] [[Configuração de Webmail e Celular]](documentacao%20exchange/%5BNível%200%5D%20Como%20Acessar%20e%20Configurar%20Webmail%20e%20Celular.md)
|
||||
- [x] [Nível 0] [[Resposta Automatica de Ferias]](documentacao%20exchange/%5BNível%200%5D%20Como%20Configurar%20Resposta%20Automatica%20de%20Ferias.md)
|
||||
|
|
@ -101,7 +104,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Renovação de Certificado SSL]](documentacao%20exchange/%5BNível%203%5D%20Renovacao%20de%20Certificado%20SSL%20e%20Integracao%20com%20IIS.md)
|
||||
|
||||
### 6. Virtualização (VMware / Proxmox)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░` **75%**
|
||||
!!! info "Status: 6. Virtualização (VMware / Proxmox)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (12/12)
|
||||
|
||||
**VMware:**
|
||||
- [x] [Nível 1] [[Visão Geral E Escopo]](documentacao%20vmware/%5BNível%201%5D%20Visão%20Geral%20E%20Escopo.md)
|
||||
|
|
@ -118,7 +122,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Disaster Recovery E Arquitetura]](documentacao%20vmware/%5BNível%203%5D%20Disaster%20Recovery%20E%20Arquitetura.md)
|
||||
|
||||
### 7. Conteineres (Docker / Portainer)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 7. Conteineres (Docker / Portainer)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (9/9)
|
||||
|
||||
- [x] [Nível 0] [[Docker para Devs]](documentacao%20conteineres/%5BNível%200%5D%20Docker%20Para%20Desenvolvedores%20E%20Ferramentas%20Portáteis.md)
|
||||
- [x] [Nível 1] [[Instalação E Configuração]](documentacao%20conteineres/%5BNível%201%5D%20Instalação%20E%20Configuração%20Do%20Docker%20E%20Compose%20(Linux).md)
|
||||
|
|
@ -131,7 +136,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Kubernetes: Visão Geral]](documentacao%20conteineres/%5BNível%203%5D%20Kubernetes%20Visão%20Geral%20E%20Ferramentas%20Básicas.md)
|
||||
|
||||
### 8. Linux Server
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 8. Linux Server"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (7/7)
|
||||
|
||||
- [x] [Nível 1] [[Comandos Essenciais de Diagnóstico]](documentacao%20linux/%5BNível%201%5D%20Comandos%20Essenciais%20de%20Diagnóstico.md)
|
||||
- [x] [Nível 2] [[Gerenciamento de Pacotes e Updates]](documentacao%20linux/%5BNível%202%5D%20Gerenciamento%20de%20Pacotes%20e%20Updates.md)
|
||||
|
|
@ -142,7 +148,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Scripting e Automação Avançada]](documentacao%20linux/%5BNível%203%5D%20Scripting%20e%20Automação%20Avançada.md)
|
||||
|
||||
### 9. Service Desk (Zammad)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 9. Service Desk (Zammad)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (8/8)
|
||||
|
||||
- [x] [Nível 1] [[Ciclo De Vida Do Ticket E Triagem]](documentacao%20zammad/%5BNível%201%5D%20Ciclo%20De%20Vida%20Do%20Ticket%20E%20Triagem.md)
|
||||
- [x] [Nível 2] [[Instalação E Deploy Zammad]](documentacao%20zammad/%5BNível%202%5D%20Instalação%20E%20Deploy%20Zammad.md)
|
||||
|
|
@ -154,7 +161,8 @@ Este repositório centraliza a documentação técnica da iT Guys, organizada po
|
|||
- [x] [Nível 3] [[Manutenção, Backup E Restore]](documentacao%20zammad/%5BNível%203%5D%20Manutenção%2C%20Backup%20E%20Restore.md)
|
||||
|
||||
### 10. Backup & DR - Infraestrutura Virtual (Veeam)
|
||||
> **Status:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%**
|
||||
!!! info "Status: 10. Backup & DR - Infraestrutura Virtual (Veeam)"
|
||||
**Status da Categoria:** `▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓` **100%** (5/5)
|
||||
|
||||
- [x] [Nível 1] [[Verificação Diária De Jobs De VM]](documentacao%20backup/%5BNível%201%5D%20Verificação%20Diária%20De%20Jobs%20De%20Vm.md)
|
||||
- [x] [Nível 2] [[Restauração De Arquivos Guest]](documentacao%20backup/%5BNível%202%5D%20Restauração%20De%20Arquivos%20Guest%20(WindowsLinux).md)
|
||||
|
|
|
|||
|
|
@ -1,117 +0,0 @@
|
|||
[Nível 1] Verificação Diária De Jobs De Vm.md
|
||||
[Nível 2] Instant Vm Recovery (Restauração Rápida).md
|
||||
[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md
|
||||
[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md
|
||||
[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md
|
||||
[Nível 1] Backup E Restore Manual (Dump).md
|
||||
[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md
|
||||
[Nível 1] Diagnóstico de Conectividade e Status.md
|
||||
[Nível 1] Procedimento de Backup e Restore Manual.md
|
||||
[Nível 2] Gestão De Usuários E Permissões De Banco.md
|
||||
[Nível 2] Gestão de Usuários e Permissões.md
|
||||
[Nível 2] Instalação E Configuração Base De Bancos De Dados.md
|
||||
[Nível 2] Instalação e Configuração Base.md
|
||||
[Nível 2] Manutenção Preventiva E Logs De Banco.md
|
||||
[Nível 2] Manutenção Preventiva e Logs.md
|
||||
[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md
|
||||
[Nível 3] Tuning de Performance e Otimização.md
|
||||
[Nível 3] Tuning E Performance De Bancos De Dados.md
|
||||
[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md
|
||||
[Nível 1] Deploy E Acesso Ao Portainer Ce.md
|
||||
[Nível 1] Gestão De Stacks No Portainer.md
|
||||
[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md
|
||||
[Nível 2] Healthchecks E Scripts Automatizados No Docker.md
|
||||
[Nível 2] Redes E Firewall No Docker.md
|
||||
[Nível 2] Volumes E Persistência De Dados No Docker.md
|
||||
[Nível 3] Docker Swarm Inicialização E Gerenciamento.md
|
||||
[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md
|
||||
Redes_e_Firewall_Docker.md
|
||||
Volumes_e_Persistencia_Docker.md
|
||||
[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md
|
||||
[Nível 0] Como Acessar e Configurar Webmail e Celular.md
|
||||
[Nível 0] Como Configurar Resposta Automatica de Ferias.md
|
||||
[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md
|
||||
[Nível 1] Criação E Bloqueio De Usuários.md
|
||||
[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md
|
||||
[Nível 1] Diagnóstico De Recebimento.md
|
||||
[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md
|
||||
[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md
|
||||
[Nível 2] Gerenciamento de Cotas e Arquivamento.md
|
||||
[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md
|
||||
[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md
|
||||
[Nível 2] Gestao de Permissoes (Full Access e Send As).md
|
||||
[Nível 2] Gestão De Permissões (Full Access E Send As).md
|
||||
[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md
|
||||
[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md
|
||||
[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md
|
||||
[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md
|
||||
[Nível 3] Auditoria Administrativa e Logs de Seguranca.md
|
||||
[Nível 3] Checklist de Manutencao Diaria e Semanal.md
|
||||
[Nível 3] Disaster Recovery e Soft Restore.md
|
||||
[Nível 3] Gestao de Conectores e Roteamento de E-mail.md
|
||||
[Nível 3] Referencia de Operacoes via PowerShell.md
|
||||
[Nível 3] Relatorios Avancados e Manutencao.md
|
||||
[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md
|
||||
[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md
|
||||
[Nível 1] Comandos Essenciais de Diagnóstico.md
|
||||
[Nível 2] Configuração de Rede e Firewall.md
|
||||
[Nível 2] Gerenciamento De Pacotes E Atualizações.md
|
||||
[Nível 2] Gerenciamento de Pacotes e Updates.md
|
||||
[Nível 2] Gestão de Usuários e Permissões.md
|
||||
[Nível 3] Análise de Logs (Journalctl).md
|
||||
[Nível 3] Análise De Logs (SystemdJournalctl).md
|
||||
[Nível 3] Hardening De Servidor Linux.md
|
||||
[Nível 3] Hardening de Servidor.md
|
||||
[Nível 3] Scripting e Automação Avançada.md
|
||||
[Nível 2] Customização E Identidade Visual.md
|
||||
[Nível 2] Firewall Rules E Nat.md
|
||||
[Nível 2] Gerenciamento De Usuários E Ldap.md
|
||||
[Nível 2] Instalação E Configuração Inicial.md
|
||||
[Nível 2] Interfaces, Vlans E Lagg.md
|
||||
[Nível 2] Serviço De Dns (ResolverForwarder).md
|
||||
[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md
|
||||
[Nível 2] Serviço Tftp E Provisionamento.md
|
||||
[Nível 2] Vpn Road Warrior (Openvpn).md
|
||||
[Nível 3] Diagnóstico Avançado, Shell E Recovery.md
|
||||
[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md
|
||||
[Nível 3] IdsIps Com Suricata.md
|
||||
[Nível 3] Multi.md
|
||||
[Nível 3] Planejamento De Hardware E Sizing.md
|
||||
[Nível 3] Vpn Site.md
|
||||
[Nível 1] Monitoramento de Saúde de Discos.md
|
||||
[Nível 2] Gestão De Users, Groups E Acls.md
|
||||
[Nível 2] Snapshots E Replicação.md
|
||||
[Nível 3] Arquitetura ZFS e Planejamento.md
|
||||
[Nível 3] Configuração de iSCSI Target.md
|
||||
[Nível 3] Manutenção E Performance Zfs.md
|
||||
[Nível 1] Visão Geral E Escopo.md
|
||||
[Nível 1] Monitoramento Básico De Alertas E Recursos.md
|
||||
[Nível 1] Operações De Energia Reiniciar E Desligar.md
|
||||
[Nível 1] Verificação Básica De Vm.md
|
||||
[Nível 1] Visão Geral E Escopo.md
|
||||
[Nível 2] Gestão De Recursos Computação E Migração.md
|
||||
[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md
|
||||
[Nível 2] Networking E Storage Operacional.md
|
||||
[Nível 2] Troubleshooting Intermediário.md
|
||||
[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md
|
||||
[Nível 3] Disaster Recovery E Arquitetura.md
|
||||
[Nível 3] Networking Avançado E Conceitos De Nsx.md
|
||||
[Nível 3] Storage Deep Dive.md
|
||||
[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md
|
||||
[Nível 2] Gestão Avançada de DNS e DHCP.md
|
||||
[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md
|
||||
[Nível 2] Padrões De Senha E Configuração Inicial (Post.md
|
||||
[Nível 3] Automação e Relatórios com PowerShell.md
|
||||
[Nível 3] Diagnóstico de Replicação (DCDIAG).md
|
||||
[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md
|
||||
[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md
|
||||
[Nível 3] Gestão Centralizada via GPO.md
|
||||
[Nível 1] Ciclo De Vida Do Ticket E Triagem.md
|
||||
[Nível 2] Automações E Triggers.md
|
||||
[Nível 2] Canais De Entrada (EmailChatTelegram).md
|
||||
[Nível 2] Gestão De Grupos E Papéis (Roles).md
|
||||
[Nível 2] Gestão De Slas E Escalonamentos.md
|
||||
[Nível 2] Instalação E Deploy Zammad.md
|
||||
[Nível 3] Api E Integrações.md
|
||||
[Nível 3] Manutenção, Backup E Restore.md
|
||||
[Nível 3] Planejamento De Infraestrutura E Sizing.md
|
||||
|
|
@ -1,117 +0,0 @@
|
|||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao backup\[Nível 1] Verificação Diária De Jobs De Vm.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao backup\[Nível 2] Instant Vm Recovery (Restauração Rápida).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao backup\[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao backup\[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao backup\[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 1] Backup E Restore Manual (Dump).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 1] Diagnóstico de Conectividade e Status.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 1] Procedimento de Backup e Restore Manual.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Gestão De Usuários E Permissões De Banco.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Gestão de Usuários e Permissões.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Instalação E Configuração Base De Bancos De Dados.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Instalação e Configuração Base.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Manutenção Preventiva E Logs De Banco.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 2] Manutenção Preventiva e Logs.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 3] Tuning de Performance e Otimização.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao bancos de dados\[Nível 3] Tuning E Performance De Bancos De Dados.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 1] Deploy E Acesso Ao Portainer Ce.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 1] Gestão De Stacks No Portainer.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 2] Healthchecks E Scripts Automatizados No Docker.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 2] Redes E Firewall No Docker.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 2] Volumes E Persistência De Dados No Docker.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 3] Docker Swarm Inicialização E Gerenciamento.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\Redes_e_Firewall_Docker.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao conteineres\Volumes_e_Persistencia_Docker.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 0] Como Acessar e Configurar Webmail e Celular.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 0] Como Configurar Resposta Automatica de Ferias.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 1] Criação E Bloqueio De Usuários.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 1] Diagnóstico De Recebimento.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gerenciamento de Cotas e Arquivamento.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gestao de Permissoes (Full Access e Send As).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Gestão De Permissões (Full Access E Send As).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Auditoria Administrativa e Logs de Seguranca.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Checklist de Manutencao Diaria e Semanal.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Disaster Recovery e Soft Restore.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Gestao de Conectores e Roteamento de E-mail.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Referencia de Operacoes via PowerShell.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Relatorios Avancados e Manutencao.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao exchange\[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 1] Comandos Essenciais de Diagnóstico.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 2] Configuração de Rede e Firewall.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 2] Gerenciamento De Pacotes E Atualizações.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 2] Gerenciamento de Pacotes e Updates.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 2] Gestão de Usuários e Permissões.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 3] Análise de Logs (Journalctl).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 3] Análise De Logs (SystemdJournalctl).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 3] Hardening De Servidor Linux.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 3] Hardening de Servidor.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao linux\[Nível 3] Scripting e Automação Avançada.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Customização E Identidade Visual.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Firewall Rules E Nat.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Gerenciamento De Usuários E Ldap.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Instalação E Configuração Inicial.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Interfaces, Vlans E Lagg.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Serviço De Dns (ResolverForwarder).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Serviço Tftp E Provisionamento.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 2] Vpn Road Warrior (Openvpn).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] Diagnóstico Avançado, Shell E Recovery.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] IdsIps Com Suricata.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] Multi.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] Planejamento De Hardware E Sizing.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao rede e seguranca\[Nível 3] Vpn Site.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 1] Monitoramento de Saúde de Discos.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 2] Gestão De Users, Groups E Acls.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 2] Snapshots E Replicação.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 3] Arquitetura ZFS e Planejamento.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 3] Configuração de iSCSI Target.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao storage\[Nível 3] Manutenção E Performance Zfs.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao virtualizacao\[Nível 1] Visão Geral E Escopo.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 1] Monitoramento Básico De Alertas E Recursos.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 1] Operações De Energia Reiniciar E Desligar.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 1] Verificação Básica De Vm.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 1] Visão Geral E Escopo.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 2] Gestão De Recursos Computação E Migração.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 2] Networking E Storage Operacional.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 2] Troubleshooting Intermediário.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 3] Disaster Recovery E Arquitetura.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 3] Networking Avançado E Conceitos De Nsx.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao vmware\[Nível 3] Storage Deep Dive.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 2] Gestão Avançada de DNS e DHCP.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 2] Padrões De Senha E Configuração Inicial (Post.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 3] Automação e Relatórios com PowerShell.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 3] Diagnóstico de Replicação (DCDIAG).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao windows\[Nível 3] Gestão Centralizada via GPO.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 1] Ciclo De Vida Do Ticket E Triagem.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 2] Automações E Triggers.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 2] Canais De Entrada (EmailChatTelegram).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 2] Gestão De Grupos E Papéis (Roles).md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 2] Gestão De Slas E Escalonamentos.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 2] Instalação E Deploy Zammad.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 3] Api E Integrações.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 3] Manutenção, Backup E Restore.md
|
||||
C:\Users\joao.goncalves\Desktop\manuais zammad\documentacao zammad\[Nível 3] Planejamento De Infraestrutura E Sizing.md
|
||||
|
|
@ -1,424 +0,0 @@
|
|||
#0 building with "desktop-linux" instance using docker driver
|
||||
|
||||
#1 [internal] load build definition from Dockerfile
|
||||
#1 transferring dockerfile: 1.09kB 0.0s done
|
||||
#1 WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
|
||||
#1 DONE 0.0s
|
||||
|
||||
#2 [auth] library/python:pull token for registry-1.docker.io
|
||||
#2 DONE 0.0s
|
||||
|
||||
#3 [auth] library/nginx:pull token for registry-1.docker.io
|
||||
#3 DONE 0.0s
|
||||
|
||||
#4 [internal] load metadata for docker.io/library/nginx:alpine
|
||||
#4 ...
|
||||
|
||||
#5 [internal] load metadata for docker.io/library/python:3.11-slim
|
||||
#5 DONE 1.2s
|
||||
|
||||
#4 [internal] load metadata for docker.io/library/nginx:alpine
|
||||
#4 DONE 1.2s
|
||||
|
||||
#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: 259.84kB 0.1s done
|
||||
#9 DONE 0.1s
|
||||
|
||||
#10 [builder 5/8] RUN pip install --no-cache-dir -r requirements.txt
|
||||
#10 CACHED
|
||||
|
||||
#11 [builder 2/8] RUN apt-get update && apt-get install -y build-essential pkg-config libcairo2-dev git python3-cffi python3-brotli libpango-1.0-0 libpangoft2-1.0-0 libharfbuzz-subset0 libjpeg-dev libopenjp2-7-dev libffi-dev && rm -rf /var/lib/apt/lists/*
|
||||
#11 CACHED
|
||||
|
||||
#12 [builder 3/8] WORKDIR /app
|
||||
#12 CACHED
|
||||
|
||||
#13 [builder 4/8] COPY requirements.txt .
|
||||
#13 CACHED
|
||||
|
||||
#14 [builder 6/8] RUN git config --global --add safe.directory /app
|
||||
#14 CACHED
|
||||
|
||||
#15 [builder 7/8] COPY . .
|
||||
#15 DONE 0.4s
|
||||
|
||||
#16 [builder 8/8] RUN python .gemini/build_site.py
|
||||
#16 1.120 Found 118 manuals to convert.
|
||||
#16 1.611 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
|
||||
#16 1.611 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
|
||||
#16 2.544 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
|
||||
#16 2.544 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
|
||||
#16 7.961 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 7.961 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 9.976 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 9.976 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 10.08 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 10.08 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 11.08 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
|
||||
#16 11.08 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
|
||||
#16 11.17 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
|
||||
#16 11.17 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
|
||||
#16 11.33 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
|
||||
#16 11.33 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
|
||||
#16 11.40 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
|
||||
#16 11.40 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
|
||||
#16 11.56 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
|
||||
#16 11.56 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
|
||||
#16 11.58 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
|
||||
#16 11.58 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
|
||||
#16 11.66 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
|
||||
#16 11.66 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
|
||||
#16 12.55 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
|
||||
#16 12.55 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
|
||||
#16 12.64 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
|
||||
#16 12.64 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
|
||||
#16 12.77 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
|
||||
#16 12.77 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
|
||||
#16 12.88 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
|
||||
#16 12.88 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
|
||||
#16 13.09 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
|
||||
#16 13.09 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
|
||||
#16 13.33 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
|
||||
#16 13.33 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
|
||||
#16 13.64 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
|
||||
#16 13.64 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
|
||||
#16 13.67 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
|
||||
#16 13.67 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
|
||||
#16 13.67 Ôöé Batch Complete. Ôöé
|
||||
#16 13.67 Ôöé Success: 118 Ôöé
|
||||
#16 13.67 Ôöé Errors: 0 Ôöé
|
||||
#16 13.67 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
|
||||
#16 14.08 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
|
||||
#16 14.08 INFO - Cleaning site directory
|
||||
#16 14.08 INFO - Building documentation to directory: /app/_site_src/site
|
||||
#16 14.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 14.32 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 14.32 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 14.32 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 14.32 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 14.32 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 14.32 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 14.34 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 14.34 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 14.34 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 14.34 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 14.34 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 14.34 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 14.35 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 14.35 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 14.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
|
||||
#16 14.36 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 14.36 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 14.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
|
||||
#16 14.37 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 14.37 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 14.38 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 14.38 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 14.38 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 14.39 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 14.39 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 14.39 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 14.40 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 14.40 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 14.40 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 14.40 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 14.40 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 14.41 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 14.41 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 14.42 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 14.42 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 14.42 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 14.42 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 14.42 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 14.43 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 14.43 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 14.43 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 14.45 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 14.45 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 14.45 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 14.45 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 14.46 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 14.47 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 14.47 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 14.47 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 14.47 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 14.48 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 14.48 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 14.48 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 14.48 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 14.49 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 14.49 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 14.49 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 14.49 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 14.49 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 14.50 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 14.50 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 14.50 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 14.51 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 14.51 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 14.51 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 14.51 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 14.52 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 14.52 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 14.52 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 14.52 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 14.52 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 14.53 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 14.53 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 14.53 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 14.53 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 14.54 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 14.54 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 14.54 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 14.54 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 14.54 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 14.55 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 14.55 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 14.55 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 14.55 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 14.56 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 14.56 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 14.56 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 14.56 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 14.56 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 14.57 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 14.57 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 14.57 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 14.58 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 14.58 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 14.58 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 14.58 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 14.59 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 14.59 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 14.59 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 14.59 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 14.60 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 14.60 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 14.60 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 14.60 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 14.60 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 14.60 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 14.61 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 14.61 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 14.61 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 14.61 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 14.62 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 14.62 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 14.62 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 14.62 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 14.63 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 14.63 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 14.63 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 14.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 14.66 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 14.66 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 14.66 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 14.67 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 14.67 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 14.68 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 14.68 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 14.68 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 14.68 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 14.68 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 14.68 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 14.69 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 14.69 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 14.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
|
||||
#16 14.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
|
||||
#16 14.70 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 14.70 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 14.70 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 14.70 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 14.70 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 14.71 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 14.72 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 14.72 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 14.72 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 14.72 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 14.72 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 14.72 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 14.73 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 14.73 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 14.74 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 14.74 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 14.74 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 14.74 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 14.74 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 14.74 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 14.74 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 14.75 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 14.76 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 14.76 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 14.76 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 14.76 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 14.76 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 14.76 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 14.77 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 14.77 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 14.77 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 14.77 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 14.78 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 14.78 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 14.78 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 14.78 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 14.79 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 14.79 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 14.79 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 14.79 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 14.80 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 14.80 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 14.80 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 14.80 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 14.80 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 14.80 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 14.81 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 14.81 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 14.81 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 14.82 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 14.83 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 14.83 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 14.83 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 14.83 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 14.84 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 14.84 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 14.84 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 14.85 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 14.85 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 14.85 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 14.85 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 14.85 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 14.85 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 14.86 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 14.86 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 14.86 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 14.87 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 14.87 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 14.87 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 14.87 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 14.87 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 14.88 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 14.88 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 14.88 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 14.88 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 14.89 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 14.89 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 14.89 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 14.90 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 14.90 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 14.90 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 14.91 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 14.91 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 14.91 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 14.91 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 14.91 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 14.91 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 14.92 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 14.92 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 14.93 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 14.93 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 14.93 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 14.93 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 14.93 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 14.93 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 14.94 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 14.94 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 14.94 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 14.94 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 14.94 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 14.94 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 14.95 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.19 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 15.35 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 15.37 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 15.37 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 15.39 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 15.40 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 15.41 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 15.41 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 15.43 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 15.44 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 15.44 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 15.47 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 15.50 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 15.50 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 15.51 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 15.51 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 15.52 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 15.52 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 15.53 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.60 INFO - Documentation built in 2.56 seconds
|
||||
#16 16.65 Copying manuals to build directory...
|
||||
#16 16.65 Processing documentacao storage -> Storage
|
||||
#16 16.65 Processing documentacao dev -> Dev
|
||||
#16 16.65 Processing documentacao colaboracao -> Colaboracao
|
||||
#16 16.65 Processing documentacao agendamento -> Agendamento
|
||||
#16 16.65 Processing documentacao zammad -> Zammad
|
||||
#16 16.65 Processing documentacao linux -> Linux
|
||||
#16 16.65 Processing documentacao windows -> Windows
|
||||
#16 16.65 Processing documentacao certificados -> Certificados
|
||||
#16 16.65 Processing documentacao rede e seguranca -> Rede E Seguranca
|
||||
#16 16.65 Processing documentacao terminal -> Terminal
|
||||
#16 16.65 Processing documentacao bancos de dados -> Bancos De Dados
|
||||
#16 16.65 Processing documentacao editores -> Editores
|
||||
#16 16.65 Processing documentacao processos -> Processos
|
||||
#16 16.65 Processing documentacao virtualizacao -> Virtualizacao
|
||||
#16 16.65 Processing documentacao navegadores -> Navegadores
|
||||
#16 16.65 Processing documentacao microsoft -> Microsoft
|
||||
#16 16.65 Processing documentacao seguranca email -> Seguranca Email
|
||||
#16 16.65 Processing documentacao vmware -> Vmware
|
||||
#16 16.65 Processing documentacao hardware -> Hardware
|
||||
#16 16.65 Processing documentacao ferramentas -> Ferramentas
|
||||
#16 16.65 Processing documentacao automacao -> Automacao
|
||||
#16 16.65 Processing documentacao web servers -> Web Servers
|
||||
#16 16.65 Processing documentacao exchange -> Exchange
|
||||
#16 16.65 Processing documentacao backup -> Backup
|
||||
#16 16.65 Processing documentacao powerbi -> Powerbi
|
||||
#16 16.65 Processing documentacao conteineres -> Conteineres
|
||||
#16 16.65 Processing documentacao ftp -> Ftp
|
||||
#16 16.65 Processing documentacao unifi -> Unifi
|
||||
#16 16.65 Processing documentacao webmin -> Webmin
|
||||
#16 16.65 Processing documentacao diagnostico rede -> Diagnostico Rede
|
||||
#16 16.65 Processing documentacao aplicativos -> Aplicativos
|
||||
#16 16.65 Processing documentacao endpoint -> Endpoint
|
||||
#16 16.65 Copying root assets from /app/assets to /app/_site_src/docs/assets
|
||||
#16 16.65 Creating index.md from README.md...
|
||||
#16 16.65 Generating PDFs...
|
||||
#16 16.65 Building MkDocs site...
|
||||
#16 16.65 Build Complete! Site is in _site_src/site
|
||||
#16 DONE 16.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.2s
|
||||
|
||||
#18 exporting to image
|
||||
#18 exporting layers
|
||||
#18 exporting layers 1.3s done
|
||||
#18 exporting manifest sha256:09b212253bf17ec4e88bf285eb19f74644b1e222b1bf35d9404274797c515327 0.0s done
|
||||
#18 exporting config sha256:7f5b983112590170fa3a46be78e4d13f6d21392fcb10bdc1fb314d618c233731 0.0s done
|
||||
#18 exporting attestation manifest sha256:585f42ab7d690c746c7b2cdd45504d45df0018b06affbf2321d4a371165ca414 0.0s done
|
||||
#18 exporting manifest list sha256:6ff4c447d3930651de9649040d8bb056569f41772f14be2d6aab0928ebe6e378 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.8s
|
||||
|
||||
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/57vsgwv809t2rc1tqxpous0jj
|
||||
|
|
@ -1,447 +0,0 @@
|
|||
#0 building with "desktop-linux" instance using docker driver
|
||||
|
||||
#1 [internal] load build definition from Dockerfile
|
||||
#1 transferring dockerfile: 1.09kB 0.0s 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.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 0.0s done
|
||||
#6 DONE 0.0s
|
||||
|
||||
#7 [internal] load build context
|
||||
#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.1s done
|
||||
#8 DONE 0.1s
|
||||
|
||||
#9 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
|
||||
#9 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.1s done
|
||||
#9 DONE 0.1s
|
||||
|
||||
#7 [internal] load build context
|
||||
#7 transferring context: 336.07kB 0.2s done
|
||||
#7 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.5s
|
||||
|
||||
#16 [builder 8/8] RUN python .gemini/build_site.py
|
||||
#16 1.140 Found 118 manuals to convert.
|
||||
#16 1.725 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
|
||||
#16 1.725 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
|
||||
#16 2.799 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
|
||||
#16 2.799 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
|
||||
#16 9.994 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 9.994 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 11.98 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 11.98 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 12.09 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 12.09 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 13.15 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
|
||||
#16 13.15 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
|
||||
#16 13.24 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
|
||||
#16 13.24 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
|
||||
#16 13.41 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
|
||||
#16 13.41 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
|
||||
#16 13.48 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
|
||||
#16 13.48 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
|
||||
#16 13.65 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
|
||||
#16 13.65 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
|
||||
#16 13.67 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
|
||||
#16 13.67 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
|
||||
#16 13.75 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
|
||||
#16 13.75 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
|
||||
#16 14.97 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
|
||||
#16 14.97 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
|
||||
#16 15.09 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
|
||||
#16 15.09 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
|
||||
#16 15.28 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
|
||||
#16 15.28 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
|
||||
#16 15.44 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
|
||||
#16 15.44 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
|
||||
#16 15.74 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
|
||||
#16 15.74 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
|
||||
#16 16.09 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
|
||||
#16 16.09 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
|
||||
#16 16.48 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
|
||||
#16 16.48 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
|
||||
#16 16.52 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
|
||||
#16 16.52 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
|
||||
#16 16.52 Ôöé Batch Complete. Ôöé
|
||||
#16 16.52 Ôöé Success: 118 Ôöé
|
||||
#16 16.52 Ôöé Errors: 0 Ôöé
|
||||
#16 16.52 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
|
||||
#16 17.01 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
|
||||
#16 17.01 INFO - Cleaning site directory
|
||||
#16 17.01 INFO - Building documentation to directory: /app/_site_src/site
|
||||
#16 17.13 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 17.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp
|
||||
#16 17.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restauração Rápida).md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp
|
||||
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp
|
||||
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp
|
||||
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
|
||||
#16 17.16 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.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 De Banco.md' has no git logs, using current timestamp
|
||||
#16 17.17 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação E Configuração Base De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva E Logs De Banco.md' has no git logs, using current timestamp
|
||||
#16 17.18 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
|
||||
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
|
||||
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
|
||||
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
|
||||
#16 17.19 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
|
||||
#16 17.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp
|
||||
#16 17.20 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp
|
||||
#16 17.21 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.22 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.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
|
||||
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gestão De Stacks No Portainer.md' has no git logs, using current timestamp
|
||||
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 0] Configura├º├úo De Resposta Autom├ítica De F├®rias (Webmail).md' has no git logs, using current timestamp
|
||||
#16 17.23 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicialização E Gerenciamento.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.24 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
|
||||
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnóstico De Recebimento.md' has no git logs, using current timestamp
|
||||
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.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
|
||||
#16 17.25 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md' has no git logs, using current timestamp
|
||||
#16 17.26 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
|
||||
#16 17.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.27 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
|
||||
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
|
||||
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
|
||||
#16 17.28 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
|
||||
#16 17.29 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
|
||||
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
|
||||
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gerenciamento De Pacotes E Atualiza├º├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.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
|
||||
#16 17.31 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp
|
||||
#16 17.32 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
|
||||
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp
|
||||
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
|
||||
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customização E Identidade Visual.md' has no git logs, using current timestamp
|
||||
#16 17.33 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp
|
||||
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
|
||||
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp
|
||||
#16 17.34 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instalação E Configuração Inicial.md' has no git logs, using current timestamp
|
||||
#16 17.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço De Dns (ResolverForwarder).md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.35 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp
|
||||
#16 17.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
|
||||
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Tftp E Provisionamento.md' has no git logs, using current timestamp
|
||||
#16 17.36 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md' has no git logs, using current timestamp
|
||||
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp
|
||||
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp
|
||||
#16 17.37 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp
|
||||
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp
|
||||
#16 17.38 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestão De Users, Groups E Acls.md' has no git logs, using current timestamp
|
||||
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp
|
||||
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
|
||||
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutenção E Performance Zfs.md' has no git logs, using current timestamp
|
||||
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
|
||||
#16 17.39 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
|
||||
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replicação.md' has no git logs, using current timestamp
|
||||
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
|
||||
#16 17.40 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp
|
||||
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verificação Básica De Vm.md' has no git logs, using current timestamp
|
||||
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
|
||||
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[N├¡vel 1] Opera├º├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp
|
||||
#16 17.41 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gestão De Recursos Computação E Migração.md' has no git logs, using current timestamp
|
||||
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp
|
||||
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp
|
||||
#16 17.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp
|
||||
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avançado E Conceitos De Nsx.md' has no git logs, using current timestamp
|
||||
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md' has no git logs, using current timestamp
|
||||
#16 17.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
|
||||
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp
|
||||
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
|
||||
#16 17.44 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp
|
||||
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
|
||||
#16 17.45 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes De Senha E Configura├º├úo Inicial (Post.md' has no git logs, using current timestamp
|
||||
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
|
||||
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
|
||||
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
|
||||
#16 17.46 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp
|
||||
#16 17.47 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp
|
||||
#16 17.47 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
|
||||
#16 17.47 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instalação E Deploy Zammad.md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 3] Api E Integra├º├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp
|
||||
#16 17.48 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Manutenção, Backup E Restore.md' has no git logs, using current timestamp
|
||||
#16 17.53 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 17.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 1] Verificação Diária De Jobs De Vm.md' has no git logs, using current timestamp
|
||||
#16 17.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md' has no git logs, using current timestamp
|
||||
#16 17.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md' has no git logs, using current timestamp
|
||||
#16 17.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.54 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md' has no git logs, using current timestamp
|
||||
#16 17.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Diagnóstico de Conectividade e Status.md' has no git logs, using current timestamp
|
||||
#16 17.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Backup E Restore Manual (Dump).md' has no git logs, using current timestamp
|
||||
#16 17.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 1] Procedimento de Backup e Restore Manual.md' has no git logs, using current timestamp
|
||||
#16 17.55 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Backup/[Nível 2] Instant Vm Recovery (Restauração Rápida).md' has no git logs, using current timestamp
|
||||
#16 17.56 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação E Configuração Base De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo De Usu├írios E Permiss├Áes De Banco.md' has no git logs, using current timestamp
|
||||
#16 17.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.57 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Instalação e Configuração Base.md' has no git logs, using current timestamp
|
||||
#16 17.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva E Logs De Banco.md' has no git logs, using current timestamp
|
||||
#16 17.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Volumes_e_Persistencia_Docker.md' has no git logs, using current timestamp
|
||||
#16 17.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md' has no git logs, using current timestamp
|
||||
#16 17.58 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning E Performance De Bancos De Dados.md' has no git logs, using current timestamp
|
||||
#16 17.59 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
|
||||
#16 17.59 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
|
||||
#16 17.59 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 3] Tuning de Performance e Otimização.md' has no git logs, using current timestamp
|
||||
#16 17.60 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md' has no git logs, using current timestamp
|
||||
#16 17.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md' has no git logs, using current timestamp
|
||||
#16 17.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Deploy E Acesso Ao Portainer Ce.md' has no git logs, using current timestamp
|
||||
#16 17.61 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Volumes E Persistência De Dados No Docker.md' has no git logs, using current timestamp
|
||||
#16 17.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Healthchecks E Scripts Automatizados No Docker.md' has no git logs, using current timestamp
|
||||
#16 17.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 2] Redes E Firewall No Docker.md' has no git logs, using current timestamp
|
||||
#16 17.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 1] Gestão De Stacks No Portainer.md' has no git logs, using current timestamp
|
||||
#16 17.62 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Docker Swarm Inicialização E Gerenciamento.md' has no git logs, using current timestamp
|
||||
#16 17.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Acessar e Configurar Webmail e Celular.md' has no git logs, using current timestamp
|
||||
#16 17.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md' has no git logs, using current timestamp
|
||||
#16 17.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Como Configurar Resposta Automatica de Ferias.md' has no git logs, using current timestamp
|
||||
#16 17.63 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md' has no git logs, using current timestamp
|
||||
#16 17.64 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md' has no git logs, using current timestamp
|
||||
#16 17.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Diagnóstico De Recebimento.md' has no git logs, using current timestamp
|
||||
#16 17.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 0] Configura├º├úo De Resposta Autom├ítica De F├®rias (Webmail).md' has no git logs, using current timestamp
|
||||
#16 17.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md' has no git logs, using current timestamp
|
||||
#16 17.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Cotas e Arquivamento.md' has no git logs, using current timestamp
|
||||
#16 17.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md' has no git logs, using current timestamp
|
||||
#16 17.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md' has no git logs, using current timestamp
|
||||
#16 17.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md' has no git logs, using current timestamp
|
||||
#16 17.66 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 1] Criação E Bloqueio De Usuários.md' has no git logs, using current timestamp
|
||||
#16 17.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Gestao de Permissoes (Full Access e Send As).md' has no git logs, using current timestamp
|
||||
#16 17.67 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md' has no git logs, using current timestamp
|
||||
#16 17.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md' has no git logs, using current timestamp
|
||||
#16 17.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Checklist de Manutencao Diaria e Semanal.md' has no git logs, using current timestamp
|
||||
#16 17.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md' has no git logs, using current timestamp
|
||||
#16 17.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Auditoria Administrativa e Logs de Seguranca.md' has no git logs, using current timestamp
|
||||
#16 17.68 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[N├¡vel 2] Gest├úo De Permiss├Áes (Full Access E Send As).md' has no git logs, using current timestamp
|
||||
#16 17.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md' has no git logs, using current timestamp
|
||||
#16 17.69 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Disaster Recovery e Soft Restore.md' has no git logs, using current timestamp
|
||||
#16 17.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Gestao de Conectores e Roteamento de E-mail.md' has no git logs, using current timestamp
|
||||
#16 17.70 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Relatorios Avancados e Manutencao.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Referencia de Operacoes via PowerShell.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gerenciamento De Pacotes E Atualiza├º├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Configuração de Rede e Firewall.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Exchange/[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md' has no git logs, using current timestamp
|
||||
#16 17.71 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 1] Comandos Essenciais de Diagnóstico.md' has no git logs, using current timestamp
|
||||
#16 17.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 2] Gerenciamento de Pacotes e Updates.md' has no git logs, using current timestamp
|
||||
#16 17.72 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[N├¡vel 2] Gest├úo de Usu├írios e Permiss├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
|
||||
#16 17.73 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise De Logs (SystemdJournalctl).md' has no git logs, using current timestamp
|
||||
#16 17.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Análise de Logs (Journalctl).md' has no git logs, using current timestamp
|
||||
#16 17.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening De Servidor Linux.md' has no git logs, using current timestamp
|
||||
#16 17.74 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Customização E Identidade Visual.md' has no git logs, using current timestamp
|
||||
#16 17.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Firewall Rules E Nat.md' has no git logs, using current timestamp
|
||||
#16 17.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Scripting e Automação Avançada.md' has no git logs, using current timestamp
|
||||
#16 17.75 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Instalação E Configuração Inicial.md' has no git logs, using current timestamp
|
||||
#16 17.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Gerenciamento De Usuários E Ldap.md' has no git logs, using current timestamp
|
||||
#16 17.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço De Dns (ResolverForwarder).md' has no git logs, using current timestamp
|
||||
#16 17.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Interfaces, Vlans E Lagg.md' has no git logs, using current timestamp
|
||||
#16 17.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Tftp E Provisionamento.md' has no git logs, using current timestamp
|
||||
#16 17.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md' has no git logs, using current timestamp
|
||||
#16 17.77 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 2] Vpn Road Warrior (Openvpn).md' has no git logs, using current timestamp
|
||||
#16 17.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Diagnóstico Avançado, Shell E Recovery.md' has no git logs, using current timestamp
|
||||
#16 17.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md' has no git logs, using current timestamp
|
||||
#16 17.78 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] IdsIps Com Suricata.md' has no git logs, using current timestamp
|
||||
#16 17.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Planejamento De Hardware E Sizing.md' has no git logs, using current timestamp
|
||||
#16 17.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Vpn Site.md' has no git logs, using current timestamp
|
||||
#16 17.79 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Rede E Seguranca/[Nível 3] Multi.md' has no git logs, using current timestamp
|
||||
#16 17.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Snapshots E Replicação.md' has no git logs, using current timestamp
|
||||
#16 17.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 1] Monitoramento de Saúde de Discos.md' has no git logs, using current timestamp
|
||||
#16 17.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Configuração de iSCSI Target.md' has no git logs, using current timestamp
|
||||
#16 17.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 2] Gestão De Users, Groups E Acls.md' has no git logs, using current timestamp
|
||||
#16 17.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Manutenção E Performance Zfs.md' has no git logs, using current timestamp
|
||||
#16 17.82 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Monitoramento Básico De Alertas E Recursos.md' has no git logs, using current timestamp
|
||||
#16 17.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' has no git logs, using current timestamp
|
||||
#16 17.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[N├¡vel 1] Opera├º├Áes De Energia Reiniciar E Desligar.md' has no git logs, using current timestamp
|
||||
#16 17.83 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Virtualizacao/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
|
||||
#16 17.84 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Networking E Storage Operacional.md' has no git logs, using current timestamp
|
||||
#16 17.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Gestão De Recursos Computação E Migração.md' has no git logs, using current timestamp
|
||||
#16 17.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md' has no git logs, using current timestamp
|
||||
#16 17.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Verificação Básica De Vm.md' has no git logs, using current timestamp
|
||||
#16 17.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 2] Troubleshooting Intermediário.md' has no git logs, using current timestamp
|
||||
#16 17.85 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md' has no git logs, using current timestamp
|
||||
#16 17.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 1] Visão Geral E Escopo.md' has no git logs, using current timestamp
|
||||
#16 17.86 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Disaster Recovery E Arquitetura.md' has no git logs, using current timestamp
|
||||
#16 17.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Storage Deep Dive.md' has no git logs, using current timestamp
|
||||
#16 17.87 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Vmware/[Nível 3] Networking Avançado E Conceitos De Nsx.md' has no git logs, using current timestamp
|
||||
#16 17.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' has no git logs, using current timestamp
|
||||
#16 17.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes De Senha E Configura├º├úo Inicial (Post.md' has no git logs, using current timestamp
|
||||
#16 17.88 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
|
||||
#16 17.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 2] Gestão Avançada de DNS e DHCP.md' has no git logs, using current timestamp
|
||||
#16 17.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
|
||||
#16 17.89 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Diagnóstico de Replicação (DCDIAG).md' has no git logs, using current timestamp
|
||||
#16 17.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
|
||||
#16 17.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada via GPO.md' has no git logs, using current timestamp
|
||||
#16 17.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md' has no git logs, using current timestamp
|
||||
#16 17.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' has no git logs, using current timestamp
|
||||
#16 17.90 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' has no git logs, using current timestamp
|
||||
#16 17.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' has no git logs, using current timestamp
|
||||
#16 17.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' has no git logs, using current timestamp
|
||||
#16 17.91 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Instalação E Deploy Zammad.md' has no git logs, using current timestamp
|
||||
#16 17.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' has no git logs, using current timestamp
|
||||
#16 17.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[Nível 3] Planejamento De Infraestrutura E Sizing.md' has no git logs, using current timestamp
|
||||
#16 17.92 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Zammad/[N├¡vel 3] Api E Integra├º├Áes.md' has no git logs, using current timestamp
|
||||
#16 17.93 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 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Servi%C3%A7o%20De%20Dns%20%28ResolverForwarder', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Servi%C3%A7o%20Dhcp%20E%20Reservas%20De%20Ip%20%28Static%20Mapping', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%203%5D%20Filtro%20De%20Conte%C3%BAdo%20E%20Seguran%C3%A7a%20%28Pfblockerng', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Vpn%20Road%20Warrior%20%28Openvpn', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%201%5D%20Cria%C3%A7%C3%A3o%20e%20Gest%C3%A3o%20do%20Ciclo%20de%20Vida%20de%20Usu%C3%A1rios%20%28AD', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%202%5D%20Padr%C3%B5es%20de%20Senha%20e%20Configura%C3%A7%C3%A3o%20Inicial%20%28Post-Install', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%203%5D%20Diagn%C3%B3stico%20de%20Replica%C3%A7%C3%A3o%20%28DCDIAG', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%203%5D%20Disaster%20Recovery%20e%20Continuidade%20de%20Neg%C3%B3cios%20%28AD', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Gerenciamento%20de%20Quarentena%20Movel%20%28ActiveSync', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Gestao%20de%20Permissoes%20%28Full%20Access%20e%20Send%20As', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Solucao%20de%20Problemas%20de%20Lista%20de%20Enderecos%20%28OAB', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/%5BN%C3%ADvel%202%5D%20Manuten%C3%A7%C3%A3o%20E%20Lifecycle%20%28Ciclo%20De%20Vida', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/%5BN%C3%ADvel%203%5D%20Cli%20E%20Troubleshooting%20Avan%C3%A7ado%20%28N%C3%ADvel%203', it was left as is.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/%5BN%C3%ADvel%201%5D%20Instala%C3%A7%C3%A3o%20E%20Configura%C3%A7%C3%A3o%20Do%20Docker%20E%20Compose%20%28Linux', it was left as is.
|
||||
#16 18.00 WARNING - Doc file 'index.md' contains a link './Linux/%5BN%C3%ADvel%202%20gest%C3%A3o%20de%20usu%C3%A1rios%20e%20permiss%C3%B5es.md', but the target 'Linux/[N├¡vel 2 gest├úo de usu├írios e permiss├Áes.md' is not found among documentation files.
|
||||
#16 18.00 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/%5BN%C3%ADvel%203%5D%20An%C3%A1lise%20de%20Logs%20%28Journalctl', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/%5BN%C3%ADvel%202%5D%20Gest%C3%A3o%20De%20Grupos%20E%20Pap%C3%A9is%20%28Roles', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/%5BN%C3%ADvel%202%5D%20Canais%20De%20Entrada%20%28EmailChatTelegram', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%202%5D%20Restaura%C3%A7%C3%A3o%20De%20Arquivos%20Guest%20%28WindowsLinux', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%202%5D%20Instant%20Vm%20Recovery%20%28Restaura%C3%A7%C3%A3o%20R%C3%A1pida', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%203%5D%20Configura%C3%A7%C3%A3o%20De%20Reposit%C3%B3rios%20Imut%C3%A1veis%20%28Hardened%20Linux', it was left as is.
|
||||
#16 18.01 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%203%5D%20Cria%C3%A7%C3%A3o%20De%20Rotinas%20De%20Teste%20De%20Restore%20%28Surebackup', it was left as is.
|
||||
#16 18.23 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 18.42 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 18.43 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 18.44 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 18.47 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 18.47 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 18.48 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 18.49 WARNING - Doc file 'Storage/[Nível 3] Arquitetura ZFS e Planejamento.md' contains a link 'assets/zfs_architecture.png', but the target 'Storage/assets/zfs_architecture.png' is not found among documentation files.
|
||||
#16 18.51 WARNING - Doc file 'Virtualizacao/[Nível 1] Visão Geral E Escopo.md' contains a link 'assets/proxmox_login.png', but the target 'Virtualizacao/assets/proxmox_login.png' is not found among documentation files.
|
||||
#16 18.52 WARNING - Doc file 'Vmware/[Nível 1] Verificação Básica De Vm.md' contains a link 'assets/vcenter_summary.png', but the target 'Vmware/assets/vcenter_summary.png' is not found among documentation files.
|
||||
#16 18.53 WARNING - Doc file 'Vmware/[Nível 1] Visão Geral E Escopo.md' contains a link 'assets/vsphere_login.png', but the target 'Vmware/assets/vsphere_login.png' is not found among documentation files.
|
||||
#16 18.57 WARNING - Doc file 'Windows/[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md' contains a link 'assets/ad_new_user.png', but the target 'Windows/assets/ad_new_user.png' is not found among documentation files.
|
||||
#16 18.61 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_creation.png', but the target 'Zammad/assets/zammad_ticket_creation.png' is not found among documentation files.
|
||||
#16 18.61 WARNING - Doc file 'Zammad/[Nível 1] Ciclo De Vida Do Ticket E Triagem.md' contains a link 'assets/zammad_ticket_merge.png', but the target 'Zammad/assets/zammad_ticket_merge.png' is not found among documentation files.
|
||||
#16 18.62 WARNING - Doc file 'Zammad/[N├¡vel 2] Automa├º├Áes E Triggers.md' contains a link 'assets/zammad_trigger_setup.png', but the target 'Zammad/assets/zammad_trigger_setup.png' is not found among documentation files.
|
||||
#16 18.62 WARNING - Doc file 'Zammad/[Nível 2] Canais De Entrada (EmailChatTelegram).md' contains a link 'assets/zammad_telegram_integr.png', but the target 'Zammad/assets/zammad_telegram_integr.png' is not found among documentation files.
|
||||
#16 18.63 WARNING - Doc file 'Zammad/[N├¡vel 2] Gest├úo De Grupos E Pap├®is (Roles).md' contains a link 'assets/zammad_create_group.png', but the target 'Zammad/assets/zammad_create_group.png' is not found among documentation files.
|
||||
#16 18.64 WARNING - Doc file 'Zammad/[Nível 2] Gestão De Slas E Escalonamentos.md' contains a link 'assets/zammad_calendar_setup.png', but the target 'Zammad/assets/zammad_calendar_setup.png' is not found among documentation files.
|
||||
#16 18.64 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 20.11 INFO - Documentation built in 3.14 seconds
|
||||
#16 20.18 Copying manuals to build directory...
|
||||
#16 20.18 Processing documentacao storage -> Storage
|
||||
#16 20.18 Processing documentacao dev -> Dev
|
||||
#16 20.18 Processing documentacao colaboracao -> Colaboracao
|
||||
#16 20.18 Processing documentacao agendamento -> Agendamento
|
||||
#16 20.18 Processing documentacao zammad -> Zammad
|
||||
#16 20.18 Processing documentacao linux -> Linux
|
||||
#16 20.18 Processing documentacao windows -> Windows
|
||||
#16 20.18 Processing documentacao certificados -> Certificados
|
||||
#16 20.18 Processing documentacao rede e seguranca -> Rede E Seguranca
|
||||
#16 20.18 Processing documentacao terminal -> Terminal
|
||||
#16 20.18 Processing documentacao bancos de dados -> Bancos De Dados
|
||||
#16 20.18 Processing documentacao editores -> Editores
|
||||
#16 20.18 Processing documentacao processos -> Processos
|
||||
#16 20.18 Processing documentacao virtualizacao -> Virtualizacao
|
||||
#16 20.18 Processing documentacao navegadores -> Navegadores
|
||||
#16 20.18 Processing documentacao microsoft -> Microsoft
|
||||
#16 20.18 Processing documentacao seguranca email -> Seguranca Email
|
||||
#16 20.18 Processing documentacao vmware -> Vmware
|
||||
#16 20.18 Processing documentacao hardware -> Hardware
|
||||
#16 20.18 Processing documentacao ferramentas -> Ferramentas
|
||||
#16 20.18 Processing documentacao automacao -> Automacao
|
||||
#16 20.18 Processing documentacao web servers -> Web Servers
|
||||
#16 20.18 Processing documentacao exchange -> Exchange
|
||||
#16 20.18 Processing documentacao backup -> Backup
|
||||
#16 20.18 Processing documentacao powerbi -> Powerbi
|
||||
#16 20.18 Processing documentacao conteineres -> Conteineres
|
||||
#16 20.18 Processing documentacao ftp -> Ftp
|
||||
#16 20.18 Processing documentacao unifi -> Unifi
|
||||
#16 20.18 Processing documentacao webmin -> Webmin
|
||||
#16 20.18 Processing documentacao diagnostico rede -> Diagnostico Rede
|
||||
#16 20.18 Processing documentacao aplicativos -> Aplicativos
|
||||
#16 20.18 Processing documentacao endpoint -> Endpoint
|
||||
#16 20.18 Copying root assets from /app/assets to /app/_site_src/docs/assets
|
||||
#16 20.18 Creating index.md from README.md...
|
||||
#16 20.18 Generating PDFs...
|
||||
#16 20.18 Building MkDocs site...
|
||||
#16 20.18 Build Complete! Site is in _site_src/site
|
||||
#16 DONE 20.3s
|
||||
|
||||
#9 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
|
||||
#9 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.8s done
|
||||
#18 exporting manifest sha256:79f0b4558cd32ad229c92add018d8a3c2c62210eeff2d46b92015319b06d60ee 0.0s done
|
||||
#18 exporting config sha256:e06b0fb9dcf9128f4255d18e53366fb3b90366812c9666c186b46e67902bf4d3 0.0s done
|
||||
#18 exporting attestation manifest sha256:626f87469439911b3db55cb1143e767ae87b2dbab8e85a164fed8ad263a24770 0.0s done
|
||||
#18 exporting manifest list sha256:e5b5e9880b1379b8f1dec9c1e09e7ad8465f02ee35efbcaf4f428eb9d725bd05
|
||||
#18 exporting manifest list sha256:e5b5e9880b1379b8f1dec9c1e09e7ad8465f02ee35efbcaf4f428eb9d725bd05 0.0s done
|
||||
#18 naming to docker.io/library/docs-itguys:latest
|
||||
#18 naming to docker.io/library/docs-itguys:latest 0.2s 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.5s
|
||||
|
||||
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/qp44449p8t3cxgehltf9n8ic0
|
||||
|
|
@ -1,444 +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.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 [builder 1/8] FROM docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2
|
||||
#7 resolve docker.io/library/python:3.11-slim@sha256:5be45dbade29bebd6886af6b438fd7e0b4eb7b611f39ba62b430263f82de36d2 0.0s done
|
||||
#7 DONE 0.0s
|
||||
|
||||
#8 [stage-1 1/2] FROM docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2
|
||||
#8 resolve docker.io/library/nginx:alpine@sha256:4870c12cd2ca986de501a804b4f506ad3875a0b1874940ba0a2c7f763f1855b2 0.0s done
|
||||
#8 DONE 0.0s
|
||||
|
||||
#9 [internal] load build context
|
||||
#9 transferring context: 280.84kB 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 1.0s
|
||||
|
||||
#16 [builder 8/8] RUN python .gemini/build_site.py
|
||||
#16 1.052 Found 118 manuals to convert.
|
||||
#16 1.581 Could not get image data from src attribute: /app/_site_src/docs/Windows/assets/ad_new_user.png
|
||||
#16 1.581 '<img alt="Exemplo de Criação" src="/app/_site_src/docs/Windows/assets/ad_new_user.png"/>'
|
||||
#16 2.608 Could not get image data from src attribute: /app/_site_src/docs/Exchange/assets/sconfig_menu.png
|
||||
#16 2.608 '<img alt="Exemplo do Menu SConfig" src="/app/_site_src/docs/Exchange/assets/sconfig_menu.png"/>'
|
||||
#16 8.522 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 8.522 '<img alt="General Settings" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 10.49 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 10.49 '<img alt="Wizard Completed" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 10.59 Could not get image data from src attribute: /app/_site_src/docs/Rede E Seguranca/assets/placeholder.png
|
||||
#16 10.59 '<img alt="Categorias Suricata" src="/app/_site_src/docs/Rede E Seguranca/assets/placeholder.png"/>'
|
||||
#16 11.58 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_install_docker.png
|
||||
#16 11.58 '<img alt="Terminal Install Docker" src="/app/_site_src/docs/Zammad/assets/zammad_install_docker.png"/>'
|
||||
#16 11.67 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_create_group.png
|
||||
#16 11.67 '<img alt="Tela de Criação de Grupo" src="/app/_site_src/docs/Zammad/assets/zammad_create_group.png"/>'
|
||||
#16 11.85 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png
|
||||
#16 11.85 '<img alt="Integration Telegram" src="/app/_site_src/docs/Zammad/assets/zammad_telegram_integr.png"/>'
|
||||
#16 11.91 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png
|
||||
#16 11.91 '<img alt="Configuração de Calendário" src="/app/_site_src/docs/Zammad/assets/zammad_calendar_setup.png"/>'
|
||||
#16 12.07 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png
|
||||
#16 12.07 '<img alt="Tela de Abertura de Ticket" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_creation.png"/>'
|
||||
#16 12.09 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png
|
||||
#16 12.09 '<img alt="Menu de Fusão de Tickets" src="/app/_site_src/docs/Zammad/assets/zammad_ticket_merge.png"/>'
|
||||
#16 12.18 Could not get image data from src attribute: /app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png
|
||||
#16 12.18 '<img alt="Configuração de Trigger" src="/app/_site_src/docs/Zammad/assets/zammad_trigger_setup.png"/>'
|
||||
#16 13.08 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/replication_task.png
|
||||
#16 13.08 '<img alt="Tarefa de Replicação" src="/app/_site_src/docs/Storage/assets/replication_task.png"/>'
|
||||
#16 13.17 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/zfs_architecture.png
|
||||
#16 13.17 '<img alt="Diagrama de VDEVs ZFS" src="/app/_site_src/docs/Storage/assets/zfs_architecture.png"/>'
|
||||
#16 13.30 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dataset_acl.png
|
||||
#16 13.30 '<img alt="Editor de ACL TrueNAS" src="/app/_site_src/docs/Storage/assets/dataset_acl.png"/>'
|
||||
#16 13.41 Could not get image data from src attribute: /app/_site_src/docs/Storage/assets/dashboard_alert.png
|
||||
#16 13.41 '<img alt="Exemplo de Alerta" src="/app/_site_src/docs/Storage/assets/dashboard_alert.png"/>'
|
||||
#16 13.61 Could not get image data from src attribute: /app/_site_src/docs/Virtualizacao/assets/proxmox_login.png
|
||||
#16 13.61 '<img alt="Tela de Login Proxmox" src="/app/_site_src/docs/Virtualizacao/assets/proxmox_login.png"/>'
|
||||
#16 13.86 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vcenter_summary.png
|
||||
#16 13.86 '<img alt="Painel Summary vCenter" src="/app/_site_src/docs/Vmware/assets/vcenter_summary.png"/>'
|
||||
#16 14.20 Could not get image data from src attribute: /app/_site_src/docs/Vmware/assets/vsphere_login.png
|
||||
#16 14.20 '<img alt="Tela de Login vSphere" src="/app/_site_src/docs/Vmware/assets/vsphere_login.png"/>'
|
||||
#16 14.24 Processing [N├¡vel 1] Vis├úo Geral E Escopo.md ÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöüÔöü 100%
|
||||
#16 14.24 Ôò¡ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ Summary ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò«
|
||||
#16 14.24 Ôöé Batch Complete. Ôöé
|
||||
#16 14.24 Ôöé Success: 118 Ôöé
|
||||
#16 14.24 Ôöé Errors: 0 Ôöé
|
||||
#16 14.24 Ôò░ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔò»
|
||||
#16 14.65 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs' has no git logs, using current timestamp
|
||||
#16 14.65 INFO - Cleaning site directory
|
||||
#16 14.65 INFO - Building documentation to directory: /app/_site_src/site
|
||||
#16 14.76 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.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 14.80 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 14.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 14.81 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 14.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 14.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 14.81 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Conteineres/Redes_e_Firewall_Docker.md' has no git logs, using current timestamp
|
||||
#16 14.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 14.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 14.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 14.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 14.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 14.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 14.83 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 14.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 14.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 14.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 14.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 14.84 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 14.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 14.85 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 14.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 14.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 14.85 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 14.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 14.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 14.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 14.87 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 14.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 14.87 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 14.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 14.87 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 14.88 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 14.88 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 14.88 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 14.89 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 14.89 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 14.89 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 14.89 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 14.90 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 14.90 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 14.90 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 14.91 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 14.91 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 14.91 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 14.91 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 14.91 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 14.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 14.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 14.92 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 14.93 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 14.93 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 14.93 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 14.93 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 14.93 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 14.94 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 14.94 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 14.94 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 14.95 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 14.95 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 14.95 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 14.96 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 14.96 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 14.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 14.96 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 14.97 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 14.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 14.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 14.98 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 14.98 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 14.98 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 14.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 14.98 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 14.99 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 14.99 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 14.99 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.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 15.00 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.00 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.00 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.00 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.01 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.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 15.02 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.02 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.02 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.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 15.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 15.02 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.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 15.03 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.03 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.03 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.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 15.04 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.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 15.05 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.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 15.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 15.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 15.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 15.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 15.06 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.06 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.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 15.06 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.10 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/index.md' has no git logs, using current timestamp
|
||||
#16 15.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 15.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 15.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 15.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 15.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 15.12 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.12 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.13 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.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 15.13 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.13 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.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 15.14 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.14 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.14 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.14 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.15 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Bancos De Dados/[Nível 2] Manutenção Preventiva e Logs.md' has no git logs, using current timestamp
|
||||
#16 15.15 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.15 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.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 15.16 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.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 15.16 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.16 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.16 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.17 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.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 15.17 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.18 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.18 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.18 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.18 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.18 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.19 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.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 15.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 15.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 15.20 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.20 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.21 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.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 15.22 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.22 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.23 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.23 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.23 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.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 15.24 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.24 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.25 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.25 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.26 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.26 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.26 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.27 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.27 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.27 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.28 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.28 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.28 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.29 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.29 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.29 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.29 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.30 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Linux/[Nível 3] Hardening de Servidor.md' has no git logs, using current timestamp
|
||||
#16 15.30 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.30 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.31 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.31 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.31 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.32 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.33 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.33 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.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
|
||||
#16 15.33 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.33 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.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
|
||||
#16 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
|
||||
#16 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
|
||||
#16 15.35 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.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
|
||||
#16 15.36 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.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
|
||||
#16 15.36 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.36 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.37 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.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
|
||||
#16 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
|
||||
#16 15.38 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.38 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.39 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.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
|
||||
#16 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
|
||||
#16 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
|
||||
#16 15.39 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.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
|
||||
#16 15.40 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.41 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.41 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.41 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.41 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.41 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.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[N├¡vel 2] Padr├Áes de Senha e Configura├º├úo Inicial (Post-Install).md' has no git logs, using current timestamp
|
||||
#16 15.42 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.42 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Automação e Relatórios com PowerShell.md' has no git logs, using current timestamp
|
||||
#16 15.43 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.43 WARNING - [git-revision-date-localized-plugin] '/app/_site_src/docs/Windows/[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md' has no git logs, using current timestamp
|
||||
#16 15.43 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.43 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.43 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.44 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.44 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.44 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.45 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.45 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.45 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.45 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.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Servi%C3%A7o%20De%20Dns%20%28ResolverForwarder', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Servi%C3%A7o%20Dhcp%20E%20Reservas%20De%20Ip%20%28Static%20Mapping', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%203%5D%20Filtro%20De%20Conte%C3%BAdo%20E%20Seguran%C3%A7a%20%28Pfblockerng', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Rede%20E%20Seguranca/%5BN%C3%ADvel%202%5D%20Vpn%20Road%20Warrior%20%28Openvpn', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%201%5D%20Cria%C3%A7%C3%A3o%20e%20Gest%C3%A3o%20do%20Ciclo%20de%20Vida%20de%20Usu%C3%A1rios%20%28AD', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%202%5D%20Padr%C3%B5es%20de%20Senha%20e%20Configura%C3%A7%C3%A3o%20Inicial%20%28Post-Install', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%203%5D%20Diagn%C3%B3stico%20de%20Replica%C3%A7%C3%A3o%20%28DCDIAG', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Windows/%5BN%C3%ADvel%203%5D%20Disaster%20Recovery%20e%20Continuidade%20de%20Neg%C3%B3cios%20%28AD', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Gerenciamento%20de%20Quarentena%20Movel%20%28ActiveSync', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Gestao%20de%20Permissoes%20%28Full%20Access%20e%20Send%20As', it was left as is.
|
||||
#16 15.53 INFO - Doc file 'index.md' contains an unrecognized relative link './Exchange/%5BN%C3%ADvel%202%5D%20Solucao%20de%20Problemas%20de%20Lista%20de%20Enderecos%20%28OAB', it was left as is.
|
||||
#16 15.53 WARNING - Doc file 'index.md' contains a link './Exchange/%5BN%C3%ADvel%203%20disaster%20recovery%20e%20soft%20restore.md', but the target 'Exchange/[Nível 3 disaster recovery e soft restore.md' is not found among documentation files.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/%5BN%C3%ADvel%202%5D%20Manuten%C3%A7%C3%A3o%20E%20Lifecycle%20%28Ciclo%20De%20Vida', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Vmware/%5BN%C3%ADvel%203%5D%20Cli%20E%20Troubleshooting%20Avan%C3%A7ado%20%28N%C3%ADvel%203', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Conteineres/%5BN%C3%ADvel%201%5D%20Instala%C3%A7%C3%A3o%20E%20Configura%C3%A7%C3%A3o%20Do%20Docker%20E%20Compose%20%28Linux', it was left as is.
|
||||
#16 15.54 WARNING - Doc file 'index.md' contains a link './Linux/%5BN%C3%ADvel%202%20gest%C3%A3o%20de%20usu%C3%A1rios%20e%20permiss%C3%B5es.md', but the target 'Linux/[N├¡vel 2 gest├úo de usu├írios e permiss├Áes.md' is not found among documentation files.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Linux/%5BN%C3%ADvel%203%5D%20An%C3%A1lise%20de%20Logs%20%28Journalctl', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/%5BN%C3%ADvel%202%5D%20Gest%C3%A3o%20De%20Grupos%20E%20Pap%C3%A9is%20%28Roles', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Zammad/%5BN%C3%ADvel%202%5D%20Canais%20De%20Entrada%20%28EmailChatTelegram', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%202%5D%20Restaura%C3%A7%C3%A3o%20De%20Arquivos%20Guest%20%28WindowsLinux', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%202%5D%20Instant%20Vm%20Recovery%20%28Restaura%C3%A7%C3%A3o%20R%C3%A1pida', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%203%5D%20Configura%C3%A7%C3%A3o%20De%20Reposit%C3%B3rios%20Imut%C3%A1veis%20%28Hardened%20Linux', it was left as is.
|
||||
#16 15.54 INFO - Doc file 'index.md' contains an unrecognized relative link './Backup/%5BN%C3%ADvel%203%5D%20Cria%C3%A7%C3%A3o%20De%20Rotinas%20De%20Teste%20De%20Restore%20%28Surebackup', it was left as is.
|
||||
#16 15.89 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.11 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.13 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.14 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.17 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.17 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.18 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.19 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.22 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.23 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.24 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.34 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.34 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.35 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.36 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.36 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.37 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.38 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.61 INFO - Documentation built in 2.99 seconds
|
||||
#16 17.68 Copying manuals to build directory...
|
||||
#16 17.68 Processing documentacao storage -> Storage
|
||||
#16 17.68 Processing documentacao dev -> Dev
|
||||
#16 17.68 Processing documentacao colaboracao -> Colaboracao
|
||||
#16 17.68 Processing documentacao agendamento -> Agendamento
|
||||
#16 17.68 Processing documentacao zammad -> Zammad
|
||||
#16 17.68 Processing documentacao linux -> Linux
|
||||
#16 17.68 Processing documentacao windows -> Windows
|
||||
#16 17.68 Processing documentacao certificados -> Certificados
|
||||
#16 17.68 Processing documentacao rede e seguranca -> Rede E Seguranca
|
||||
#16 17.68 Processing documentacao terminal -> Terminal
|
||||
#16 17.68 Processing documentacao bancos de dados -> Bancos De Dados
|
||||
#16 17.68 Processing documentacao editores -> Editores
|
||||
#16 17.68 Processing documentacao processos -> Processos
|
||||
#16 17.68 Processing documentacao virtualizacao -> Virtualizacao
|
||||
#16 17.68 Processing documentacao navegadores -> Navegadores
|
||||
#16 17.68 Processing documentacao microsoft -> Microsoft
|
||||
#16 17.68 Processing documentacao seguranca email -> Seguranca Email
|
||||
#16 17.68 Processing documentacao vmware -> Vmware
|
||||
#16 17.68 Processing documentacao hardware -> Hardware
|
||||
#16 17.68 Processing documentacao ferramentas -> Ferramentas
|
||||
#16 17.68 Processing documentacao automacao -> Automacao
|
||||
#16 17.68 Processing documentacao web servers -> Web Servers
|
||||
#16 17.68 Processing documentacao exchange -> Exchange
|
||||
#16 17.68 Processing documentacao backup -> Backup
|
||||
#16 17.68 Processing documentacao powerbi -> Powerbi
|
||||
#16 17.68 Processing documentacao conteineres -> Conteineres
|
||||
#16 17.68 Processing documentacao ftp -> Ftp
|
||||
#16 17.68 Processing documentacao unifi -> Unifi
|
||||
#16 17.68 Processing documentacao webmin -> Webmin
|
||||
#16 17.68 Processing documentacao diagnostico rede -> Diagnostico Rede
|
||||
#16 17.68 Processing documentacao aplicativos -> Aplicativos
|
||||
#16 17.68 Processing documentacao endpoint -> Endpoint
|
||||
#16 17.68 Copying root assets from /app/assets to /app/_site_src/docs/assets
|
||||
#16 17.68 Creating index.md from README.md...
|
||||
#16 17.68 Generating PDFs...
|
||||
#16 17.68 Building MkDocs site...
|
||||
#16 17.68 Build Complete! Site is in _site_src/site
|
||||
#16 DONE 18.0s
|
||||
|
||||
#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.5s done
|
||||
#18 exporting manifest sha256:2f675c42765b7f2307bc755f581b89fbd4e03704f1d92750e5f34f41268beac9 0.0s done
|
||||
#18 exporting config sha256:ad1b460c6ce2e404f8e7fcdf7ea8c236752a0037502985293591e746679fa440 0.0s done
|
||||
#18 exporting attestation manifest sha256:5515408a18109da5029e6c1152e382be8aedc967ffb6e8e967faf3e577daf770 0.0s done
|
||||
#18 exporting manifest list sha256:38f71a4a3b651088bb3da7526176ff036cb56ddcf98ce0f30e5dd21ce0b92362 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.4s 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/zocc6n070hl14rr1ku7kbbug8
|
||||
|
|
@ -1,118 +0,0 @@
|
|||
"RelPath","Name"
|
||||
"documentacao backup\[Nível 1] Verificação Diária De Jobs De Vm.md","[Nível 1] Verificação Diária De Jobs De Vm.md"
|
||||
"documentacao backup\[Nível 2] Instant Vm Recovery (Restauração Rápida).md","[Nível 2] Instant Vm Recovery (Restauração Rápida).md"
|
||||
"documentacao backup\[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md","[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md"
|
||||
"documentacao backup\[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md","[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md"
|
||||
"documentacao backup\[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md","[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md"
|
||||
"documentacao bancos de dados\[Nível 1] Backup E Restore Manual (Dump).md","[Nível 1] Backup E Restore Manual (Dump).md"
|
||||
"documentacao bancos de dados\[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md","[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md"
|
||||
"documentacao bancos de dados\[Nível 1] Diagnóstico de Conectividade e Status.md","[Nível 1] Diagnóstico de Conectividade e Status.md"
|
||||
"documentacao bancos de dados\[Nível 1] Procedimento de Backup e Restore Manual.md","[Nível 1] Procedimento de Backup e Restore Manual.md"
|
||||
"documentacao bancos de dados\[Nível 2] Gestão De Usuários E Permissões De Banco.md","[Nível 2] Gestão De Usuários E Permissões De Banco.md"
|
||||
"documentacao bancos de dados\[Nível 2] Gestão de Usuários e Permissões.md","[Nível 2] Gestão de Usuários e Permissões.md"
|
||||
"documentacao bancos de dados\[Nível 2] Instalação E Configuração Base De Bancos De Dados.md","[Nível 2] Instalação E Configuração Base De Bancos De Dados.md"
|
||||
"documentacao bancos de dados\[Nível 2] Instalação e Configuração Base.md","[Nível 2] Instalação e Configuração Base.md"
|
||||
"documentacao bancos de dados\[Nível 2] Manutenção Preventiva E Logs De Banco.md","[Nível 2] Manutenção Preventiva E Logs De Banco.md"
|
||||
"documentacao bancos de dados\[Nível 2] Manutenção Preventiva e Logs.md","[Nível 2] Manutenção Preventiva e Logs.md"
|
||||
"documentacao bancos de dados\[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md","[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md"
|
||||
"documentacao bancos de dados\[Nível 3] Tuning de Performance e Otimização.md","[Nível 3] Tuning de Performance e Otimização.md"
|
||||
"documentacao bancos de dados\[Nível 3] Tuning E Performance De Bancos De Dados.md","[Nível 3] Tuning E Performance De Bancos De Dados.md"
|
||||
"documentacao conteineres\[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md","[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md"
|
||||
"documentacao conteineres\[Nível 1] Deploy E Acesso Ao Portainer Ce.md","[Nível 1] Deploy E Acesso Ao Portainer Ce.md"
|
||||
"documentacao conteineres\[Nível 1] Gestão De Stacks No Portainer.md","[Nível 1] Gestão De Stacks No Portainer.md"
|
||||
"documentacao conteineres\[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md","[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md"
|
||||
"documentacao conteineres\[Nível 2] Healthchecks E Scripts Automatizados No Docker.md","[Nível 2] Healthchecks E Scripts Automatizados No Docker.md"
|
||||
"documentacao conteineres\[Nível 2] Redes E Firewall No Docker.md","[Nível 2] Redes E Firewall No Docker.md"
|
||||
"documentacao conteineres\[Nível 2] Volumes E Persistência De Dados No Docker.md","[Nível 2] Volumes E Persistência De Dados No Docker.md"
|
||||
"documentacao conteineres\[Nível 3] Docker Swarm Inicialização E Gerenciamento.md","[Nível 3] Docker Swarm Inicialização E Gerenciamento.md"
|
||||
"documentacao conteineres\[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md","[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md"
|
||||
"documentacao conteineres\Redes_e_Firewall_Docker.md","Redes_e_Firewall_Docker.md"
|
||||
"documentacao conteineres\Volumes_e_Persistencia_Docker.md","Volumes_e_Persistencia_Docker.md"
|
||||
"documentacao exchange\[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md","[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md"
|
||||
"documentacao exchange\[Nível 0] Como Acessar e Configurar Webmail e Celular.md","[Nível 0] Como Acessar e Configurar Webmail e Celular.md"
|
||||
"documentacao exchange\[Nível 0] Como Configurar Resposta Automatica de Ferias.md","[Nível 0] Como Configurar Resposta Automatica de Ferias.md"
|
||||
"documentacao exchange\[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md","[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md"
|
||||
"documentacao exchange\[Nível 1] Criação E Bloqueio De Usuários.md","[Nível 1] Criação E Bloqueio De Usuários.md"
|
||||
"documentacao exchange\[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md","[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md"
|
||||
"documentacao exchange\[Nível 1] Diagnóstico De Recebimento.md","[Nível 1] Diagnóstico De Recebimento.md"
|
||||
"documentacao exchange\[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md","[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md","[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento de Cotas e Arquivamento.md","[Nível 2] Gerenciamento de Cotas e Arquivamento.md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md","[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md","[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md"
|
||||
"documentacao exchange\[Nível 2] Gestao de Permissoes (Full Access e Send As).md","[Nível 2] Gestao de Permissoes (Full Access e Send As).md"
|
||||
"documentacao exchange\[Nível 2] Gestão De Permissões (Full Access E Send As).md","[Nível 2] Gestão De Permissões (Full Access E Send As).md"
|
||||
"documentacao exchange\[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md","[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md"
|
||||
"documentacao exchange\[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md","[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md"
|
||||
"documentacao exchange\[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md","[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md"
|
||||
"documentacao exchange\[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md","[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md"
|
||||
"documentacao exchange\[Nível 3] Auditoria Administrativa e Logs de Seguranca.md","[Nível 3] Auditoria Administrativa e Logs de Seguranca.md"
|
||||
"documentacao exchange\[Nível 3] Checklist de Manutencao Diaria e Semanal.md","[Nível 3] Checklist de Manutencao Diaria e Semanal.md"
|
||||
"documentacao exchange\[Nível 3] Disaster Recovery e Soft Restore.md","[Nível 3] Disaster Recovery e Soft Restore.md"
|
||||
"documentacao exchange\[Nível 3] Gestao de Conectores e Roteamento de E-mail.md","[Nível 3] Gestao de Conectores e Roteamento de E-mail.md"
|
||||
"documentacao exchange\[Nível 3] Referencia de Operacoes via PowerShell.md","[Nível 3] Referencia de Operacoes via PowerShell.md"
|
||||
"documentacao exchange\[Nível 3] Relatorios Avancados e Manutencao.md","[Nível 3] Relatorios Avancados e Manutencao.md"
|
||||
"documentacao exchange\[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md","[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md"
|
||||
"documentacao linux\[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md","[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md"
|
||||
"documentacao linux\[Nível 1] Comandos Essenciais de Diagnóstico.md","[Nível 1] Comandos Essenciais de Diagnóstico.md"
|
||||
"documentacao linux\[Nível 2] Configuração de Rede e Firewall.md","[Nível 2] Configuração de Rede e Firewall.md"
|
||||
"documentacao linux\[Nível 2] Gerenciamento De Pacotes E Atualizações.md","[Nível 2] Gerenciamento De Pacotes E Atualizações.md"
|
||||
"documentacao linux\[Nível 2] Gerenciamento de Pacotes e Updates.md","[Nível 2] Gerenciamento de Pacotes e Updates.md"
|
||||
"documentacao linux\[Nível 2] Gestão de Usuários e Permissões.md","[Nível 2] Gestão de Usuários e Permissões.md"
|
||||
"documentacao linux\[Nível 3] Análise de Logs (Journalctl).md","[Nível 3] Análise de Logs (Journalctl).md"
|
||||
"documentacao linux\[Nível 3] Análise De Logs (SystemdJournalctl).md","[Nível 3] Análise De Logs (SystemdJournalctl).md"
|
||||
"documentacao linux\[Nível 3] Hardening De Servidor Linux.md","[Nível 3] Hardening De Servidor Linux.md"
|
||||
"documentacao linux\[Nível 3] Hardening de Servidor.md","[Nível 3] Hardening de Servidor.md"
|
||||
"documentacao linux\[Nível 3] Scripting e Automação Avançada.md","[Nível 3] Scripting e Automação Avançada.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Customização E Identidade Visual.md","[Nível 2] Customização E Identidade Visual.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Firewall Rules E Nat.md","[Nível 2] Firewall Rules E Nat.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Gerenciamento De Usuários E Ldap.md","[Nível 2] Gerenciamento De Usuários E Ldap.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Instalação E Configuração Inicial.md","[Nível 2] Instalação E Configuração Inicial.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Interfaces, Vlans E Lagg.md","[Nível 2] Interfaces, Vlans E Lagg.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço De Dns (ResolverForwarder).md","[Nível 2] Serviço De Dns (ResolverForwarder).md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md","[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço Tftp E Provisionamento.md","[Nível 2] Serviço Tftp E Provisionamento.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Vpn Road Warrior (Openvpn).md","[Nível 2] Vpn Road Warrior (Openvpn).md"
|
||||
"documentacao rede e seguranca\[Nível 3] Diagnóstico Avançado, Shell E Recovery.md","[Nível 3] Diagnóstico Avançado, Shell E Recovery.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md","[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md"
|
||||
"documentacao rede e seguranca\[Nível 3] IdsIps Com Suricata.md","[Nível 3] IdsIps Com Suricata.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Multi.md","[Nível 3] Multi.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Planejamento De Hardware E Sizing.md","[Nível 3] Planejamento De Hardware E Sizing.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Vpn Site.md","[Nível 3] Vpn Site.md"
|
||||
"documentacao storage\[Nível 1] Monitoramento de Saúde de Discos.md","[Nível 1] Monitoramento de Saúde de Discos.md"
|
||||
"documentacao storage\[Nível 2] Gestão De Users, Groups E Acls.md","[Nível 2] Gestão De Users, Groups E Acls.md"
|
||||
"documentacao storage\[Nível 2] Snapshots E Replicação.md","[Nível 2] Snapshots E Replicação.md"
|
||||
"documentacao storage\[Nível 3] Arquitetura ZFS e Planejamento.md","[Nível 3] Arquitetura ZFS e Planejamento.md"
|
||||
"documentacao storage\[Nível 3] Configuração de iSCSI Target.md","[Nível 3] Configuração de iSCSI Target.md"
|
||||
"documentacao storage\[Nível 3] Manutenção E Performance Zfs.md","[Nível 3] Manutenção E Performance Zfs.md"
|
||||
"documentacao virtualizacao\[Nível 1] Visão Geral E Escopo.md","[Nível 1] Visão Geral E Escopo.md"
|
||||
"documentacao vmware\[Nível 1] Monitoramento Básico De Alertas E Recursos.md","[Nível 1] Monitoramento Básico De Alertas E Recursos.md"
|
||||
"documentacao vmware\[Nível 1] Operações De Energia Reiniciar E Desligar.md","[Nível 1] Operações De Energia Reiniciar E Desligar.md"
|
||||
"documentacao vmware\[Nível 1] Verificação Básica De Vm.md","[Nível 1] Verificação Básica De Vm.md"
|
||||
"documentacao vmware\[Nível 1] Visão Geral E Escopo.md","[Nível 1] Visão Geral E Escopo.md"
|
||||
"documentacao vmware\[Nível 2] Gestão De Recursos Computação E Migração.md","[Nível 2] Gestão De Recursos Computação E Migração.md"
|
||||
"documentacao vmware\[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md","[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md"
|
||||
"documentacao vmware\[Nível 2] Networking E Storage Operacional.md","[Nível 2] Networking E Storage Operacional.md"
|
||||
"documentacao vmware\[Nível 2] Troubleshooting Intermediário.md","[Nível 2] Troubleshooting Intermediário.md"
|
||||
"documentacao vmware\[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md","[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md"
|
||||
"documentacao vmware\[Nível 3] Disaster Recovery E Arquitetura.md","[Nível 3] Disaster Recovery E Arquitetura.md"
|
||||
"documentacao vmware\[Nível 3] Networking Avançado E Conceitos De Nsx.md","[Nível 3] Networking Avançado E Conceitos De Nsx.md"
|
||||
"documentacao vmware\[Nível 3] Storage Deep Dive.md","[Nível 3] Storage Deep Dive.md"
|
||||
"documentacao windows\[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md","[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md"
|
||||
"documentacao windows\[Nível 2] Gestão Avançada de DNS e DHCP.md","[Nível 2] Gestão Avançada de DNS e DHCP.md"
|
||||
"documentacao windows\[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md","[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md"
|
||||
"documentacao windows\[Nível 2] Padrões De Senha E Configuração Inicial (Post.md","[Nível 2] Padrões De Senha E Configuração Inicial (Post.md"
|
||||
"documentacao windows\[Nível 3] Automação e Relatórios com PowerShell.md","[Nível 3] Automação e Relatórios com PowerShell.md"
|
||||
"documentacao windows\[Nível 3] Diagnóstico de Replicação (DCDIAG).md","[Nível 3] Diagnóstico de Replicação (DCDIAG).md"
|
||||
"documentacao windows\[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md","[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md"
|
||||
"documentacao windows\[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md","[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md"
|
||||
"documentacao windows\[Nível 3] Gestão Centralizada via GPO.md","[Nível 3] Gestão Centralizada via GPO.md"
|
||||
"documentacao zammad\[Nível 1] Ciclo De Vida Do Ticket E Triagem.md","[Nível 1] Ciclo De Vida Do Ticket E Triagem.md"
|
||||
"documentacao zammad\[Nível 2] Automações E Triggers.md","[Nível 2] Automações E Triggers.md"
|
||||
"documentacao zammad\[Nível 2] Canais De Entrada (EmailChatTelegram).md","[Nível 2] Canais De Entrada (EmailChatTelegram).md"
|
||||
"documentacao zammad\[Nível 2] Gestão De Grupos E Papéis (Roles).md","[Nível 2] Gestão De Grupos E Papéis (Roles).md"
|
||||
"documentacao zammad\[Nível 2] Gestão De Slas E Escalonamentos.md","[Nível 2] Gestão De Slas E Escalonamentos.md"
|
||||
"documentacao zammad\[Nível 2] Instalação E Deploy Zammad.md","[Nível 2] Instalação E Deploy Zammad.md"
|
||||
"documentacao zammad\[Nível 3] Api E Integrações.md","[Nível 3] Api E Integrações.md"
|
||||
"documentacao zammad\[Nível 3] Manutenção, Backup E Restore.md","[Nível 3] Manutenção, Backup E Restore.md"
|
||||
"documentacao zammad\[Nível 3] Planejamento De Infraestrutura E Sizing.md","[Nível 3] Planejamento De Infraestrutura E Sizing.md"
|
||||
|
|
|
@ -1,121 +0,0 @@
|
|||
|
||||
RelPath
|
||||
-------
|
||||
documentacao backup\[N…
|
||||
documentacao backup\[N…
|
||||
documentacao backup\[N…
|
||||
documentacao backup\[N…
|
||||
documentacao backup\[N…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao bancos de…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao conteiner…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao exchange\…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao linux\[Ní…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao rede e se…
|
||||
documentacao storage\[…
|
||||
documentacao storage\[…
|
||||
documentacao storage\[…
|
||||
documentacao storage\[…
|
||||
documentacao storage\[…
|
||||
documentacao storage\[…
|
||||
documentacao virtualiz…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao vmware\[N…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao windows\[…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
documentacao zammad\[N…
|
||||
|
||||
|
|
@ -1,118 +0,0 @@
|
|||
"RelPath","Name"
|
||||
"documentacao backup\[Nível 1] Verificação Diária De Jobs De Vm.md","[Nível 1] Verificação Diária De Jobs De Vm.md"
|
||||
"documentacao backup\[Nível 2] Instant Vm Recovery (Restauração Rápida).md","[Nível 2] Instant Vm Recovery (Restauração Rápida).md"
|
||||
"documentacao backup\[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md","[Nível 2] Restauração De Arquivos Guest (WindowsLinux).md"
|
||||
"documentacao backup\[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md","[Nível 3] Configuração De Repositórios Imutáveis (Hardened Linux).md"
|
||||
"documentacao backup\[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md","[Nível 3] Criação De Rotinas De Teste De Restore (Surebackup).md"
|
||||
"documentacao bancos de dados\[Nível 1] Backup E Restore Manual (Dump).md","[Nível 1] Backup E Restore Manual (Dump).md"
|
||||
"documentacao bancos de dados\[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md","[Nível 1] Diagnóstico De Conectividade De Bancos De Dados.md"
|
||||
"documentacao bancos de dados\[Nível 1] Diagnóstico de Conectividade e Status.md","[Nível 1] Diagnóstico de Conectividade e Status.md"
|
||||
"documentacao bancos de dados\[Nível 1] Procedimento de Backup e Restore Manual.md","[Nível 1] Procedimento de Backup e Restore Manual.md"
|
||||
"documentacao bancos de dados\[Nível 2] Gestão De Usuários E Permissões De Banco.md","[Nível 2] Gestão De Usuários E Permissões De Banco.md"
|
||||
"documentacao bancos de dados\[Nível 2] Gestão de Usuários e Permissões.md","[Nível 2] Gestão de Usuários e Permissões.md"
|
||||
"documentacao bancos de dados\[Nível 2] Instalação E Configuração Base De Bancos De Dados.md","[Nível 2] Instalação E Configuração Base De Bancos De Dados.md"
|
||||
"documentacao bancos de dados\[Nível 2] Instalação e Configuração Base.md","[Nível 2] Instalação e Configuração Base.md"
|
||||
"documentacao bancos de dados\[Nível 2] Manutenção Preventiva E Logs De Banco.md","[Nível 2] Manutenção Preventiva E Logs De Banco.md"
|
||||
"documentacao bancos de dados\[Nível 2] Manutenção Preventiva e Logs.md","[Nível 2] Manutenção Preventiva e Logs.md"
|
||||
"documentacao bancos de dados\[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md","[Nível 3] Arquitetura de Persistência e Troubleshooting Avançado.md"
|
||||
"documentacao bancos de dados\[Nível 3] Tuning de Performance e Otimização.md","[Nível 3] Tuning de Performance e Otimização.md"
|
||||
"documentacao bancos de dados\[Nível 3] Tuning E Performance De Bancos De Dados.md","[Nível 3] Tuning E Performance De Bancos De Dados.md"
|
||||
"documentacao conteineres\[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md","[Nível 0] Docker Para Desenvolvedores E Ferramentas Portáteis.md"
|
||||
"documentacao conteineres\[Nível 1] Deploy E Acesso Ao Portainer Ce.md","[Nível 1] Deploy E Acesso Ao Portainer Ce.md"
|
||||
"documentacao conteineres\[Nível 1] Gestão De Stacks No Portainer.md","[Nível 1] Gestão De Stacks No Portainer.md"
|
||||
"documentacao conteineres\[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md","[Nível 1] Instalação E Configuração Do Docker E Compose (Linux).md"
|
||||
"documentacao conteineres\[Nível 2] Healthchecks E Scripts Automatizados No Docker.md","[Nível 2] Healthchecks E Scripts Automatizados No Docker.md"
|
||||
"documentacao conteineres\[Nível 2] Redes E Firewall No Docker.md","[Nível 2] Redes E Firewall No Docker.md"
|
||||
"documentacao conteineres\[Nível 2] Volumes E Persistência De Dados No Docker.md","[Nível 2] Volumes E Persistência De Dados No Docker.md"
|
||||
"documentacao conteineres\[Nível 3] Docker Swarm Inicialização E Gerenciamento.md","[Nível 3] Docker Swarm Inicialização E Gerenciamento.md"
|
||||
"documentacao conteineres\[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md","[Nível 3] Kubernetes Visão Geral E Ferramentas Básicas.md"
|
||||
"documentacao conteineres\Redes_e_Firewall_Docker.md","Redes_e_Firewall_Docker.md"
|
||||
"documentacao conteineres\Volumes_e_Persistencia_Docker.md","Volumes_e_Persistencia_Docker.md"
|
||||
"documentacao exchange\[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md","[Nível 0] Acesso E Configuração De Webmail E Celular (Exchange).md"
|
||||
"documentacao exchange\[Nível 0] Como Acessar e Configurar Webmail e Celular.md","[Nível 0] Como Acessar e Configurar Webmail e Celular.md"
|
||||
"documentacao exchange\[Nível 0] Como Configurar Resposta Automatica de Ferias.md","[Nível 0] Como Configurar Resposta Automatica de Ferias.md"
|
||||
"documentacao exchange\[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md","[Nível 0] Configuração De Resposta Automática De Férias (Webmail).md"
|
||||
"documentacao exchange\[Nível 1] Criação E Bloqueio De Usuários.md","[Nível 1] Criação E Bloqueio De Usuários.md"
|
||||
"documentacao exchange\[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md","[Nível 1] Diagnostico Basico - Usuario nao recebe e-mail.md"
|
||||
"documentacao exchange\[Nível 1] Diagnóstico De Recebimento.md","[Nível 1] Diagnóstico De Recebimento.md"
|
||||
"documentacao exchange\[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md","[Nível 1] Procedimento de Criacao e Bloqueio de Usuarios.md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md","[Nível 2] Gerenciamento De Cotas E Arquivamento (Exchange).md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento de Cotas e Arquivamento.md","[Nível 2] Gerenciamento de Cotas e Arquivamento.md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md","[Nível 2] Gerenciamento de Quarentena Movel (ActiveSync).md"
|
||||
"documentacao exchange\[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md","[Nível 2] Gerenciamento De Quarentena Móvel (Activesync).md"
|
||||
"documentacao exchange\[Nível 2] Gestao de Permissoes (Full Access e Send As).md","[Nível 2] Gestao de Permissoes (Full Access e Send As).md"
|
||||
"documentacao exchange\[Nível 2] Gestão De Permissões (Full Access E Send As).md","[Nível 2] Gestão De Permissões (Full Access E Send As).md"
|
||||
"documentacao exchange\[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md","[Nível 2] Solucao de Problemas de Lista de Enderecos (OAB).md"
|
||||
"documentacao exchange\[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md","[Nível 2] Solução De Problemas De Lista De Endereços (Oab).md"
|
||||
"documentacao exchange\[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md","[Nível 3] Acesso ao Servidor Windows Core e PowerShell.md"
|
||||
"documentacao exchange\[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md","[Nível 3] Arquitetura Tecnica e Mapeamento de Servidores.md"
|
||||
"documentacao exchange\[Nível 3] Auditoria Administrativa e Logs de Seguranca.md","[Nível 3] Auditoria Administrativa e Logs de Seguranca.md"
|
||||
"documentacao exchange\[Nível 3] Checklist de Manutencao Diaria e Semanal.md","[Nível 3] Checklist de Manutencao Diaria e Semanal.md"
|
||||
"documentacao exchange\[Nível 3] Disaster Recovery e Soft Restore.md","[Nível 3] Disaster Recovery e Soft Restore.md"
|
||||
"documentacao exchange\[Nível 3] Gestao de Conectores e Roteamento de E-mail.md","[Nível 3] Gestao de Conectores e Roteamento de E-mail.md"
|
||||
"documentacao exchange\[Nível 3] Referencia de Operacoes via PowerShell.md","[Nível 3] Referencia de Operacoes via PowerShell.md"
|
||||
"documentacao exchange\[Nível 3] Relatorios Avancados e Manutencao.md","[Nível 3] Relatorios Avancados e Manutencao.md"
|
||||
"documentacao exchange\[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md","[Nível 3] Renovacao de Certificado SSL e Integracao com IIS.md"
|
||||
"documentacao linux\[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md","[Nível 1] Comandos Essenciais De Diagnóstico E Navegação.md"
|
||||
"documentacao linux\[Nível 1] Comandos Essenciais de Diagnóstico.md","[Nível 1] Comandos Essenciais de Diagnóstico.md"
|
||||
"documentacao linux\[Nível 2] Configuração de Rede e Firewall.md","[Nível 2] Configuração de Rede e Firewall.md"
|
||||
"documentacao linux\[Nível 2] Gerenciamento De Pacotes E Atualizações.md","[Nível 2] Gerenciamento De Pacotes E Atualizações.md"
|
||||
"documentacao linux\[Nível 2] Gerenciamento de Pacotes e Updates.md","[Nível 2] Gerenciamento de Pacotes e Updates.md"
|
||||
"documentacao linux\[Nível 2] Gestão de Usuários e Permissões.md","[Nível 2] Gestão de Usuários e Permissões.md"
|
||||
"documentacao linux\[Nível 3] Análise de Logs (Journalctl).md","[Nível 3] Análise de Logs (Journalctl).md"
|
||||
"documentacao linux\[Nível 3] Análise De Logs (SystemdJournalctl).md","[Nível 3] Análise De Logs (SystemdJournalctl).md"
|
||||
"documentacao linux\[Nível 3] Hardening De Servidor Linux.md","[Nível 3] Hardening De Servidor Linux.md"
|
||||
"documentacao linux\[Nível 3] Hardening de Servidor.md","[Nível 3] Hardening de Servidor.md"
|
||||
"documentacao linux\[Nível 3] Scripting e Automação Avançada.md","[Nível 3] Scripting e Automação Avançada.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Customização E Identidade Visual.md","[Nível 2] Customização E Identidade Visual.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Firewall Rules E Nat.md","[Nível 2] Firewall Rules E Nat.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Gerenciamento De Usuários E Ldap.md","[Nível 2] Gerenciamento De Usuários E Ldap.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Instalação E Configuração Inicial.md","[Nível 2] Instalação E Configuração Inicial.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Interfaces, Vlans E Lagg.md","[Nível 2] Interfaces, Vlans E Lagg.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço De Dns (ResolverForwarder).md","[Nível 2] Serviço De Dns (ResolverForwarder).md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md","[Nível 2] Serviço Dhcp E Reservas De Ip (Static Mapping).md"
|
||||
"documentacao rede e seguranca\[Nível 2] Serviço Tftp E Provisionamento.md","[Nível 2] Serviço Tftp E Provisionamento.md"
|
||||
"documentacao rede e seguranca\[Nível 2] Vpn Road Warrior (Openvpn).md","[Nível 2] Vpn Road Warrior (Openvpn).md"
|
||||
"documentacao rede e seguranca\[Nível 3] Diagnóstico Avançado, Shell E Recovery.md","[Nível 3] Diagnóstico Avançado, Shell E Recovery.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md","[Nível 3] Filtro De Conteúdo E Segurança (Pfblockerng).md"
|
||||
"documentacao rede e seguranca\[Nível 3] IdsIps Com Suricata.md","[Nível 3] IdsIps Com Suricata.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Multi.md","[Nível 3] Multi.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Planejamento De Hardware E Sizing.md","[Nível 3] Planejamento De Hardware E Sizing.md"
|
||||
"documentacao rede e seguranca\[Nível 3] Vpn Site.md","[Nível 3] Vpn Site.md"
|
||||
"documentacao storage\[Nível 1] Monitoramento de Saúde de Discos.md","[Nível 1] Monitoramento de Saúde de Discos.md"
|
||||
"documentacao storage\[Nível 2] Gestão De Users, Groups E Acls.md","[Nível 2] Gestão De Users, Groups E Acls.md"
|
||||
"documentacao storage\[Nível 2] Snapshots E Replicação.md","[Nível 2] Snapshots E Replicação.md"
|
||||
"documentacao storage\[Nível 3] Arquitetura ZFS e Planejamento.md","[Nível 3] Arquitetura ZFS e Planejamento.md"
|
||||
"documentacao storage\[Nível 3] Configuração de iSCSI Target.md","[Nível 3] Configuração de iSCSI Target.md"
|
||||
"documentacao storage\[Nível 3] Manutenção E Performance Zfs.md","[Nível 3] Manutenção E Performance Zfs.md"
|
||||
"documentacao virtualizacao\[Nível 1] Visão Geral E Escopo.md","[Nível 1] Visão Geral E Escopo.md"
|
||||
"documentacao vmware\[Nível 1] Monitoramento Básico De Alertas E Recursos.md","[Nível 1] Monitoramento Básico De Alertas E Recursos.md"
|
||||
"documentacao vmware\[Nível 1] Operações De Energia Reiniciar E Desligar.md","[Nível 1] Operações De Energia Reiniciar E Desligar.md"
|
||||
"documentacao vmware\[Nível 1] Verificação Básica De Vm.md","[Nível 1] Verificação Básica De Vm.md"
|
||||
"documentacao vmware\[Nível 1] Visão Geral E Escopo.md","[Nível 1] Visão Geral E Escopo.md"
|
||||
"documentacao vmware\[Nível 2] Gestão De Recursos Computação E Migração.md","[Nível 2] Gestão De Recursos Computação E Migração.md"
|
||||
"documentacao vmware\[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md","[Nível 2] Manutenção E Lifecycle (Ciclo De Vida).md"
|
||||
"documentacao vmware\[Nível 2] Networking E Storage Operacional.md","[Nível 2] Networking E Storage Operacional.md"
|
||||
"documentacao vmware\[Nível 2] Troubleshooting Intermediário.md","[Nível 2] Troubleshooting Intermediário.md"
|
||||
"documentacao vmware\[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md","[Nível 3] Cli E Troubleshooting Avançado (Nível 3).md"
|
||||
"documentacao vmware\[Nível 3] Disaster Recovery E Arquitetura.md","[Nível 3] Disaster Recovery E Arquitetura.md"
|
||||
"documentacao vmware\[Nível 3] Networking Avançado E Conceitos De Nsx.md","[Nível 3] Networking Avançado E Conceitos De Nsx.md"
|
||||
"documentacao vmware\[Nível 3] Storage Deep Dive.md","[Nível 3] Storage Deep Dive.md"
|
||||
"documentacao windows\[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md","[Nível 1] Criação e Gestão do Ciclo de Vida de Usuários (AD).md"
|
||||
"documentacao windows\[Nível 2] Gestão Avançada de DNS e DHCP.md","[Nível 2] Gestão Avançada de DNS e DHCP.md"
|
||||
"documentacao windows\[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md","[Nível 2] Padrões de Senha e Configuração Inicial (Post-Install).md"
|
||||
"documentacao windows\[Nível 2] Padrões De Senha E Configuração Inicial (Post.md","[Nível 2] Padrões De Senha E Configuração Inicial (Post.md"
|
||||
"documentacao windows\[Nível 3] Automação e Relatórios com PowerShell.md","[Nível 3] Automação e Relatórios com PowerShell.md"
|
||||
"documentacao windows\[Nível 3] Diagnóstico de Replicação (DCDIAG).md","[Nível 3] Diagnóstico de Replicação (DCDIAG).md"
|
||||
"documentacao windows\[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md","[Nível 3] Disaster Recovery e Continuidade de Negócios (AD).md"
|
||||
"documentacao windows\[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md","[Nível 3] Gestão Centralizada Via Gpo (Group Policy).md"
|
||||
"documentacao windows\[Nível 3] Gestão Centralizada via GPO.md","[Nível 3] Gestão Centralizada via GPO.md"
|
||||
"documentacao zammad\[Nível 1] Ciclo De Vida Do Ticket E Triagem.md","[Nível 1] Ciclo De Vida Do Ticket E Triagem.md"
|
||||
"documentacao zammad\[Nível 2] Automações E Triggers.md","[Nível 2] Automações E Triggers.md"
|
||||
"documentacao zammad\[Nível 2] Canais De Entrada (EmailChatTelegram).md","[Nível 2] Canais De Entrada (EmailChatTelegram).md"
|
||||
"documentacao zammad\[Nível 2] Gestão De Grupos E Papéis (Roles).md","[Nível 2] Gestão De Grupos E Papéis (Roles).md"
|
||||
"documentacao zammad\[Nível 2] Gestão De Slas E Escalonamentos.md","[Nível 2] Gestão De Slas E Escalonamentos.md"
|
||||
"documentacao zammad\[Nível 2] Instalação E Deploy Zammad.md","[Nível 2] Instalação E Deploy Zammad.md"
|
||||
"documentacao zammad\[Nível 3] Api E Integrações.md","[Nível 3] Api E Integrações.md"
|
||||
"documentacao zammad\[Nível 3] Manutenção, Backup E Restore.md","[Nível 3] Manutenção, Backup E Restore.md"
|
||||
"documentacao zammad\[Nível 3] Planejamento De Infraestrutura E Sizing.md","[Nível 3] Planejamento De Infraestrutura E Sizing.md"
|
||||
|
Loading…
Reference in New Issue