2023-06-21 17:50:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-06-26 14:02:55 +00:00
|
|
|
# This file is part of BOINC.
|
|
|
|
# http://boinc.berkeley.edu
|
2024-02-27 01:51:35 +00:00
|
|
|
# Copyright (C) 2024 University of California
|
2023-06-26 14:02:55 +00:00
|
|
|
#
|
|
|
|
# BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License
|
|
|
|
# as published by the Free Software Foundation,
|
|
|
|
# either version 3 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# BOINC is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2023-06-21 17:50:01 +00:00
|
|
|
case "$1_$2" in
|
2024-04-24 16:13:28 +00:00
|
|
|
"fc37_linux_client" | "fc38_linux_client" | "fc39_linux_client" | "fc40_linux_client" | "suse15_4_linux_client" | "suse15_5_linux_client")
|
2024-02-27 01:51:35 +00:00
|
|
|
echo """/etc/default/*
|
2024-02-15 23:43:51 +00:00
|
|
|
/etc/init.d/*
|
|
|
|
/etc/bash_completion.d/*
|
2024-02-27 01:51:35 +00:00
|
|
|
/etc/X11/Xsession.d/*
|
2024-02-15 23:43:51 +00:00
|
|
|
/var/lib/*
|
|
|
|
/usr/lib/systemd/system/*
|
2024-02-27 01:51:35 +00:00
|
|
|
/usr/local/bin/*
|
2024-02-15 23:43:51 +00:00
|
|
|
/usr/lib/*
|
2024-02-27 01:51:35 +00:00
|
|
|
/usr/local/share/locale/*
|
2023-06-21 17:50:01 +00:00
|
|
|
"""
|
|
|
|
;;
|
|
|
|
|
2024-04-24 16:13:28 +00:00
|
|
|
"fc37_linux_manager" | "fc38_linux_manager" | "fc39_linux_manager" | "fc40_linux_manager" | "suse15_4_linux_manager" | "suse15_5_linux_manager")
|
2024-02-27 01:51:35 +00:00
|
|
|
echo """/usr/local/bin/*
|
|
|
|
/usr/local/share/applications/*
|
|
|
|
/usr/local/share/boinc-manager/*
|
|
|
|
/usr/local/share/locale/*
|
|
|
|
/usr/local/share/icons/*
|
2023-06-21 17:50:01 +00:00
|
|
|
"""
|
|
|
|
;;
|
2023-06-21 21:58:51 +00:00
|
|
|
|
2023-06-21 17:50:01 +00:00
|
|
|
*) echo "failed"
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|