#!/usr/bin/env bash check() { # Tell dracut that this module should only be included if it is required # explicitly. return 255 } depends() { echo dnbd3-rootfs busybox } install() { inst_multiple "/etc/services" "/usr/share/zoneinfo/Europe/Berlin" inst "/usr/share/zoneinfo/Europe/Berlin" "/etc/localtime" slx_service "s3-ntp-sync" "Sync time via NTP" \ --wafter "s3-fetch-config.service" \ --requires "s3-setup-bootif-network.service" \ --after "s3-setup-bootif-network.service" slx_service "s3-configure-timesyncd" "Configure timesyncd in stage 4" \ --wafter "s3-ntp-sync.service" \ --wafter "initrd-root-fs.target" }