core-agent.spec.in 33 KB

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