mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-02 04:11:33 +02:00
8 lines
239 B
Bash
8 lines
239 B
Bash
#!/bin/sh
|
|
|
|
for i in mutter.schemas; do
|
|
echo "Uninstalling GConf2 schema $i."
|
|
GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
|
|
/usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/$i >/dev/null
|
|
done
|