9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
CONF=$1
|
||
|
if [ -z "$CONF" ];
|
||
|
then
|
||
|
echo missing configuration argument, aborting
|
||
|
exit 1
|
||
|
fi
|
||
|
sudo systemctl status update-public-ip@$CONF
|