c2596a0435
DNF doesn't support even including another config file, so all the settings needs to go into `/etc/dnf/dnf.conf`. The same about PackageKit, which is needed because it doesn't use `dnf.conf`: http://lists.freedesktop.org/archives/packagekit/2015-September/026389.html Because that proxy settings goes to so many places now, create a separate script for that. QubesOS/qubes-issues#1282 QubesOS/qubes-issues#1197
27 lines
711 B
Bash
Executable File
27 lines
711 B
Bash
Executable File
#!/bin/sh
|
|
|
|
/usr/lib/qubes/update-proxy-configs
|
|
|
|
if [ -n "`ls -A /usr/local/lib 2>/dev/null`" -o \
|
|
-n "`ls -A /usr/local/lib64 2>/dev/null`" ]; then
|
|
ldconfig
|
|
fi
|
|
|
|
# Set IP address again (besides action in udev rules); this is needed by
|
|
# DispVM (to override DispVM-template IP) and in case when qubes-ip was
|
|
# called by udev before loading evtchn kernel module - in which case
|
|
# qubesdb-read fails
|
|
INTERFACE=eth0 /usr/lib/qubes/setup-ip
|
|
|
|
[ -x /rw/config/rc.local ] && /rw/config/rc.local
|
|
|
|
# Start services which haven't own proper systemd unit:
|
|
|
|
if [ ! -f /usr/lib/systemd/system/cups.service ]; then
|
|
if [ -f /var/run/qubes-service/cups ]; then
|
|
/usr/sbin/service cups start
|
|
fi
|
|
fi
|
|
|
|
exit 0
|