We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479feb4 commit fb0a3fbCopy full SHA for fb0a3fb
config.sample.json
@@ -17,7 +17,7 @@
17
"zone" : "anotherhost.example.com"
18
}
19
},
20
- "postprocess" : "nohup sudo /opt/some-script.sh %hostname% %ipaddress% %iptype%"
+ "postprocess" : "nohup sudo /opt/some-script.sh %hostname% %ipaddress% %entrytype%"
21
22
23
index.php
@@ -90,7 +90,7 @@
90
$commandLine = str_replace("%username%", $username, $commandLine);
91
$commandLine = str_replace("%hostname%", $hostname, $commandLine);
92
$commandLine = str_replace("%ipaddress%", $ipAddress, $commandLine);
93
- $commandLine = str_replace("%iptype%", $entryType, $commandLine);
+ $commandLine = str_replace("%entrytype%", $entryType, $commandLine);
94
95
exec($commandLine);
96
0 commit comments