mirror of
https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git
synced 2025-12-14 19:02:45 +03:00
15 lines
168 B
Bash
Executable File
15 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
# vim:set ft=sh:
|
|
|
|
# Tiny Cloud IMDS ifupdown-ng executor
|
|
|
|
case "$PHASE" in
|
|
post-up)
|
|
/sbin/imds-net-sync
|
|
;;
|
|
pre-down)
|
|
/sbin/imds-net-sync -k
|
|
;;
|
|
*) ;;
|
|
esac
|