ba0f05436c
added in APP_INSTANCE for custom start includine debug first basic working version that has been deployed
8 lines
157 B
Bash
Executable file
8 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
CONF=$1
|
|
if [ -z "$CONF" ];
|
|
then
|
|
echo missing configuration argument, aborting
|
|
exit 1
|
|
fi
|
|
sudo systemctl status update-public-ip@$CONF
|