[Puppet Users] Puppet -- Powershell script

2016-09-19 Thread Shivayogi Kamat
I have an application which requires a local account to be required for the configuration. I have created a module inside that I have 2 folders : i. files ii.manifests under manifests init file I have the below code: class xyz { exec { ' app_config': command => '

[Puppet Users] Puppet Local Account Notify Issue

2016-09-25 Thread Shivayogi Kamat
user { 'acc1': ensure => present, managehome => true, password=> 'Test123', groups => ['Administrators'], auth_membership => 'minimum', notify => Exec['app config'] } exec { 'app config': path=> 'c:\\program files (x86)\\app\\bin',