8 lines
100 B
Plaintext
8 lines
100 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$2" in
|
||
|
up|vpn-up)
|
||
|
/bin/systemctl --no-block reload iscsi.service || :
|
||
|
;;
|
||
|
esac
|