Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Commit

Permalink
M #-: On RH-like systems use systemctl from /usr/bin/
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlastimil Holer committed May 5, 2020
1 parent ebbc0d6 commit 94f752c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/udev/rules.d/65-context.rules##rpm.systemd.one
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SUBSYSTEM=="net", ACTION=="add", \
TAG+="systemd", ENV{SYSTEMD_WANTS}+="one-context-reconfigure-delayed.service"

SUBSYSTEM=="net", ACTION=="remove", \
RUN+="/bin/systemctl --no-block start one-context-reconfigure-delayed.service"
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.
Expand All @@ -18,18 +18,18 @@ SUBSYSTEM=="block", ACTION=="change", \
ENV{ID_CDROM}=="1", \
ENV{ID_FS_TYPE}=="iso9660" ENV{ID_FS_LABEL_ENC}=="CONTEXT", \
ENV{SEQNUM}=="*[02468]", \
RUN+="/bin/systemctl --no-block start one-context-reconfigure.service"
RUN+="/usr/bin/systemctl --no-block start one-context-reconfigure.service"

# Handle disk resize
SUBSYSTEM=="block", ACTION=="change", \
ENV{RESIZE}=="1", \
RUN+="/bin/systemctl --no-block start one-context-force.service"
RUN+="/usr/bin/systemctl --no-block start one-context-force.service"

SUBSYSTEM=="scsi", ACTION=="change", \
ENV{SDEV_UA}=="CAPACITY_DATA_HAS_CHANGED", \
RUN+="/bin/systemctl --no-block start one-context-force.service"
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+="/bin/systemctl --no-block start one-context-force.service"
RUN+="/usr/bin/systemctl --no-block start one-context-force.service"

0 comments on commit 94f752c

Please sign in to comment.