10 lines
110 B
Bash
Executable File
10 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
MSG="$1"
|
|
DOMAIN="$2"
|
|
|
|
if [[ $MSG == renewed ]]; then
|
|
touch /run/md-renewed/$DOMAIN
|
|
fi
|
|
|
|
exit 0 |