9 lines
273 B
Bash
Executable File
9 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
# kiosk_cleanup.sh
|
|
|
|
rm -rf /home/customer/.{config,cache}/chromium/
|
|
rm -rf /home/customer/.cache/mozilla
|
|
rm -rf /home/customer/.mozilla
|
|
tar -C /home/customer -xf /home/customer/openkiosk_mozilla_profile.tar.gz
|
|
chown -R customer:customer /home/customer/.mozilla
|