2014-10-31 06:59:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# postinst script for core-agent-linux
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
2014-11-07 06:09:54 +01:00
|
|
|
set -e
|
2014-10-31 06:59:20 +01:00
|
|
|
|
|
|
|
# The postint script may be called in the following ways:
|
|
|
|
# * <postinst> 'configure' <most-recently-configured-version>
|
|
|
|
# * <old-postinst> 'abort-upgrade' <new version>
|
|
|
|
# * <conflictor's-postinst> 'abort-remove' 'in-favour' <package>
|
|
|
|
# <new-version>
|
|
|
|
# * <postinst> 'abort-remove'
|
|
|
|
# * <deconfigured's-postinst> 'abort-deconfigure' 'in-favour'
|
|
|
|
# <failed-install-package> <version> 'removing'
|
|
|
|
# <conflicting-package> <version>
|
|
|
|
#
|
|
|
|
# For details, see http://www.debian.org/doc/debian-policy/ or
|
|
|
|
# https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html or
|
|
|
|
# the debian-policy package
|
|
|
|
|
2014-11-09 18:58:57 +01:00
|
|
|
# Directory that modified desktop entry config files are stored in
|
|
|
|
XDG_CONFIG_QUBES="/usr/share/qubes/xdg"
|
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# Install overriden services only when original exists
|
|
|
|
installOverridenServices() {
|
2014-11-08 04:52:32 +01:00
|
|
|
override_dir="${1}"
|
|
|
|
service="${2}"
|
2014-11-08 00:28:04 +01:00
|
|
|
retval=1
|
|
|
|
|
|
|
|
for unit in ${service}; do
|
2014-11-08 04:52:32 +01:00
|
|
|
unit="${unit%%.*}"
|
|
|
|
unit_name="$(basename ${unit})"
|
|
|
|
if [ -f ${unit}.service ]; then
|
|
|
|
echo "Installing override for ${unit}.service..."
|
|
|
|
cp ${override_dir}/${unit_name}.service /etc/systemd/system/
|
2014-11-08 00:28:04 +01:00
|
|
|
retval=0
|
|
|
|
fi
|
2014-11-08 04:52:32 +01:00
|
|
|
if [ -f ${unit}.socket -a -f ${override_dir}/${unit}.socket ]; then
|
|
|
|
echo "Installing override for ${unit}.socket..."
|
|
|
|
cp ${override_dir}/${unit_name}.socket /etc/systemd/system/
|
2014-11-08 00:28:04 +01:00
|
|
|
retval=0
|
|
|
|
fi
|
2014-11-08 04:52:32 +01:00
|
|
|
if [ -f ${unit}.path -a -f ${override_dir}/${unit}.path ]; then
|
|
|
|
echo "Installing override for ${unit}.path..."
|
|
|
|
cp ${override_dir}/${unit_name}.path /etc/systemd/system/
|
2014-11-08 00:28:04 +01:00
|
|
|
retval=0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
return ${retval}
|
|
|
|
}
|
|
|
|
|
|
|
|
reenableNetworkManager() {
|
|
|
|
# Disable original service to enable overriden one
|
2014-11-08 04:52:32 +01:00
|
|
|
echo "Disabling original service to enable overriden one..."
|
|
|
|
disableSystemdUnits ModemManager.service
|
|
|
|
disableSystemdUnits NetworkManager.service
|
2014-11-08 00:28:04 +01:00
|
|
|
|
|
|
|
# Disable D-BUS activation of NetworkManager - in AppVm it causes problems (eg PackageKit timeouts)
|
2014-11-08 04:52:32 +01:00
|
|
|
echo "Disable D-BUS activation of NetworkManager - in AppVm it causes problems (eg PackageKit timeouts)"
|
|
|
|
systemctl mask dbus-org.freedesktop.NetworkManager.service 2> /dev/null || echo "Could not disable D-BUS activation of NetworkManager"
|
|
|
|
|
|
|
|
echo "Re-enabling original service to enable overriden one..."
|
|
|
|
enableSystemdUnits ModemManager.service
|
|
|
|
enableSystemdUnits NetworkManager.service
|
2014-11-08 00:28:04 +01:00
|
|
|
|
|
|
|
# Fix for https://bugzilla.redhat.com/show_bug.cgi?id=974811
|
2014-11-08 04:52:32 +01:00
|
|
|
echo "Fix for https://bugzilla.redhat.com/show_bug.cgi?id=974811"
|
|
|
|
enableSystemdUnits NetworkManager-dispatcher.service
|
2014-11-08 00:28:04 +01:00
|
|
|
}
|
|
|
|
|
2014-11-09 18:58:57 +01:00
|
|
|
remove_ShowIn() {
|
2014-11-08 00:28:04 +01:00
|
|
|
if [ -e "${1}" ]; then
|
|
|
|
sed -i '/^\(Not\|Only\)ShowIn/d' "${1}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn() {
|
|
|
|
desktop_entry="${1}"
|
|
|
|
shown_in="${2}"
|
|
|
|
message="${shown_in:-"Shown in All;"}"
|
|
|
|
desktop_entry_qubes="${XDG_CONFIG_QUBES}/autostart/${desktop_entry##*/}"
|
|
|
|
|
|
|
|
# Make sure Qubes autostart directory exists
|
2014-11-09 19:27:38 +01:00
|
|
|
mkdir -p "${XDG_CONFIG_QUBES}/autostart"
|
2014-11-09 18:58:57 +01:00
|
|
|
|
|
|
|
# Desktop entry exists, so move to Qubes directory and modify it
|
|
|
|
if [ -e "${desktop_entry}" ]; then
|
|
|
|
echo "Desktop Entry Modification - ${message} ${desktop_entry##*/}..."
|
|
|
|
cp -pf "${desktop_entry}" "${desktop_entry_qubes}"
|
|
|
|
|
|
|
|
remove_ShowIn "${desktop_entry_qubes}"
|
|
|
|
sed -i '/^X-GNOME-Autostart-enabled.*[fF0]/d' "${desktop_entry_qubes}"
|
|
|
|
|
|
|
|
# Will only be '' if shown in all
|
|
|
|
if [ ! "${shown_in}x" == "x" ]; then
|
|
|
|
echo "${shown_in}" >> "${desktop_entry_qubes}" || true
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Desktop entry must have been removed, so also remove from Qubes directory
|
|
|
|
else
|
|
|
|
echo "Desktop Entry Modification - Remove: ${desktop_entry##*/}..."
|
|
|
|
rm -f "${desktop_entry_qubes}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-11-08 04:52:32 +01:00
|
|
|
setArrayAsGlobal() {
|
|
|
|
local array="$1"
|
|
|
|
local export_as="$2"
|
|
|
|
local code=$(declare -p "$array")
|
|
|
|
local replaced="${code/$array/$export_as}"
|
|
|
|
eval ${replaced/declare -/declare -g}
|
|
|
|
}
|
|
|
|
|
|
|
|
systemdInfo() {
|
|
|
|
unit=${1}
|
|
|
|
return_global_var=${2}
|
|
|
|
|
2014-11-12 09:39:17 +01:00
|
|
|
declare -A INFO=()
|
2014-11-08 04:52:32 +01:00
|
|
|
while read line; do
|
|
|
|
INFO[${line%%=*}]="${line##*=}"
|
|
|
|
done < <(systemctl show ${unit} 2> /dev/null)
|
2014-11-12 09:39:17 +01:00
|
|
|
|
2014-11-08 04:52:32 +01:00
|
|
|
setArrayAsGlobal INFO $return_global_var
|
2014-11-12 09:39:17 +01:00
|
|
|
return ${#INFO[@]}
|
2014-11-08 04:52:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
displayFailedStatus() {
|
|
|
|
action=${1}
|
|
|
|
unit=${2}
|
|
|
|
|
2014-11-12 09:39:17 +01:00
|
|
|
# Only display if there are results. In chroot environmnet there will be
|
|
|
|
# no results to 'systemctl show' command
|
|
|
|
systemdInfo ${unit} info || {
|
|
|
|
echo
|
|
|
|
echo "==================================================="
|
|
|
|
echo "FAILED: systemd ${action} ${unit}"
|
|
|
|
echo "==================================================="
|
|
|
|
echo " LoadState = ${info[LoadState]}"
|
|
|
|
echo " LoadError = ${info[LoadError]}"
|
|
|
|
echo " ActiveState = ${info[ActiveState]}"
|
|
|
|
echo " SubState = ${info[SubState]}"
|
|
|
|
echo "UnitFileState = ${info[UnitFileState]}"
|
|
|
|
echo
|
|
|
|
}
|
2014-11-08 04:52:32 +01:00
|
|
|
}
|
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# Disable systemd units
|
|
|
|
disableSystemdUnits() {
|
|
|
|
for unit in $*; do
|
|
|
|
systemctl is-enabled ${unit} > /dev/null 2>&1 && {
|
|
|
|
echo "Disabling ${unit}..."
|
|
|
|
systemctl is-active ${unit} > /dev/null 2>&1 && {
|
2014-11-08 04:52:32 +01:00
|
|
|
systemctl stop ${unit} > /dev/null 2>&1 || displayFailedStatus stop ${unit}
|
2014-11-08 00:28:04 +01:00
|
|
|
}
|
|
|
|
if [ -f /lib/systemd/system/${unit} ]; then
|
|
|
|
if fgrep -q '[Install]' /lib/systemd/system/${unit}; then
|
2014-11-08 04:52:32 +01:00
|
|
|
systemctl disable ${unit} > /dev/null 2>&1 || displayFailedStatus disable ${unit}
|
2014-11-08 00:28:04 +01:00
|
|
|
else
|
2015-01-24 22:19:08 +01:00
|
|
|
echo "Masking service: ${unit}"
|
|
|
|
systemctl mask ${unit}
|
2014-11-08 00:28:04 +01:00
|
|
|
fi
|
|
|
|
else
|
2014-11-08 04:52:32 +01:00
|
|
|
systemctl disable ${unit} > /dev/null 2>&1 || displayFailedStatus disable ${unit}
|
2014-10-31 06:59:20 +01:00
|
|
|
fi
|
2014-11-08 00:28:04 +01:00
|
|
|
} || {
|
|
|
|
echo "It appears ${unit} is already disabled!"
|
2014-11-08 04:52:32 +01:00
|
|
|
#displayFailedStatus is-disabled ${unit}
|
2014-11-08 00:28:04 +01:00
|
|
|
}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Enable systemd units
|
|
|
|
enableSystemdUnits() {
|
|
|
|
for unit in $*; do
|
|
|
|
systemctl is-enabled ${unit} > /dev/null 2>&1 && {
|
|
|
|
echo "It appears ${unit} is already enabled!"
|
2014-11-08 04:52:32 +01:00
|
|
|
#displayFailedStatus is-enabled ${unit}
|
2014-11-08 00:28:04 +01:00
|
|
|
} || {
|
|
|
|
echo "Enabling: ${unit}..."
|
2015-02-03 03:34:52 +01:00
|
|
|
systemctl enable ${unit} > /dev/null 2>&1 || {
|
2014-11-08 04:52:32 +01:00
|
|
|
echo "Could not enable: ${unit}"
|
|
|
|
displayFailedStatus enable ${unit}
|
|
|
|
}
|
2014-11-08 00:28:04 +01:00
|
|
|
}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Manually trigger all triggers to automaticatly configure
|
|
|
|
triggerTriggers() {
|
|
|
|
path="$(readlink -m ${0})"
|
|
|
|
triggers="${path/postinst/triggers}"
|
|
|
|
|
|
|
|
awk '{sub(/[ \t]*#.*/,"")} NF' ${triggers} | while read line
|
|
|
|
do
|
|
|
|
/bin/bash -c "${0} triggered ${line##* }" || true
|
2014-10-31 06:59:20 +01:00
|
|
|
done
|
2014-11-08 00:28:04 +01:00
|
|
|
}
|
2014-10-31 06:59:20 +01:00
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
case "${1}" in
|
|
|
|
configure)
|
|
|
|
# disable some Upstart services
|
|
|
|
for init in plymouth-shutdown \
|
|
|
|
prefdm \
|
|
|
|
splash-manager \
|
|
|
|
start-ttys \
|
|
|
|
tty ; do
|
2015-01-24 22:41:05 +01:00
|
|
|
dpkg-divert --divert /etc/init/${init}.conf.qubes-disabled --package qubes-core-agent --rename --add /etc/init/${init}.conf
|
2014-11-08 00:28:04 +01:00
|
|
|
done
|
2014-10-31 06:59:20 +01:00
|
|
|
|
|
|
|
# Create NetworkManager configuration if we do not have it
|
|
|
|
if ! [ -e /etc/NetworkManager/NetworkManager.conf ]; then
|
2014-11-08 00:28:04 +01:00
|
|
|
echo '[main]' > /etc/NetworkManager/NetworkManager.conf
|
|
|
|
echo 'plugins = keyfile' >> /etc/NetworkManager/NetworkManager.conf
|
|
|
|
echo '[keyfile]' >> /etc/NetworkManager/NetworkManager.conf
|
2014-10-31 06:59:20 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove old firmware updates link
|
|
|
|
if [ -L /lib/firmware/updates ]; then
|
2014-11-08 00:28:04 +01:00
|
|
|
rm -f /lib/firmware/updates
|
2014-10-31 06:59:20 +01:00
|
|
|
fi
|
|
|
|
|
2014-11-05 04:33:17 +01:00
|
|
|
# ensure that hostname resolves to 127.0.1.1 resp. ::1 and that /etc/hosts is
|
|
|
|
# in the form expected by qubes-sysinit.sh
|
|
|
|
for ip in '127\.0\.1\.1' '::1'; do
|
|
|
|
if grep -q "^${ip}\(\s\|$\)" /etc/hosts; then
|
|
|
|
sed -i "/^${ip}\s/,+0s/\(\s`hostname`\)\+\(\s\|$\)/\2/g" /etc/hosts
|
|
|
|
sed -i "s/^${ip}\(\s\|$\).*$/\0 `hostname`/" /etc/hosts
|
|
|
|
else
|
2014-11-05 05:10:42 +01:00
|
|
|
echo "${ip//\\/} `hostname`" >> /etc/hosts
|
2014-11-05 04:33:17 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
# remove hostname from 127.0.0.1 line (in debian the hostname is by default
|
|
|
|
# resolved to 127.0.1.1)
|
|
|
|
sed -i "/^127\.0\.0\.1\s/,+0s/\(\s`hostname`\)\+\(\s\|$\)/\2/g" /etc/hosts
|
|
|
|
|
|
|
|
chown user:user /home_volatile/user
|
2014-10-31 06:59:20 +01:00
|
|
|
|
2015-01-24 22:41:05 +01:00
|
|
|
dpkg-divert --divert /etc/init/serial.conf.qubes-orig --package qubes-core-agent --rename --add /etc/init/serial.conf
|
2014-10-31 06:59:20 +01:00
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# Enable Qubes systemd units
|
|
|
|
enableSystemdUnits \
|
|
|
|
qubes-sysinit.service \
|
|
|
|
qubes-misc-post.service \
|
|
|
|
qubes-netwatcher.service \
|
|
|
|
qubes-network.service \
|
|
|
|
qubes-firewall.service \
|
|
|
|
qubes-updates-proxy.service \
|
2014-12-02 23:09:47 +01:00
|
|
|
qubes-update-check.timer \
|
2014-11-08 00:28:04 +01:00
|
|
|
qubes-qrexec-agent.service
|
2014-10-31 06:59:20 +01:00
|
|
|
|
|
|
|
# Set default "runlevel"
|
2015-02-02 23:43:59 +01:00
|
|
|
systemctl set-default multi-user.target
|
2014-10-31 06:59:20 +01:00
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# Process all triggers which will set defaults to wanted values
|
|
|
|
triggerTriggers
|
|
|
|
|
|
|
|
disableSystemdUnits \
|
2014-11-08 04:52:32 +01:00
|
|
|
alsa-store.service \
|
|
|
|
alsa-restore.service \
|
|
|
|
auditd.service \
|
|
|
|
avahi.service \
|
|
|
|
avahi-daemon.service \
|
|
|
|
backuppc.service \
|
|
|
|
cpuspeed.service \
|
|
|
|
crond.service \
|
|
|
|
fedora-autorelabel.service \
|
|
|
|
fedora-autorelabel-mark.service \
|
|
|
|
ipmi.service \
|
|
|
|
hwclock-load.service \
|
|
|
|
hwclock-save.service \
|
|
|
|
mdmonitor.service \
|
|
|
|
multipathd.service \
|
|
|
|
openct.service \
|
|
|
|
rpcbind.service \
|
|
|
|
mcelog.service \
|
|
|
|
fedora-storage-init.service \
|
|
|
|
fedora-storage-init-late.service \
|
|
|
|
plymouth-start.service \
|
|
|
|
plymouth-read-write.service \
|
|
|
|
plymouth-quit.service \
|
|
|
|
plymouth-quit-wait.service \
|
|
|
|
sshd.service \
|
|
|
|
tcsd.service \
|
|
|
|
sm-client.service \
|
|
|
|
sendmail.service \
|
|
|
|
mdmonitor-takeover.service \
|
|
|
|
rngd smartd.service \
|
|
|
|
upower.service \
|
|
|
|
irqbalance.service \
|
|
|
|
colord.service
|
2014-10-31 06:59:20 +01:00
|
|
|
|
|
|
|
rm -f /etc/systemd/system/getty.target.wants/getty@tty*.service
|
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# Enable other systemd units
|
|
|
|
enableSystemdUnits \
|
2015-02-03 00:04:12 +01:00
|
|
|
rsyslog.service \
|
|
|
|
netfilter-persistent.service
|
2014-11-07 06:09:54 +01:00
|
|
|
|
2014-11-08 00:28:04 +01:00
|
|
|
# XXX: TODO: Needs to be implemented still
|
2014-11-07 06:09:54 +01:00
|
|
|
# These do not exist on debian; maybe a different package name
|
2014-11-08 00:28:04 +01:00
|
|
|
# ntpd.service \
|
2014-10-31 06:59:20 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
|
2014-11-05 04:37:34 +01:00
|
|
|
triggered)
|
2014-11-08 00:28:04 +01:00
|
|
|
for trigger in ${2}; do
|
|
|
|
case "${trigger}" in
|
|
|
|
|
|
|
|
# Update Qubes App Menus
|
2014-11-07 06:09:54 +01:00
|
|
|
/usr/share/applications)
|
2014-11-08 00:28:04 +01:00
|
|
|
echo "Updating Qubes App Menus..."
|
|
|
|
/usr/lib/qubes/qubes-trigger-sync-appmenus.sh || true
|
|
|
|
;;
|
|
|
|
|
|
|
|
# Install overriden services only when original exists
|
|
|
|
/lib/systemd/system/NetworkManager.service | \
|
|
|
|
/lib/systemd/system/NetworkManager-wait-online.service | \
|
|
|
|
/lib/systemd/system/ModemManager.service)
|
|
|
|
UNITDIR=/lib/systemd/system
|
|
|
|
OVERRIDEDIR=/usr/lib/qubes/init
|
2014-11-08 04:52:32 +01:00
|
|
|
installOverridenServices "${OVERRIDEDIR}" "${trigger}"
|
2014-11-08 00:28:04 +01:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
reenableNetworkManager
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
# Enable cups only when it is real Systemd service
|
|
|
|
/lib/systemd/system/cups.service)
|
|
|
|
[ -e /lib/systemd/system/cups.service ] && enableSystemdUnits cups.service
|
|
|
|
;;
|
|
|
|
|
|
|
|
# "Enable haveged service"
|
|
|
|
/lib/systemd/system/haveged.service)
|
2015-02-03 03:40:21 +01:00
|
|
|
[ -e /lib/systemd/system/haveged.service ] && enableSystemdUnits haveged.service
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Install overridden serial.conf init script
|
|
|
|
/etc/init/serial.conf)
|
|
|
|
echo "Installing over-ridden serial.conf init script..."
|
|
|
|
if [ -e /etc/init/serial.conf ]; then
|
|
|
|
cp /usr/share/qubes/serial.conf /etc/init/serial.conf
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
# Disable SELinux"
|
|
|
|
/etc/selinux/config)
|
|
|
|
echo "Disabling SELinux..."
|
|
|
|
if [ -e /etc/selinux/config ]; then
|
|
|
|
sed -e s/^SELINUX=.*$/SELINUX=disabled/ </etc/selinux/config >/etc/selinux/config.processed
|
|
|
|
mv /etc/selinux/config.processed /etc/selinux/config
|
|
|
|
setenforce 0 2>/dev/null
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Remove existing rules
|
|
|
|
/etc/xdg/autostart/gpk-update-icon.desktop | \
|
|
|
|
/etc/xdg/autostart/nm-applet.desktop | \
|
2014-11-09 18:58:57 +01:00
|
|
|
/etc/xdg/autostart/abrt-applet.desktop | \
|
|
|
|
/etc/xdg/autostart/notify-osd.desktop)
|
|
|
|
showIn "${trigger}"
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Not shown in Qubes
|
|
|
|
/etc/xdg/autostart/pulseaudio.desktop | \
|
|
|
|
/etc/xdg/autostart/deja-dup-monitor.desktop | \
|
|
|
|
/etc/xdg/autostart/imsettings-start.desktop | \
|
|
|
|
/etc/xdg/autostart/krb5-auth-dialog.desktop | \
|
|
|
|
/etc/xdg/autostart/pulseaudio.desktop | \
|
|
|
|
/etc/xdg/autostart/restorecond.desktop | \
|
|
|
|
/etc/xdg/autostart/sealertauto.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-power-manager.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-sound-applet.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-screensaver.desktop | \
|
|
|
|
/etc/xdg/autostart/orca-autostart.desktop)
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn "${trigger}" 'NotShowIn=QUBES;'
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Not shown in in DisposableVM
|
|
|
|
/etc/xdg/autostart/gcm-apply.desktop)
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn "${trigger}" 'NotShowIn=DisposableVM;'
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Only shown in AppVM
|
|
|
|
/etc/xdg/autostart/gnome-keyring-gpg.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-keyring-pkcs11.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-keyring-secrets.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-keyring-ssh.desktop | \
|
|
|
|
/etc/xdg/autostart/gnome-settings-daemon.desktop | \
|
|
|
|
/etc/xdg/autostart/user-dirs-update-gtk.desktop | \
|
|
|
|
/etc/xdg/autostart/gsettings-data-convert.desktop)
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn "${trigger}" 'OnlyShowIn=GNOME;AppVM;'
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Only shown in Gnome & UpdateableVM
|
|
|
|
/etc/xdg/autostart/gpk-update-icon.desktop)
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn "${trigger}" 'OnlyShowIn=GNOME;UpdateableVM;'
|
2014-11-08 00:28:04 +01:00
|
|
|
;;
|
|
|
|
|
|
|
|
# Desktop Entry Modification - Only shown in Gnome & Qubes
|
|
|
|
/etc/xdg/autostart/nm-applet.desktop)
|
2014-11-09 18:58:57 +01:00
|
|
|
showIn "${trigger}" 'OnlyShowIn=GNOME;QUBES;'
|
2014-11-07 06:09:54 +01:00
|
|
|
;;
|
2014-11-08 00:28:04 +01:00
|
|
|
|
2014-11-07 06:09:54 +01:00
|
|
|
*)
|
2014-11-08 00:28:04 +01:00
|
|
|
echo "postinst called with unknown trigger \`${2}'" >&2
|
2014-11-07 06:09:54 +01:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
exit 0
|
2014-11-05 04:37:34 +01:00
|
|
|
;;
|
|
|
|
|
2014-10-31 06:59:20 +01:00
|
|
|
*)
|
2014-11-08 00:28:04 +01:00
|
|
|
echo "postinst called with unknown argument \`${1}'" >&2
|
2014-10-31 06:59:20 +01:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
# vim: set ts=4 sw=4 sts=4 et :
|