core-agent.spec.in 33 KB

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