populate debian role

This commit is contained in:
2026-04-04 00:34:28 +02:00
parent c751e3c15b
commit 6febd51fda
4 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// Automaticaly reboot after upgrade
Unattended-Upgrade::Auto-Reboot "true";
// Reboot even with logged in users
Unattended-Upgrade::Automatic-Reboot-WithUsers "true";
// Remove dependencies that become useless after upgrade
Unattended-Upgrade::Remove-New-Unused-Dependencies "true";
// Remove unused dependencies after upgrade
Unattended-Upgrade::Remove-Unused-Dependencies "true";
// Enable logging to syslog
Unattended-Upgrade::SyslogEnable "true";

Binary file not shown.

View File

@@ -0,0 +1,5 @@
#!/bin/sh
# Managed by Ansible run fastfetch on SSH login
if [ -n "${SSH_CLIENT}${SSH_CONNECTION}" ]; then
fastfetch -c /etc/fastfetch/27.jsonc
fi