Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
41.03 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
File:
#!/bin/sh set -e signal_daemons() { # Tell all running daemons to reload their databases kill -s HUP `pidof gconfd-2` >/dev/null 2>&1 || true } if [ "$1" = triggered ]; then for trigger in $2; do case $trigger in /usr/share/gconf/schemas) gconf-schemas --register-all --no-signal ;; /usr/share/gconf/defaults) update-gconf-defaults --no-signal ;; /usr/share/gconf/mandatory) update-gconf-defaults --no-signal --mandatory ;; esac done signal_daemons exit 0 fi for GCONF_DIR in \ /etc/gconf/gconf.xml.mandatory \ /etc/gconf/gconf.xml.defaults ; do GCONF_TREE=$GCONF_DIR/%gconf-tree.xml if [ ! -f "$GCONF_TREE" ]; then gconf-merge-tree "$GCONF_DIR" chmod 644 "$GCONF_TREE" find "$GCONF_DIR" -mindepth 1 -maxdepth 1 -type d -exec rm -rf \{\} \; rm -f "$GCONF_DIR/%gconf.xml" fi done # Upon installation/upgrade, regenerate all databases, because in this case # there will be no trigger run gconf-schemas --register-all --no-signal update-gconf-defaults --no-signal update-gconf-defaults --no-signal --mandatory signal_daemons