mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
8 lines
107 B
Bash
8 lines
107 B
Bash
#!/bin/sh
|
|
|
|
if [ "$ACTION" = add ]; then
|
|
|
|
/etc/init.d/haproxy enabled && \
|
|
/etc/init.d/haproxy start
|
|
fi
|
|
|