core-agent.spec.in 34 KB

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