atom-community / atom-community/atom-script
create a module to run a script on puppet master to the agent
- Dominant language
- JavaScript
- Stars
- 730
- Forks
- 264
- PR merge metrics
- No merged PRs in 30d
Description
```
class netiq {
file {
'silent_install.sh' :
ensure => 'file',
source => 'puppet:///modules/netiq/silent_install.sh',
path => '/tmp/netiq/silent_install.sh',
owner => 'root',
group => 'root',
mode => '0754',
notify => Exec [ 'run_silent'],
}
exec {
'run_silent':
require =>File ["/tmp/netiq/silent_install.sh"],
command => '/tmp/netiq/silent_install.sh',
refreshonly => true,
}
}
```
my issue is , the script silent_install.sh is calling 2 other files, how to make sure they properly import to the agent to be able to install the application and remove the files. Thank you
Contributor guide
Assessment
This issue has not been assessed yet.