Skip to content

Instantly share code, notes, and snippets.

@dankeller
Created March 7, 2013 16:06
Show Gist options
  • Save dankeller/5109126 to your computer and use it in GitHub Desktop.
Save dankeller/5109126 to your computer and use it in GitHub Desktop.
# Class: my_super_module
#
#
class my_super_module {
mac_profiles_handler::manage { 'isd11.wifi':
ensure => present;
file_source => 'puppet:///modules/my_super_module/isd11.wifi.mobileconfig'
}
}
@grahamgilbert
Copy link

You need commas at the end of your lines, not a semi-colon.

class my_super_module {
    mac_profiles_handler::manage { 'isd11.wifi':
        ensure      =>  present,
        file_source =>  'puppet:///modules/my_super_module/isd11.wifi.mobileconfig',
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment