distribution/packages/jelos/sources/scripts/factoryreset

35 lines
1 KiB
Text
Raw Normal View History

2022-02-05 14:23:32 +00:00
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
2022-02-05 14:23:32 +00:00
case "${1}" in
"retroarch")
rm -f /storage/.config/retroarch/retroarch.cfg
cp -rf /usr/config/retroarch/retroarch.cfg /storage/.config/retroarch/retroarch.cfg
;;
"retroarch-full")
rm -rf /storage/.config/retroarch
cp -rf /usr/config/retroarch /storage/.config/
;;
2023-11-16 13:18:46 +00:00
"mednafen")
rm -f /storage/.config/mednafen/mednafen.cfg
;;
"overlays")
rm -rf $(cat /usr/lib/systemd/system/tmp-*.mount | grep -Eo 'upperdir=.*,' | sed -e 's~upperdir=~~g; s~,~~g')
sync
systemctl reboot
;;
"ALL")
swapoff -a
umount /storage/roms ||:
umount /storage/games-external ||:
cd /
find /storage -mindepth 1 \( ! -regex '^/storage/.update.*' -a ! -regex '^/storage/roms.*' -a ! -regex '^/storage/games-.*' \) -delete
mkdir /storage/.config/
sync
systemctl reboot
;;
2022-02-05 14:23:32 +00:00
esac