87ebdeefd4
guid doesn't makes sense in /etc/init.d/qubes_netvm
11 lines
248 B
Bash
Executable File
11 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
UPDATEVM=`qvm-get-updatevm`
|
|
|
|
if [ -n "$UPDATEVM" ]; then
|
|
/usr/lib/qubes/qrexec_client -d "$UPDATEVM" -l 'tar c /var/lib/rpm /etc/yum.repos.d' 'root:tar x -C /var/lib/qubes/dom0-updates'
|
|
fi
|
|
|
|
# Ignore errors (eg VM not running)
|
|
exit 0
|