mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-27 07:29:28 +02:00
91 lines
2.2 KiB
Bash
Executable File
91 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# -*- mode: sh; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
# vim: et sts=4 sw=4
|
|
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright © 2019-2021 Collabora Ltd.
|
|
# Copyright © 2019-2021 Valve Corporation.
|
|
#
|
|
# This file is part of steamos-customizations.
|
|
#
|
|
# steamos-customizations 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 2.1 of the License,
|
|
# or (at your option) any later version.
|
|
|
|
set -e
|
|
set -u
|
|
|
|
FORCE=0 # --force
|
|
|
|
FACTORY_RESET_CONFIG_DIR=/esp/efi/steamos/factory-reset
|
|
|
|
[ -e /usr/lib/steamos/steamos-partitions-lib ] && \
|
|
. /usr/lib/steamos/steamos-partitions-lib || \
|
|
{ echo "Failed to source '/usr/lib/steamos/steamos-partitions-lib'"; exit 1; }
|
|
|
|
usage() {
|
|
local status=${1-2}
|
|
|
|
if [ $status -ne 0 ]; then
|
|
exec >&2
|
|
fi
|
|
|
|
echo
|
|
echo "Usage: $(basename $0) [OPTIONS]"
|
|
echo
|
|
echo "Factory reset of SteamOS, wipe out the data partitions."
|
|
echo
|
|
echo "This script records the partitions to be reset in:"
|
|
echo " $FACTORY_RESET_CONFIG_DIR"
|
|
echo "On reboot the initrd scrubs them and does a first-boot setup."
|
|
echo
|
|
|
|
exit $status
|
|
}
|
|
|
|
ask() {
|
|
local message="$1 [y/n] "
|
|
local answer=
|
|
|
|
while read -r -t 0; do
|
|
read -n 256 -r -s
|
|
done
|
|
|
|
while true; do
|
|
read -p "$message" answer
|
|
case "$answer" in
|
|
[Yy]|YES|Yes|yes) return 0;;
|
|
[Nn]|NO|No|no) return 1;;
|
|
*) echo "Please answer yes or no.";;
|
|
esac
|
|
done
|
|
}
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
-h|--help)
|
|
usage 0
|
|
;;
|
|
*)
|
|
usage 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
echo
|
|
echo "You're about to perform a factory reset of your SteamOS install!"
|
|
echo
|
|
echo "The data partitions will be erased, all your personal data will be lost."
|
|
echo "Then the system will reboot, and you'll be back to a pristine SteamOS install."
|
|
echo
|
|
if ! ask "Do you want to continue?"; then
|
|
echo "Alright buddy. Come back when you feel ready."
|
|
exit 0
|
|
fi
|
|
|
|
if steamos-factory-reset-config "$FACTORY_RESET_CONFIG_DIR"; then
|
|
reboot
|
|
fi
|