summaryrefslogtreecommitdiffstats
path: root/core/modules/kiosk-chromium/data/etc/X11/Xreset.d/clear-chromium-policies
blob: 8027bed296e349073f3622ce3320ece5e8a4eb3f (plain) (blame)
1
2
3
4
5
6
7
#!/bin/ash

policy_dir="/etc/chromium-browser/policies/managed"
for file in "$policy_dir/kiosk-mode.json" "$policy_dir/url-filter.json" ]; do
	[ -e "$file" ] && rm -f -- "$file"
done
true