mirror of
https://github.com/systemd/systemd.git
synced 2025-01-23 02:04:32 +03:00
7 lines
158 B
Plaintext
7 lines
158 B
Plaintext
|
#!/bin/bash
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
set -e
|
||
|
|
||
|
RTC="$(date -u +%Y-%m-%dT%H:%M:%S -d "+3 days")"
|
||
|
jq ".QemuArgs += [\"-rtc\", \"base=$RTC\"]"
|