????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.140.196.3 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 : /usr/share/initramfs-tools/hooks/ |
Upload File : |
#!/bin/sh -e PREREQS="" prereqs() { echo "$PREREQS"; } case "$1" in prereqs) prereqs exit 0 ;; esac root_over_the_network() { if egrep -qs '^/dev/(nbd|nd[a-z]|etherd/e)[^[:space:]]+[[:space:]]+/[[:space:]]' /etc/fstab; then return 0 elif egrep -qs '^[^[:space:]#]+[[:space:]]+/[[:space:]]+nfs[234]?[[:space:]]' /etc/fstab; then return 0 fi return 1 # false } . /usr/share/initramfs-tools/hook-functions mkdir -p $DESTDIR/lib/systemd copy_exec /lib/systemd/systemd-udevd /lib/systemd if [ -x /bin/udevadm.upgrade ]; then copy_exec /bin/udevadm.upgrade /bin/udevadm else copy_exec /bin/udevadm fi # copy compat symlink cp -a /sbin/udevadm $DESTDIR/sbin/udevadm mkdir -p $DESTDIR/etc/udev cp -p /etc/udev/udev.conf $DESTDIR/etc/udev/ mkdir -p $DESTDIR/lib/udev/rules.d/ for rules in 50-firmware.rules 50-udev-default.rules 60-persistent-storage.rules \ 80-drivers.rules 91-permissions.rules \ 64-md-raid.rules 60-persistent-storage-lvm.rules \ 55-dm.rules 60-persistent-storage-dm.rules; do if [ -e /etc/udev/rules.d/$rules ]; then cp -p /etc/udev/rules.d/$rules $DESTDIR/lib/udev/rules.d/ elif [ -e /lib/udev/rules.d/$rules ]; then cp -p /lib/udev/rules.d/$rules $DESTDIR/lib/udev/rules.d/ fi done # try to autodetect the value of this configuration option if [ -z "$NEED_PERSISTENT_NET" ] && root_over_the_network; then NEED_PERSISTENT_NET='yes' fi # Copy the rules for persistent network interface names for the benefit of # systems which need to boot over the network. If this is enabled then the # initramfs must be rebuilt every time a new network interface is added. # See #414287 for details. case "$NEED_PERSISTENT_NET" in YES|yes|Yes|Y|y) if [ -e /etc/udev/rules.d/70-persistent-net.rules ]; then cp -p /etc/udev/rules.d/70-persistent-net.rules $DESTDIR/lib/udev/rules.d/ fi ;; esac cp /lib/udev/hotplug.functions $DESTDIR/lib/udev/ for program in ata_id scsi_id; do copy_exec /lib/udev/$program /lib/udev done copy_exec /sbin/blkid /sbin if [ -x /lib/udev/vio_type ]; then copy_exec /lib/udev/vio_type /lib/udev fi