d8d9ac96ac
Workaround for https://bugzilla.redhat.com/1316387 (systemctl preset-all disables but wont enable default.target). QubesOS/qubes-issues#2412
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
%post
|
|
|
|
# preset all services, to not worry about package installation order (preset
|
|
# files vs services)
|
|
systemctl preset-all
|
|
|
|
systemctl enable initial-setup.service
|
|
|
|
# systemctl preset-all disables default target
|
|
# (https://bugzilla.redhat.com/1316387), re-enable it manually
|
|
systemctl set-default graphical.target
|
|
|
|
%end
|