2a4a67d694
make sure iscsid gets started if there are any boot sessions running add reload target to fix double session problem when restarting from NM don't rely on session list passed from initrd, never got fully implemented remove patches related to running iscsid from initrd, possible to revisit later
8 lines
89 B
Bash
Executable File
8 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$2" in
|
|
up|vpn-up)
|
|
/bin/systemctl reload iscsi.service || :
|
|
;;
|
|
esac
|