12 lines
277 B
Plaintext
12 lines
277 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
chmod u+s /usr/bin/ukui-screensaver-checkpass
|
||
|
set -e
|
||
|
|
||
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
||
|
|
||
|
if [ -x /usr/share/kylin-system-updater/kylin-reboot-required ]; then
|
||
|
#执行请求重启提示
|
||
|
/usr/share/kylin-system-updater/kylin-reboot-required
|
||
|
fi
|