core-agent.spec.in 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. #
  2. # The Qubes OS Project, http://www.qubes-os.org
  3. #
  4. # Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
  5. # Copyright (C) 2010 Rafal Wojtczuk <rafal@invisiblethingslab.com>
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. #
  21. #
  22. %define qubes_services qubes-core qubes-core-netvm qubes-core-early qubes-firewall qubes-iptables qubes-updates-proxy qubes-updates-proxy-forwarder
  23. %define qubes_preset_file 75-qubes-vm.preset
  24. # systemd is used in Fedora and CentOS
  25. %if 0%{?fedora} || 0%{?rhel}
  26. %define with_sysvinit 0
  27. %else
  28. %define with_sysvinit 1
  29. %endif
  30. %if 0%{?rhel} == 8
  31. %define plateform_python3_sitelib %(/usr/libexec/platform-python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib())')
  32. %endif
  33. %define scriptletfuns is_static() { \
  34. [ -f "%{_unitdir}/$1" ] && ! grep -q '^[[].nstall]' "%{_unitdir}/$1" \
  35. } \
  36. \
  37. is_masked() { \
  38. if [ ! -L %{_sysconfdir}/systemd/system/"$1" ] \
  39. then \
  40. return 1 \
  41. fi \
  42. target=`readlink %{_sysconfdir}/systemd/system/"$1" 2>/dev/null` || : \
  43. if [ "$target" = "/dev/null" ] \
  44. then \
  45. return 0 \
  46. fi \
  47. return 1 \
  48. } \
  49. \
  50. mask() { \
  51. ln -sf /dev/null %{_sysconfdir}/systemd/system/"$1" \
  52. } \
  53. \
  54. unmask() { \
  55. if ! is_masked "$1" \
  56. then \
  57. return 0 \
  58. fi \
  59. rm -f %{_sysconfdir}/systemd/system/"$1" \
  60. } \
  61. \
  62. preset_units() { \
  63. local represet= \
  64. cat "$1" | while read action unit_name \
  65. do \
  66. if [ "$action" = "#" -a "$unit_name" = "Units below this line will be re-preset on package upgrade" ] \
  67. then \
  68. represet=1 \
  69. continue \
  70. fi \
  71. echo "$action $unit_name" | grep -q '^[[:space:]]*[^#;]' || continue \
  72. [ -n "$action" -a -n "$unit_name" ] || continue \
  73. if [ "$2" = "initial" -o "$represet" = "1" ] \
  74. then \
  75. if [ "$action" = "disable" ] && is_static "$unit_name" \
  76. then \
  77. if ! is_masked "$unit_name" \
  78. then \
  79. # We must effectively mask these units, even if they are static. \
  80. mask "$unit_name" \
  81. fi \
  82. elif [ "$action" = "enable" ] && is_static "$unit_name" \
  83. then \
  84. if is_masked "$unit_name" \
  85. then \
  86. # We masked this static unit before, now we unmask it. \
  87. unmask "$unit_name" \
  88. fi \
  89. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  90. else \
  91. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  92. fi \
  93. fi \
  94. done \
  95. } \
  96. \
  97. restore_units() { \
  98. grep '^[[:space:]]*[^#;]' "$1" | while read action unit_name \
  99. do \
  100. if is_static "$unit_name" && is_masked "$unit_name" \
  101. then \
  102. # If the unit had been masked by us, we must unmask it here. \
  103. # Otherwise systemctl preset will fail badly. \
  104. unmask "$unit_name" \
  105. fi \
  106. systemctl --no-reload preset "$unit_name" >/dev/null 2>&1 || : \
  107. done \
  108. } \
  109. Name: qubes-core-agent
  110. Version: @VERSION@
  111. Release: 1%{dist}
  112. Summary: The QubesOS core files for VMs
  113. Group: Qubes
  114. Vendor: Invisible Things Lab
  115. License: GPL
  116. URL: https://www.qubes-os.org
  117. Conflicts: firewalld
  118. Requires: xdg-utils
  119. Requires: qubes-utils >= 3.1.3
  120. Requires: qubes-utils-libs >= 4.0.16
  121. Requires: initscripts
  122. Requires: gawk
  123. Requires: sed
  124. Requires: util-linux
  125. Requires: e2fsprogs
  126. Requires: hostname
  127. # for Qubes Manager VM updater
  128. Requires: xterm
  129. # for qubes-desktop-run
  130. Requires: python%{python3_pkgversion}-gobject-base
  131. Requires: python%{python3_pkgversion}-dbus
  132. # for qubes-session-autostart, xdg-icon
  133. Requires: python%{python3_pkgversion}-pyxdg
  134. Requires: python%{python3_pkgversion}-daemon
  135. # for qvm-feature-request
  136. Requires: python%{python3_pkgversion}-qubesdb
  137. # for qubes.ShowInTerminal RPC service
  138. Requires: socat
  139. Requires: ImageMagick
  140. Requires: librsvg2-tools
  141. Requires: zenity
  142. Requires: dconf
  143. Requires: qubes-core-qrexec-vm
  144. Requires: qubes-libvchan
  145. Requires: qubes-db-vm
  146. %if 0%{?rhel} == 8
  147. # we need to stick to related DNF python version
  148. # which is python3.6 by default
  149. Requires: python3-dnf-plugins-qubes-hooks
  150. %else
  151. Requires: python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  152. %endif
  153. Requires: python%{python3_pkgversion}-setuptools
  154. # for qubes.ResizeDisk
  155. Requires: parted
  156. Obsoletes: qubes-core-vm-kernel-placeholder <= 1.0
  157. Obsoletes: qubes-upgrade-vm < 3.2
  158. Provides: qubes-core-vm = %{version}-%{release}
  159. Obsoletes: qubes-core-vm < 4.0.0
  160. Provides: qubes-core-vm-doc = %{version}-%{release}
  161. Obsoletes: qubes-core-vm-doc < 4.0.0
  162. Conflicts: qubes-gui-agent < 4.1.6
  163. BuildRequires: gcc
  164. BuildRequires: pandoc
  165. BuildRequires: xen-devel
  166. BuildRequires: libX11-devel
  167. BuildRequires: qubes-utils-devel >= 3.1.3
  168. BuildRequires: qubes-libvchan-@BACKEND_VMM@-devel
  169. BuildRequires: pam-devel
  170. BuildRequires: python%{python3_pkgversion}-setuptools
  171. BuildRequires: systemd
  172. %if 0%{?rhel} >= 8
  173. BuildRequires: redhat-lsb
  174. %endif
  175. Source0: %{name}-%{version}.tar.gz
  176. %description
  177. The Qubes core files for installation inside a Qubes VM.
  178. %package -n python2-dnf-plugins-qubes-hooks
  179. Summary: DNF plugin for Qubes specific post-installation actions
  180. BuildRequires: python2-devel
  181. %{?python_provide:%python_provide python2-dnf-plugins-qubes-hooks}
  182. %description -n python2-dnf-plugins-qubes-hooks
  183. DNF plugin for Qubes specific post-installation actions:
  184. * notify dom0 that updates were installed
  185. * refresh applications shortcut list
  186. %if 0%{?rhel} == 8
  187. %package -n python3-dnf-plugins-qubes-hooks
  188. Summary: DNF plugin for Qubes specific post-installation actions
  189. BuildRequires: python3-devel
  190. %description -n python3-dnf-plugins-qubes-hooks
  191. DNF plugin for Qubes specific post-installation actions:
  192. * notify dom0 that updates were installed
  193. * refresh applications shortcut list
  194. %else
  195. %package -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  196. Summary: DNF plugin for Qubes specific post-installation actions
  197. BuildRequires: python%{python3_pkgversion}-devel
  198. %{?python_provide:%python_provide python%{python3_pkgversion}-dnf-plugins-qubes-hooks}
  199. %description -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  200. DNF plugin for Qubes specific post-installation actions:
  201. * notify dom0 that updates were installed
  202. * refresh applications shortcut list
  203. %endif
  204. %package nautilus
  205. Summary: Qubes integration for Nautilus
  206. Requires: qubes-core-agent = %{version}
  207. Requires: nautilus-python
  208. Conflicts: qubes-core-vm < 4.0.0
  209. %description nautilus
  210. Nautilus addons for inter-VM file copy/move/open.
  211. %package dom0-updates
  212. Summary: Scripts required to handle dom0 updates
  213. Requires: qubes-core-agent = %{version}
  214. Requires: fakeroot
  215. Conflicts: qubes-core-vm < 4.0.0
  216. Requires: tar
  217. %description dom0-updates
  218. Scripts required to handle dom0 updates.
  219. %package networking
  220. Summary: Networking support for Qubes VM
  221. Requires: ethtool
  222. Requires: iptables
  223. Requires: conntrack-tools
  224. Requires: net-tools
  225. Requires: iproute
  226. Requires: nftables
  227. Requires: socat
  228. Requires: qubes-core-agent = %{version}
  229. Requires: tinyproxy
  230. Conflicts: qubes-core-vm < 4.0.0
  231. %description networking
  232. This package provides:
  233. * basic network functionality (setting IP address, DNS, default gateway)
  234. * proxy service used by TemplateVMs to download updates
  235. * qubes-firewall service (FirewallVM)
  236. Note: if you want to use NetworkManager (you do want it in NetVM), install also
  237. qubes-core-agent-network-manager.
  238. %package network-manager
  239. Summary: NetworkManager integration for Qubes VM
  240. # to show/hide nm-applet
  241. Requires: NetworkManager >= 0.8.1-1
  242. Requires: glib2
  243. Requires: polkit
  244. Requires: qubes-core-agent-networking = %{version}
  245. Conflicts: qubes-core-vm < 4.0.0
  246. %description network-manager
  247. Integration of NetworkManager for Qubes VM:
  248. * make connections config persistent
  249. * adjust DNS redirections when needed
  250. * show/hide NetworkManager applet icon
  251. %package passwordless-root
  252. Summary: Passwordless root access from normal user
  253. Conflicts: qubes-core-vm < 4.0.0
  254. %description passwordless-root
  255. Configure sudo, PolicyKit and similar tool to not ask for any password when
  256. switching from user to root. Since all the user data in a VM is accessible
  257. already from normal user account, there is not much more to guard there. Qubes
  258. VM is a single user system.
  259. %package thunar
  260. Summary: Thunar support for Qubes VM tools
  261. Requires: Thunar
  262. %description thunar
  263. Thunar support for Qubes VM tools
  264. %define kde_service_dir /usr/share/kde4/services
  265. %define kde5_service_dir /usr/share/kservices5/ServiceMenus
  266. %prep
  267. %setup -q
  268. %build
  269. %{?set_build_flags}
  270. for dir in qubes-rpc misc; do
  271. make -C $dir BACKEND_VMM=@BACKEND_VMM@
  272. done
  273. make -C doc manpages
  274. %pre
  275. # Make sure there is a qubes group
  276. groupadd --force --system --gid 98 qubes
  277. id -u 'user' >/dev/null 2>&1 || {
  278. useradd --user-group --create-home --shell /bin/bash user
  279. }
  280. usermod -a --groups qubes user
  281. if [ "$1" != 1 ] ; then
  282. # do this whole %%pre thing only when updating for the first time...
  283. exit 0
  284. fi
  285. mkdir -p /var/lib/qubes
  286. if [ -e /etc/fstab ] ; then
  287. mv /etc/fstab /var/lib/qubes/fstab.orig
  288. fi
  289. usermod -L user
  290. %pre passwordless-root
  291. usermod -L root
  292. %install
  293. make install-vm PYTHON=%{__python3} DESTDIR=$RPM_BUILD_ROOT SYSTEM_DROPIN_DIR=%{_unitdir} SYSLIBDIR=/usr/lib
  294. make -C app-menu DESTDIR=$RPM_BUILD_ROOT install
  295. make -C boot/redhat DESTDIR=$RPM_BUILD_ROOT install
  296. make -C config-overrides DESTDIR=$RPM_BUILD_ROOT install
  297. make -C filesystem DESTDIR=$RPM_BUILD_ROOT install
  298. make -C misc DESTDIR=$RPM_BUILD_ROOT install
  299. make -C network DESTDIR=$RPM_BUILD_ROOT install
  300. make -C passwordless-root DESTDIR=$RPM_BUILD_ROOT install install-rh
  301. make -C qubes-rpc DESTDIR=$RPM_BUILD_ROOT install
  302. make -C qubes-rpc/kde DESTDIR=$RPM_BUILD_ROOT install
  303. make -C qubes-rpc/nautilus DESTDIR=$RPM_BUILD_ROOT install
  304. make -C qubes-rpc/thunar DESTDIR=$RPM_BUILD_ROOT install
  305. make -C package-managers PYTHON=%{__python3} DESTDIR=$RPM_BUILD_ROOT install install-dnf
  306. %if 0%{?rhel} == 7
  307. make -C package-managers DESTDIR=$RPM_BUILD_ROOT install-yum
  308. %endif
  309. %if 0%{?rhel} >= 7
  310. sed -i \
  311. -e 's:-primary:-centos:' \
  312. -e 's:/fc:/centos:' \
  313. $RPM_BUILD_ROOT/etc/yum.repos.d/qubes-*.repo
  314. %endif
  315. install -D -m 0644 boot/dracut-qubes.conf $RPM_BUILD_ROOT/usr/lib/dracut/dracut.conf.d/30-qubes.conf
  316. install -D -m 0644 boot/grub.qubes $RPM_BUILD_ROOT/etc/default/grub.qubes
  317. %if ! %with_sysvinit
  318. rm -rf $RPM_BUILD_ROOT/etc/init.d/qubes-* $RPM_BUILD_ROOT/etc/sysconfig/modules/qubes-core.modules
  319. %endif
  320. %triggerin -- initscripts
  321. if [ -e /etc/init/serial.conf ]; then
  322. cp /usr/share/qubes/serial.conf /etc/init/serial.conf
  323. fi
  324. %triggerin -- grub2-tools
  325. if ! grep -q /etc/default/grub.qubes /etc/default/grub 2>/dev/null; then
  326. # do not keep Qubes-related settings directly in user-controlled config,
  327. # include another file
  328. echo '. /etc/default/grub.qubes' >> /etc/default/grub
  329. fi
  330. %triggerin passwordless-root -- util-linux
  331. qubesfile=/etc/pam.d/su.qubes
  332. origfile=${qubesfile%.qubes}
  333. backupfile=${origfile}.qubes-orig
  334. if [ -r "$origfile" -a ! -r "$backupfile" ]; then
  335. mv -f "$origfile" "$backupfile"
  336. fi
  337. ln -sf "$qubesfile" "$origfile"
  338. %post
  339. # disable some Upstart services
  340. for F in plymouth-shutdown prefdm splash-manager start-ttys tty ; do
  341. if [ -e /etc/init/$F.conf ]; then
  342. mv -f /etc/init/$F.conf /etc/init/$F.conf.disabled
  343. fi
  344. done
  345. chgrp user /var/lib/qubes/dom0-updates
  346. # Remove old firmware updates link
  347. if [ -L /lib/firmware/updates ]; then
  348. rm -f /lib/firmware/updates
  349. fi
  350. # convert /usr/local symlink to a mount point
  351. if [ -L /usr/local ]; then
  352. rm -f /usr/local
  353. mkdir /usr/local
  354. mount /usr/local || :
  355. fi
  356. # workaround for Fedora's systemd package bug
  357. # https://bugzilla.redhat.com/1559286
  358. if [ -d /var/lib/private ]; then
  359. chmod 700 /var/lib/private
  360. fi
  361. if test -f /etc/yum.conf && ! grep -q '/etc/yum\.conf\.d/qubes-proxy\.conf' /etc/yum.conf; then
  362. echo >> /etc/yum.conf
  363. echo '# Yum does not support inclusion of config dir...' >> /etc/yum.conf
  364. echo 'include=file:///etc/yum.conf.d/qubes-proxy.conf' >> /etc/yum.conf
  365. fi
  366. if ! [ -r /etc/dconf/profile/user ]; then
  367. mkdir -p /etc/dconf/profile
  368. echo "user-db:user" >> /etc/dconf/profile/user
  369. echo "system-db:local" >> /etc/dconf/profile/user
  370. fi
  371. dconf update &> /dev/null || :
  372. # And actually setup the proxy usage in package managers
  373. /usr/lib/qubes/update-proxy-configs
  374. # Location of files which contains list of protected files
  375. mkdir -p /etc/qubes/protected-files.d
  376. . /usr/lib/qubes/init/functions
  377. # qubes-core-vm has been broken for some time - it overrides /etc/hosts; restore original content
  378. if ! is_protected_file /etc/hosts ; then
  379. if ! grep -q localhost /etc/hosts; then
  380. cat <<EOF > /etc/hosts
  381. 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 `hostname`
  382. ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
  383. EOF
  384. fi
  385. fi
  386. # ensure that hostname resolves to 127.0.0.1 resp. ::1 and that /etc/hosts is
  387. # in the form expected by qubes-sysinit.sh
  388. if ! is_protected_file /etc/hostname ; then
  389. for ip in '127\.0\.0\.1' '::1'; do
  390. if grep -q "^${ip}\(\s\|$\)" /etc/hosts; then
  391. sed -i "/^${ip}\s/,+0s/\(\s`hostname`\)\+\(\s\|$\)/\2/g" /etc/hosts
  392. sed -i "s/^${ip}\(\s\|$\).*$/\0 `hostname`/" /etc/hosts
  393. else
  394. echo "${ip} `hostname`" >> /etc/hosts
  395. fi
  396. done
  397. fi
  398. if [ "$1" != 1 ] ; then
  399. # do the rest of %%post thing only when updating for the first time...
  400. exit 0
  401. fi
  402. if [ -e /etc/init/serial.conf ] && ! [ -f /var/lib/qubes/serial.orig ] ; then
  403. cp /etc/init/serial.conf /var/lib/qubes/serial.orig
  404. fi
  405. # Remove most of the udev scripts to speed up the VM boot time
  406. # Just leave the xen* scripts, that are needed if this VM was
  407. # ever used as a net backend (e.g. as a VPN domain in the future)
  408. #echo "--> Removing unnecessary udev scripts..."
  409. mkdir -p /var/lib/qubes/removed-udev-scripts
  410. for f in /etc/udev/rules.d/*
  411. do
  412. if [ $(basename $f) == "xen-backend.rules" ] ; then
  413. continue
  414. fi
  415. if echo $f | grep -q qubes; then
  416. continue
  417. fi
  418. mv $f /var/lib/qubes/removed-udev-scripts/
  419. done
  420. mkdir -p /rw
  421. #rm -f /etc/mtab
  422. #echo "--> Removing HWADDR setting from /etc/sysconfig/network-scripts/ifcfg-eth0"
  423. #mv /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0.orig
  424. #grep -v HWADDR /etc/sysconfig/network-scripts/ifcfg-eth0.orig > /etc/sysconfig/network-scripts/ifcfg-eth0
  425. %triggerin -- notification-daemon
  426. # Enable autostart of notification-daemon when installed
  427. if [ ! -e /etc/xdg/autostart/notification-daemon.desktop ]; then
  428. ln -s /usr/share/applications/notification-daemon.desktop /etc/xdg/autostart/
  429. fi
  430. exit 0
  431. %triggerin -- selinux-policy
  432. . /usr/lib/qubes/init/functions
  433. if ! is_protected_file /etc/selinux/config; then
  434. echo "--> Disabling SELinux..."
  435. sed -e s/^SELINUX=.*$/SELINUX=disabled/ </etc/selinux/config >/etc/selinux/config.processed
  436. mv /etc/selinux/config.processed /etc/selinux/config
  437. setenforce 0 2>/dev/null
  438. fi
  439. exit 0
  440. %post network-manager
  441. # Create NetworkManager configuration if we do not have it
  442. if ! [ -e /etc/NetworkManager/NetworkManager.conf ]; then
  443. echo '[main]' > /etc/NetworkManager/NetworkManager.conf
  444. echo 'plugins = keyfile' >> /etc/NetworkManager/NetworkManager.conf
  445. echo '[keyfile]' >> /etc/NetworkManager/NetworkManager.conf
  446. fi
  447. # Remove ip_forward setting from sysctl, so NM will not reset it
  448. sed 's/^net.ipv4.ip_forward.*/#\0/' -i /etc/sysctl.conf
  449. /usr/lib/qubes/qubes-fix-nm-conf.sh
  450. %post networking
  451. %systemd_post qubes-firewall.service
  452. %systemd_post qubes-iptables.service
  453. %systemd_post qubes-network.service
  454. %systemd_post qubes-network-uplink.service
  455. %systemd_post qubes-updates-proxy.service
  456. %post thunar
  457. if [ "$1" = 1 ]; then
  458. # There is no system-wide Thunar custom actions. There is only a default
  459. # file and a user file created from the default one. Qubes actions need
  460. # to be placed after all already defined actions and before </actions>
  461. # the end of file.
  462. if [ -f /etc/xdg/Thunar/uca.xml ] ; then
  463. cp -p /etc/xdg/Thunar/uca.xml{,.bak}
  464. sed -i '$e cat /usr/lib/qubes/uca_qubes.xml' /etc/xdg/Thunar/uca.xml
  465. fi
  466. if [ -f /home/user/.config/Thunar/uca.xml ] ; then
  467. cp -p /home/user/.config/Thunar/uca.xml{,.bak}
  468. sed -i '$e cat /usr/lib/qubes/uca_qubes.xml' /home/user/.config/Thunar/uca.xml
  469. fi
  470. fi
  471. %preun
  472. if [ "$1" = 0 ] ; then
  473. # no more packages left
  474. if [ -e /var/lib/qubes/fstab.orig ] ; then
  475. mv /var/lib/qubes/fstab.orig /etc/fstab
  476. fi
  477. mv /var/lib/qubes/removed-udev-scripts/* /etc/udev/rules.d/
  478. if [ -e /var/lib/qubes/serial.orig ] ; then
  479. mv /var/lib/qubes/serial.orig /etc/init/serial.conf
  480. fi
  481. fi
  482. %preun networking
  483. %systemd_preun qubes-firewall.service
  484. %systemd_preun qubes-iptables.service
  485. %systemd_preun qubes-network.service
  486. %systemd_preun qubes-updates-proxy.service
  487. %postun thunar
  488. if [ "$1" = 0 ]; then
  489. if [ -f /etc/xdg/Thunar/uca.xml ] ; then
  490. mv /etc/xdg/Thunar/uca.xml{,.uninstall}
  491. mv /etc/xdg/Thunar/uca.xml{.bak,}
  492. fi
  493. if [ -f /home/user/.config/Thunar/uca.xml ] ; then
  494. mv /home/user/.config/Thunar/uca.xml{,.uninstall}
  495. mv /home/user/.config/Thunar/uca.xml{.bak,}
  496. fi
  497. fi
  498. %postun
  499. if [ $1 -eq 0 ] ; then
  500. /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  501. if [ -L /lib/firmware/updates ]; then
  502. rm /lib/firmware/updates
  503. fi
  504. rm -rf /var/lib/qubes/xdg
  505. fi
  506. %postun passwordless-root
  507. if [ $1 -eq 0 ]; then
  508. usermod -p '*' root
  509. fi
  510. qubesfile=/etc/pam.d/su.qubes
  511. origfile=${qubesfile%.qubes}
  512. backupfile=${origfile}.qubes-orig
  513. if [ -f "$backupfile" ]; then
  514. mv -f "$backupfile" "$origfile"
  515. fi
  516. %posttrans
  517. /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
  518. %clean
  519. rm -rf $RPM_BUILD_ROOT
  520. rm -f %{name}-%{version}
  521. %files
  522. %defattr(-,root,root,-)
  523. %dir /var/lib/qubes
  524. %{kde_service_dir}/qvm-copy.desktop
  525. %{kde_service_dir}/qvm-move.desktop
  526. %{kde_service_dir}/qvm-dvm.desktop
  527. %{kde5_service_dir}/qvm-copy.desktop
  528. %{kde5_service_dir}/qvm-move.desktop
  529. %{kde5_service_dir}/qvm-dvm.desktop
  530. /etc/fstab
  531. /etc/pki/rpm-gpg/RPM-GPG-KEY-qubes*
  532. %dir /etc/qubes-rpc
  533. %config(noreplace) /etc/qubes-rpc/qubes.ShowInTerminal
  534. %config(noreplace) /etc/qubes-rpc/qubes.Filecopy
  535. %config(noreplace) /etc/qubes-rpc/qubes.OpenInVM
  536. %config(noreplace) /etc/qubes-rpc/qubes.OpenURL
  537. %config(noreplace) /etc/qubes-rpc/qubes.GetAppmenus
  538. %config(noreplace) /etc/qubes-rpc/qubes.ConnectTCP
  539. %config(noreplace) /etc/qubes-rpc/qubes.VMShell
  540. %config(noreplace) /etc/qubes-rpc/qubes.VMExec
  541. %config(noreplace) /etc/qubes-rpc/qubes.VMExecGUI
  542. %config(noreplace) /etc/qubes-rpc/qubes.VMRootShell
  543. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPre
  544. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPreAll
  545. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPost
  546. %config(noreplace) /etc/qubes-rpc/qubes.SuspendPostAll
  547. %config(noreplace) /etc/qubes-rpc/qubes.WaitForSession
  548. %config(noreplace) /etc/qubes-rpc/qubes.DetachPciDevice
  549. %config(noreplace) /etc/qubes-rpc/qubes.Backup
  550. %config(noreplace) /etc/qubes-rpc/qubes.Restore
  551. %config(noreplace) /etc/qubes-rpc/qubes.RegisterBackupLocation
  552. %config(noreplace) /etc/qubes-rpc/qubes.RestoreById
  553. %config(noreplace) /etc/qubes-rpc/qubes.SelectFile
  554. %config(noreplace) /etc/qubes-rpc/qubes.SelectDirectory
  555. %config(noreplace) /etc/qubes-rpc/qubes.GetImageRGBA
  556. %config(noreplace) /etc/qubes-rpc/qubes.SetDateTime
  557. %config(noreplace) /etc/qubes-rpc/qubes.InstallUpdatesGUI
  558. %config(noreplace) /etc/qubes-rpc/qubes.ResizeDisk
  559. %config(noreplace) /etc/qubes-rpc/qubes.StartApp
  560. %config(noreplace) /etc/qubes-rpc/qubes.PostInstall
  561. %config(noreplace) /etc/qubes-rpc/qubes.GetDate
  562. %config(noreplace) /etc/qubes-rpc/qubes.TemplateSearch
  563. %config(noreplace) /etc/qubes-rpc/qubes.TemplateDownload
  564. %config(noreplace) /etc/qubes/rpc-config/qubes.OpenInVM
  565. %config(noreplace) /etc/qubes/rpc-config/qubes.OpenURL
  566. %config(noreplace) /etc/qubes/rpc-config/qubes.SelectFile
  567. %config(noreplace) /etc/qubes/rpc-config/qubes.SelectDirectory
  568. %config(noreplace) /etc/qubes/rpc-config/qubes.ShowInTerminal
  569. %config(noreplace) /etc/qubes/rpc-config/qubes.StartApp
  570. %config(noreplace) /etc/qubes/rpc-config/qubes.InstallUpdatesGUI
  571. %config(noreplace) /etc/qubes/rpc-config/qubes.VMShell+WaitForSession
  572. %config(noreplace) /etc/qubes/rpc-config/qubes.VMExecGUI
  573. %config(noreplace) /etc/default/grub.qubes
  574. %dir /etc/qubes/autostart
  575. /etc/qubes/autostart/README.txt
  576. %config /etc/qubes/autostart/*.desktop.d/30_qubes.conf
  577. %dir /etc/qubes/applications
  578. /etc/qubes/applications/README.txt
  579. %config /etc/qubes/applications/*.desktop.d/30_qubes.conf
  580. %dir /etc/qubes/suspend-pre.d
  581. /etc/qubes/suspend-pre.d/README
  582. %dir /etc/qubes/suspend-post.d
  583. /etc/qubes/suspend-post.d/README
  584. /etc/qubes/suspend-post.d/qvm-sync-clock.sh
  585. %dir /etc/qubes/post-install.d
  586. /etc/qubes/post-install.d/README
  587. /etc/qubes/post-install.d/*.sh
  588. %config(noreplace) /etc/profile.d/qt_x11_no_mitshm.sh
  589. %config(noreplace) /etc/sudoers.d/qt_x11_no_mitshm
  590. %config(noreplace) /etc/sudoers.d/umask
  591. %config(noreplace) /etc/sysctl.d/20_tcp_timestamps.conf
  592. %config(noreplace) /etc/qubes-suspend-module-blacklist
  593. %config(noreplace) /etc/yum.conf.d/qubes-proxy.conf
  594. %config(noreplace) /etc/yum.repos.d/qubes-r4.repo
  595. %if 0%{?rhel} == 7
  596. /etc/yum/pluginconf.d/yum-qubes-hooks.conf
  597. /usr/lib/yum-plugins/yum-qubes-hooks.py*
  598. %endif
  599. %config(noreplace) /etc/dnf/plugins/qubes-hooks.conf
  600. %config(noreplace) /etc/dconf/db/local.d/dpi
  601. /lib/udev/rules.d/50-qubes-mem-hotplug.rules
  602. /usr/lib/systemd/system/user@.service.d/90-session-stop-timeout.conf
  603. /usr/sbin/qubes-serial-login
  604. /usr/bin/qvm-copy-to-vm
  605. /usr/bin/qvm-move-to-vm
  606. /usr/bin/qvm-copy
  607. /usr/bin/qvm-move
  608. /usr/bin/qvm-open-in-dvm
  609. /usr/bin/qvm-open-in-vm
  610. /usr/bin/qvm-run-vm
  611. /usr/bin/qvm-features-request
  612. /usr/bin/qvm-sync-clock
  613. /usr/bin/qubes-desktop-run
  614. /usr/bin/qubes-run-terminal
  615. /usr/bin/qubes-run-gnome-terminal
  616. /usr/bin/qubes-open
  617. /usr/bin/qubes-session-autostart
  618. /usr/bin/qvm-connect-tcp
  619. /usr/bin/qubes-vmexec
  620. %dir /usr/lib/qubes
  621. /usr/lib/qubes/prepare-suspend
  622. /usr/lib/qubes/qfile-agent
  623. %attr(4755,root,root) /usr/lib/qubes/qfile-unpacker
  624. /usr/lib/qubes/qopen-in-vm
  625. /usr/lib/qubes/qrun-in-vm
  626. /usr/lib/qubes/qubes-trigger-sync-appmenus.sh
  627. /usr/lib/qubes/qvm-copy-to-vm.gnome
  628. /usr/lib/qubes/qvm-copy-to-vm.kde
  629. /usr/lib/qubes/qvm-move-to-vm.gnome
  630. /usr/lib/qubes/qvm-move-to-vm.kde
  631. /usr/lib/qubes/tar2qfile
  632. /usr/lib/qubes/vm-file-editor
  633. /usr/lib/qubes/xdg-icon
  634. /usr/lib/qubes/update-proxy-configs
  635. /usr/lib/qubes/upgrades-installed-check
  636. /usr/lib/qubes/upgrades-status-notify
  637. /usr/lib/qubes/qubes-sync-clock
  638. /usr/lib/qubes/resize-rootfs
  639. /usr/lib/qubes/tinyproxy-wrapper
  640. /usr/lib/qubes/qvm-template-repo-query
  641. /usr/lib/dracut/dracut.conf.d/30-qubes.conf
  642. %dir /usr/lib/qubes/init
  643. /usr/lib/qubes/init/bind-dirs.sh
  644. /usr/lib/qubes/init/control-printer-icon.sh
  645. /usr/lib/qubes/init/functions
  646. /usr/lib/qubes/init/misc-post-stop.sh
  647. /usr/lib/qubes/init/misc-post.sh
  648. /usr/lib/qubes/init/mount-dirs.sh
  649. /usr/lib/qubes/init/qubes-early-vm-config.sh
  650. /usr/lib/qubes/init/qubes-random-seed.sh
  651. /usr/lib/qubes/init/qubes-sysinit.sh
  652. /usr/lib/qubes/init/resize-rootfs-if-needed.sh
  653. /usr/lib/qubes/init/setup-rw.sh
  654. /usr/lib/qubes/init/setup-rwdev.sh
  655. %dir /usr/lib/qubes-bind-dirs.d
  656. /usr/lib/qubes-bind-dirs.d/30_cron.conf
  657. /usr/share/applications/qubes-run-terminal.desktop
  658. /usr/share/applications/qubes-open-file-manager.desktop
  659. /usr/share/qubes/serial.conf
  660. /usr/share/qubes/marker-vm
  661. /usr/share/glib-2.0/schemas/20_org.gnome.settings-daemon.plugins.updates.qubes.gschema.override
  662. /usr/share/glib-2.0/schemas/20_org.gnome.nautilus.qubes.gschema.override
  663. /usr/share/glib-2.0/schemas/20_org.mate.NotificationDaemon.qubes.gschema.override
  664. /usr/share/glib-2.0/schemas/20_org.gnome.desktop.wm.preferences.qubes.gschema.override
  665. %{_mandir}/man1/qvm-*.1*
  666. %dir %{python3_sitelib}/qubesagent-*-py*.egg-info
  667. %{python3_sitelib}/qubesagent-*-py*.egg-info/*
  668. %{python3_sitelib}/qubesagent/__pycache__
  669. %dir %{python3_sitelib}/qubesagent
  670. %{python3_sitelib}/qubesagent/__init__.py*
  671. %{python3_sitelib}/qubesagent/firewall.py*
  672. %{python3_sitelib}/qubesagent/test_firewall.py*
  673. %{python3_sitelib}/qubesagent/vmexec.py*
  674. %{python3_sitelib}/qubesagent/test_vmexec.py*
  675. %{python3_sitelib}/qubesagent/xdg.py*
  676. %{python3_sitelib}/qubesagent/test_xdg.py*
  677. /usr/share/qubes/mime-override/globs
  678. /usr/share/qubes/qubes-master-key.asc
  679. %dir /mnt/removable
  680. %dir /rw
  681. %files -n python2-dnf-plugins-qubes-hooks
  682. %{python2_sitelib}/dnf-plugins/*
  683. %if 0%{?rhel} == 8
  684. %files -n python3-dnf-plugins-qubes-hooks
  685. %{plateform_python3_sitelib}/dnf-plugins/*
  686. %else
  687. %files -n python%{python3_pkgversion}-dnf-plugins-qubes-hooks
  688. %{python3_sitelib}/dnf-plugins/*
  689. %endif
  690. %files nautilus
  691. /usr/share/nautilus-python/extensions/qvm_copy_nautilus.py*
  692. /usr/share/nautilus-python/extensions/qvm_move_nautilus.py*
  693. /usr/share/nautilus-python/extensions/qvm_dvm_nautilus.py*
  694. /usr/lib/qubes/qvm_nautilus_bookmark.sh
  695. %files thunar
  696. /usr/lib/qubes/qvm-actions.sh
  697. /usr/lib/qubes/uca_qubes.xml
  698. /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
  699. %files dom0-updates
  700. %dir %attr(0755,user,user) /var/lib/qubes/dom0-updates
  701. /usr/lib/qubes/qubes-download-dom0-updates.sh
  702. %files networking
  703. %config(noreplace) /etc/qubes-rpc/qubes.UpdatesProxy
  704. %config(noreplace) /etc/qubes/ip6tables.rules
  705. %config(noreplace) /etc/qubes/ip6tables-enabled.rules
  706. %config(noreplace) /etc/qubes/iptables.rules
  707. %config(noreplace) /etc/tinyproxy/tinyproxy-updates.conf
  708. %config(noreplace) /etc/tinyproxy/updates-blacklist
  709. %config(noreplace) /etc/udev/rules.d/99-qubes-network.rules
  710. /etc/dhclient.d/qubes-setup-dnat-to-ns.sh
  711. /etc/xen/scripts/vif-qubes-nat.sh
  712. /etc/xen/scripts/vif-route-qubes
  713. /usr/lib/systemd/system/qubes-firewall.service
  714. /usr/lib/systemd/system/qubes-iptables.service
  715. /usr/lib/systemd/system/qubes-network.service
  716. /usr/lib/systemd/system/qubes-network-uplink.service
  717. /usr/lib/systemd/system/qubes-network-uplink@.service
  718. /usr/lib/systemd/system/qubes-updates-proxy.service
  719. /usr/lib/qubes/init/network-proxy-setup.sh
  720. /usr/lib/qubes/init/network-proxy-stop.sh
  721. /usr/lib/qubes/init/network-uplink-wait.sh
  722. /usr/lib/qubes/init/qubes-iptables
  723. /usr/lib/qubes/iptables-updates-proxy
  724. /usr/lib/qubes/qubes-setup-dnat-to-ns
  725. /usr/lib/qubes/setup-ip
  726. /usr/lib/tmpfiles.d/qubes-core-agent-linux.conf
  727. /usr/bin/qubes-firewall
  728. %files network-manager
  729. /etc/NetworkManager/dispatcher.d/30-qubes-external-ip
  730. /etc/NetworkManager/dispatcher.d/qubes-nmhook
  731. /etc/xdg/autostart/00-qubes-show-hide-nm-applet.desktop
  732. /usr/lib/NetworkManager/conf.d/30-qubes.conf
  733. /usr/lib/NetworkManager/conf.d/31-randomize-mac.conf
  734. /usr/lib/qubes/network-manager-prepare-conf-dir
  735. /usr/lib/qubes/qubes-fix-nm-conf.sh
  736. /usr/lib/qubes/show-hide-nm-applet.sh
  737. %files passwordless-root
  738. %config(noreplace) /etc/polkit-1/localauthority/50-local.d/qubes-allow-all.pkla
  739. %config(noreplace) /etc/polkit-1/rules.d/00-qubes-allow-all.rules
  740. %config(noreplace) /etc/sudoers.d/qubes
  741. %config(noreplace) /etc/pam.d/su.qubes
  742. %if %with_sysvinit
  743. %package sysvinit
  744. Summary: Qubes unit files for SysV init style or upstart
  745. License: GPL v2 only
  746. Group: Qubes
  747. Requires: upstart
  748. Requires: qubes-core-agent = %{version}
  749. Requires: qubes-core-qrexec-vm
  750. Requires: qubes-core-agent-networking = %{version}
  751. Provides: qubes-core-agent-init-scripts
  752. Conflicts: qubes-core-agent-systemd
  753. Provides: qubes-core-vm-sysvinit = %{version}-%{release}
  754. Obsoletes: qubes-core-vm-sysvinit < 4.0.0
  755. %description sysvinit
  756. The Qubes core startup configuration for SysV init (or upstart).
  757. %files sysvinit
  758. /etc/init.d/qubes-sysinit
  759. /etc/init.d/qubes-core-early
  760. /etc/init.d/qubes-core
  761. /etc/init.d/qubes-core-netvm
  762. /etc/init.d/qubes-firewall
  763. /etc/init.d/qubes-iptables
  764. /etc/init.d/qubes-updates-proxy
  765. /etc/init.d/qubes-updates-proxy-forwarder
  766. /etc/sysconfig/modules/qubes-core.modules
  767. %post sysvinit
  768. #echo "--> Turning off unnecessary services..."
  769. # FIXME: perhaps there is more elegant way to do this?
  770. for f in /etc/init.d/*
  771. do
  772. srv=`basename $f`
  773. [ $srv = 'functions' ] && continue
  774. [ $srv = 'killall' ] && continue
  775. [ $srv = 'halt' ] && continue
  776. [ $srv = 'single' ] && continue
  777. [ $srv = 'reboot' ] && continue
  778. [ $srv = 'qubes-gui' ] && continue
  779. chkconfig $srv off
  780. done
  781. #echo "--> Enabling essential services..."
  782. chkconfig rsyslog on
  783. chkconfig haldaemon on
  784. chkconfig messagebus on
  785. for svc in %qubes_services ; do
  786. if [ "$1" = 1 ] ; then
  787. chkconfig --add $svc || echo "WARNING: Cannot add service $svc!"
  788. else
  789. chkconfig $svc resetpriorities || echo "WARNING: Cannot reset priorities of service $svc!"
  790. fi
  791. done
  792. # TODO: make this not display the silly message about security context...
  793. sed -i s/^id:.:initdefault:/id:3:initdefault:/ /etc/inittab
  794. %preun sysvinit
  795. if [ "$1" = 0 ] ; then
  796. # no more packages left
  797. for svc in %qubes_services ; do
  798. chkconfig --del $svc
  799. done
  800. fi
  801. %endif
  802. %package systemd
  803. Summary: Qubes unit files for SystemD init style
  804. License: GPL v2 only
  805. Group: Qubes
  806. Requires: systemd
  807. Requires(post): systemd-units
  808. Requires(preun): systemd-units
  809. Requires(postun): systemd-units
  810. Requires: qubes-core-agent = %{version}
  811. Provides: qubes-core-agent-init-scripts
  812. Conflicts: qubes-core-agent-sysvinit
  813. Provides: qubes-core-vm-systemd = %{version}-%{release}
  814. Obsoletes: qubes-core-vm-systemd < 4.0.0
  815. Conflicts: qubes-gui-agent < 4.1.0
  816. # preset units after possibly new are installed
  817. OrderWithRequires(post): qubes-core-agent-networking
  818. %description systemd
  819. The Qubes core startup configuration for SystemD init.
  820. %files systemd
  821. %defattr(-,root,root,-)
  822. /etc/systemd/system/xendriverdomain.service
  823. /usr/lib/systemd/system/dev-xvdc1-swap.service
  824. /usr/lib/systemd/system/qubes-misc-post.service
  825. /usr/lib/systemd/system/qubes-mount-dirs.service
  826. /usr/lib/systemd/system/qubes-rootfs-resize.service
  827. /usr/lib/systemd/system/qubes-sysinit.service
  828. /usr/lib/systemd/system/qubes-early-vm-config.service
  829. /usr/lib/systemd/system/qubes-update-check.service
  830. /usr/lib/systemd/system/qubes-update-check.timer
  831. /usr/lib/systemd/system/qubes-sync-time.service
  832. /usr/lib/systemd/system/qubes-sync-time.timer
  833. /usr/lib/systemd/system/qubes-updates-proxy-forwarder@.service
  834. /usr/lib/systemd/system/qubes-updates-proxy-forwarder.socket
  835. /usr/lib/systemd/system-preset/%qubes_preset_file
  836. /usr/lib/modules-load.d/qubes-core.conf
  837. /usr/lib/systemd/system/boot.automount.d/30_qubes.conf
  838. /usr/lib/systemd/system/chronyd.service.d/30_qubes.conf
  839. /usr/lib/systemd/system/crond.service.d/30_qubes.conf
  840. /usr/lib/systemd/system/cups.service.d/30_qubes.conf
  841. /usr/lib/systemd/system/cups.socket.d/30_qubes.conf
  842. /usr/lib/systemd/system/cups.path.d/30_qubes.conf
  843. /usr/lib/systemd/system/cups-browsed.service.d/30_qubes.conf
  844. /usr/lib/systemd/system/org.cups.cupsd.service.d/30_qubes.conf
  845. /usr/lib/systemd/system/org.cups.cupsd.socket.d/30_qubes.conf
  846. /usr/lib/systemd/system/org.cups.cupsd.path.d/30_qubes.conf
  847. /usr/lib/systemd/system/getty@tty.service.d/30_qubes.conf
  848. /usr/lib/systemd/system/ModemManager.service.d/30_qubes.conf
  849. /usr/lib/systemd/system/NetworkManager.service.d/30_qubes.conf
  850. /usr/lib/systemd/system/NetworkManager-wait-online.service.d/30_qubes.conf
  851. /usr/lib/systemd/system/serial-getty@.service.d/30_qubes.conf
  852. /usr/lib/systemd/system/systemd-random-seed.service.d/30_qubes.conf
  853. /usr/lib/systemd/system/systemd-timesyncd.service.d/30_qubes.conf
  854. /usr/lib/systemd/system/tinyproxy.service.d/30_not_needed_in_qubes_by_default.conf
  855. /usr/lib/systemd/system/tor.service.d/30_qubes.conf
  856. /usr/lib/systemd/system/tor@default.service.d/30_qubes.conf
  857. /usr/lib/systemd/system/tmp.mount.d/30_qubes.conf
  858. /usr/lib/systemd/user/pulseaudio.service.d/30_qubes.conf
  859. /usr/lib/systemd/user/pulseaudio.socket.d/30_qubes.conf
  860. %post systemd
  861. changed=
  862. %scriptletfuns
  863. if [ $1 -eq 1 ]
  864. then
  865. preset_units %{_presetdir}/%qubes_preset_file initial
  866. changed=true
  867. else
  868. preset_units %{_presetdir}/%qubes_preset_file upgrade
  869. changed=true
  870. # Upgrade path - now qubes-iptables is used instead
  871. for svc in iptables ip6tables
  872. do
  873. if [ -f "$svc".service ]
  874. then
  875. systemctl --no-reload preset "$svc".service
  876. changed=true
  877. fi
  878. done
  879. fi
  880. if [ $1 -eq 1 ]
  881. then
  882. # First install.
  883. # Set default "runlevel".
  884. # FIXME: this ought to be done via kernel command line.
  885. # The fewer deviations of the template from the seed
  886. # image, the better.
  887. rm -f %{_sysconfdir}/systemd/system/default.target
  888. ln -s %{_unitdir}/multi-user.target %{_sysconfdir}/systemd/system/default.target
  889. changed=true
  890. fi
  891. # remove old symlinks
  892. if [ -L %{_sysconfdir}/systemd/system/sysinit.target.wants/qubes-random-seed.service ]
  893. then
  894. rm -f %{_sysconfdir}/systemd/system/sysinit.target.wants/qubes-random-seed.service
  895. changed=true
  896. fi
  897. if [ -L %{_sysconfdir}/systemd/system/multi-user.target.wants/qubes-mount-home.service ]
  898. then
  899. rm -f %{_sysconfdir}/systemd/system/multi-user.target.wants/qubes-mount-home.service
  900. changed=true
  901. fi
  902. if [ "x$changed" != "x" ]
  903. then
  904. systemctl daemon-reload
  905. fi
  906. %preun systemd
  907. if [ $1 -eq 0 ] ; then
  908. # Run this only during uninstall.
  909. # Save the preset file to later use it to re-preset services there
  910. # once the Qubes OS preset file is removed.
  911. mkdir -p %{_rundir}/qubes-uninstall
  912. cp -f %{_presetdir}/%qubes_preset_file %{_rundir}/qubes-uninstall/
  913. fi
  914. %postun systemd
  915. changed=
  916. %scriptletfuns
  917. if [ -d %{_rundir}/qubes-uninstall ]
  918. then
  919. # We have a saved preset file (or more).
  920. # Re-preset the units mentioned there.
  921. restore_units %{_rundir}/qubes-uninstall/%qubes_preset_file
  922. rm -rf %{_rundir}/qubes-uninstall
  923. changed=true
  924. fi
  925. if [ "x$changed" != "x" ]
  926. then
  927. systemctl daemon-reload
  928. fi
  929. %changelog
  930. @CHANGELOG@