blob: 33dce21eb31cf7cf80ae424ef15bd494a762c6e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
image="$1"
if test "$image" = ""; then
echo "usage: $0 <image>"
exit 1
fi
set -ex
virt-customize -a "$image" --no-network \
--delete /etc/systemd/system/multi-user.target.wants/initial-setup.service \
--delete /etc/systemd/system/graphical.target.wants/initial-setup.service
|