Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: darwinscusp on Apr 24th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. bundle agent manage_users {
  2.     vars:
  3.         "users[testuser][fullname]" string => "Joe Test";
  4.         "users[testuser][home]"     string => "/home/testuser";
  5.         "users[testuser][shell]"    string => "/bin/bash";
  6.         "users[testuser][flags]"    string => "-m";
  7.         "users[testuser][password]" string => "blah";
  8.  
  9.     methods:
  10.         "any"   usebundle => create_users("manage_users.users");
  11.         "any"   usebundle => setup_ssh_keys("manage_users.users");
  12.         "any"   usebundle => setup_user_files("manage_users.users");
  13. }