blob: 5dcf0c0dd8194e9dcc9630f71ba270179f3c404c (
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 /live/overlay && find . -not -name 'persistence.conf' | xargs rm -rf
}
|