summaryrefslogtreecommitdiffstats
path: root/system-boot/components/2010-remove-persistence
blob: 717a408b3dbeec34acf8605622176724815c3cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

#set -e

Remove_persistence ()
{
	for _PARAMETER in ${LIVE_BOOT_CMDLINE}
	do
		case "${_PARAMETER}" in
			live-boot.persistence-remove=*|persistence-remove=*)
				LIVE_PERSISTENCE_REMOVE="${_PARAMETER#*persistence-remove=}"
				;;

			live-boot.persistence-remove|persistence-remove)
				LIVE_PERSISTENCE_REMOVE="true"
				;;
		esac
	done

	case "${LIVE_PERSISTENCE_REMOVE}" in
		true)
			;;

		*)
			return 0
			;;
	esac

	# Remove persistence
	cd /run/live/overlay && find . -not -name 'persistence.conf' | xargs rm -rf
}