atom-community / atom-community/atom-script

create a module to run a script on puppet master to the agent

Open
#602 1 comment 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.