Server IP : 192.158.238.246 / Your IP : 3.144.226.0 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /lib/udev/rules.d/ |
Upload File : |
# NIC detach workaround for recontextualization on OpenNebula < 5.10.3 # https://github.com/OpenNebula/one/issues/4130 # https://github.com/OpenNebula/one/issues/4194 SUBSYSTEM=="net", ACTION=="remove", \ RUN+="/bin/sh -c 'test -f /var/run/one-context/context.sh.local && echo >> /var/run/one-context/context.sh.local; test -f /var/run/one-context/context.sh.network && echo >> /var/run/one-context/context.sh.network'" # On NIC hotplug the delayed reconfiguration is triggered. SUBSYSTEM=="net", ACTION=="add", \ TAG+="systemd", ENV{SYSTEMD_WANTS}+="one-context-reconfigure-delayed.service" SUBSYSTEM=="net", ACTION=="remove", \ RUN+="/usr/bin/systemctl --no-block start one-context-reconfigure-delayed.service" # When CONTEXT CD-ROM is changed, it generates 2 events. This rule takes # every second event and triggers systemd service one-context-reconfigure. # This service also stops any existing delayed reconfiguration. SUBSYSTEM=="block", ACTION=="change", \ ENV{ID_CDROM}=="1", \ ENV{ID_FS_TYPE}=="iso9660" ENV{ID_FS_LABEL_ENC}=="CONTEXT", \ ENV{SEQNUM}=="*[02468]", \ RUN+="/usr/bin/systemctl --no-block start one-context-reconfigure.service" # Handle disk resize SUBSYSTEM=="block", ACTION=="change", \ ENV{RESIZE}=="1", \ RUN+="/usr/bin/systemctl --no-block start one-context-force.service" SUBSYSTEM=="scsi", ACTION=="change", \ ENV{SDEV_UA}=="CAPACITY_DATA_HAS_CHANGED", \ RUN+="/usr/bin/systemctl --no-block start one-context-force.service" # Handle swap hot-attach SUBSYSTEM=="block", ACTION=="add", \ ENV{ID_FS_TYPE}=="swap", \ RUN+="/usr/bin/systemctl --no-block start one-context-force.service"