????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.21 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/network/if-up.d/ |
Upload File : |
#!/bin/sh set -e PATH=/sbin:/bin:/usr/sbin:/usr/bin # This is a heuristic: The idea is that if a static interface is brought # up, that is a major event, and we can put in some extra effort to fix # the system time. Feel free to change this, especially if you regularly # bring up new network interfaces. if [ "$METHOD" = static ]; then OPTS="-b" fi if [ "$METHOD" = loopback ]; then exit 0 fi # Check whether ntpdate was removed but not purged; it's useless to wait for # it in that case. if [ ! -x /usr/sbin/ntpdate-debian ] && [ -d /usr/sbin ]; then exit 0 fi ( # This is for the case that /usr will be mounted later. if [ -r /lib/udev/hotplug.functions ]; then . /lib/udev/hotplug.functions wait_for_file /usr/sbin/ntpdate-debian fi LOCKFILE=/var/lock/ntpdate # Avoid running more than one at a time if [ -x /usr/bin/lockfile-create ]; then lockfile-create $LOCKFILE lockfile-touch $LOCKFILE & LOCKTOUCHPID="$!" fi /usr/sbin/ntpdate-debian -s $OPTS 2>/dev/null || : if [ -x /usr/bin/lockfile-create ] ; then kill $LOCKTOUCHPID lockfile-remove $LOCKFILE fi ) &