This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Description
I'm using below config for nxFile in Azure Automation Account:
Node $Node
{
nxFile testConf
{
DestinationPath = "/etc/test.conf"
Mode = "644"
Type = "file"
Contents = "hello test"
}
}
It works in first run and creates the file .Then later if I delete the file it doesn't create the file.
I have kind of similar issue with nxScript which runs script first time but afterwards it doesn't run the script (I'm always returning false in TestScript so it should always run).