BackupPC Agent for WAPT
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

12 righe
502 B

@echo off
IF NOT EXIST "%USERPROFILE%\.ssh" mkdir "%USERPROFILE%\.ssh"
IF EXIST "%USERPROFILE%\.ssh\authorized_keys" del /q "%USERPROFILE%\.ssh\authorized_keys"
{% for key in ssh_keys %}
echo {{ key }} >> "%USERPROFILE%\.ssh\authorized_keys"
{% endfor %}
{% if ssh_keys | length > 0 %}
icacls.exe "%USERPROFILE%\.ssh\authorized_keys" /grant:r lbkp:F
icacls.exe "%USERPROFILE%\.ssh\authorized_keys" /grant:r SYSTEM:F
icacls.exe "%USERPROFILE%\.ssh\authorized_keys" /inheritance:r
{% endif %}