You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I set: class {'unattended_upgrades': enable => '1', install_on_shutdown => true, auto => { 'reboot' => false, 'remove' => false, }, }
I get Unattended-Upgrade::InstallOnShutdown "true"; Unattended-Upgrade::Remove-Unused-Dependencies "false";
Setting class {'unattended_upgrades': enable => '1', install_on_shutdown => false, auto => { 'reboot' => false, 'remove' => false, }, }
I get Unattended-Upgrade::InstallOnShutdown "false"; Unattended-Upgrade::Remove-Unused-Dependencies "true";
Why I cannot get updates at shutdown and remove unused dependencies at the same time?
The text was updated successfully, but these errors were encountered:
If I set:
class {'unattended_upgrades':
enable => '1',
install_on_shutdown => true,
auto => { 'reboot' => false, 'remove' => false, },
}
I get
Unattended-Upgrade::InstallOnShutdown "true";
Unattended-Upgrade::Remove-Unused-Dependencies "false";
Setting
class {'unattended_upgrades':
enable => '1',
install_on_shutdown => false,
auto => { 'reboot' => false, 'remove' => false, },
}
I get
Unattended-Upgrade::InstallOnShutdown "false";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
Why I cannot get updates at shutdown and remove unused dependencies at the same time?
The text was updated successfully, but these errors were encountered: