#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# Univention Updater
# read the maintenance settings
#
# Copyright 2004-2022 Univention GmbH
#
# https://www.univention.de/
#
# All rights reserved.
#
# The source code of this program is made available
# under the terms of the GNU Affero General Public License version 3
# (GNU AGPL V3) as published by the Free Software Foundation.
#
# Binary versions of this program provided by Univention to you as
# well as other copyrighted, protected or trademarked materials like
# Logos, graphics, fonts, specific documentations and configurations,
# cryptographic keys etc. are subject to a license agreement between
# you and Univention and not subject to the GNU AGPL V3.
#
# In the case you use this program under the terms of the GNU AGPL V3,
# the program is provided in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License with the Debian GNU/Linux or Univention distribution in file
# /usr/share/common-licenses/AGPL-3; if not, see
# <https://www.gnu.org/licenses/>.
import os
from sys import exit
from shlex import quote
from typing import Dict, List
from univention.config_registry import ConfigRegistry
from univention.lib.policy_result import PolicyResultFailed, policy_result
# Name of the cron.d file
CRON_D = '/etc/cron.d/univention-maintenance'
[docs]def write_cron_job(configRegistry: ConfigRegistry, cron: str, updateto: str, reboot: str, try_release_update: bool) -> None:
with open(CRON_D, 'w') as file:
file.write('# cron job for update\n')
file.write('PATH=/sbin:/usr/sbin:/usr/bin:/bin\n')
if cron == '* * * * * ':
return
cmd = ['/usr/sbin/jitter 600 true']
if try_release_update:
cmd.append(
'/usr/share/univention-updater/univention-updater %s %s --silent --noninteractive' % (
'local' if configRegistry.is_true('local/repository') else 'net',
'--updateto=%s' % (quote(updateto),) if updateto else '',
))
cmd.append('/usr/share/univention-updater/univention-actualise --dist-upgrade --silent')
if reboot:
cmd.append(
'if [ -f /run/univention-updater-reboot ];then '
'at -f /var/lib/univention-updater/reboot.at -- %s 2>/dev/null;'
'rm -f /run/univention-updater-reboot;'
'fi' % (
quote(reboot),))
print('%s\troot\t%s' % (cron, ';'.join(cmd)), file=file)
[docs]def one(results: Dict[str, List[str]], key: str) -> str:
try:
return results[key][0]
except LookupError:
return ""
[docs]def main() -> None:
if os.path.exists(CRON_D):
os.unlink(CRON_D)
configRegistry = ConfigRegistry()
configRegistry.load()
ldap_hostdn = configRegistry.get('ldap/hostdn')
if not ldap_hostdn:
return
try:
results, _policies = policy_result(ldap_hostdn)
except PolicyResultFailed as ex:
exit('failed to execute univention_policy_result: %s' % ex)
cron_active = one(results, "univentionCronActive") == "1"
cron = one(results, "univentionCron")
updateto = one(results, "univentionUpdateVersion")
reboot = one(results, "univentionInstallationReboot")
try_release_update = one(results, "univentionUpdateActivate") == "TRUE"
if cron_active and cron:
write_cron_job(configRegistry, cron, updateto, reboot, try_release_update)
if __name__ == "__main__":
main()