From 3db5703c49715e337c43112cbf14230753056ccb Mon Sep 17 00:00:00 2001 From: Gardouille Date: Tue, 20 Jan 2015 11:34:17 +0100 Subject: [PATCH] * Add .gitignore for swp and puppet module's pkg files. --- CHANGELOG.md | 1 + manifests/ressource/user.pp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df9c090..4fb2147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ##### Changes * Edit dependencies range. +* Change optional parameter order for the ipmi::ressource::user --------------------------------------- diff --git a/manifests/ressource/user.pp b/manifests/ressource/user.pp index 14b0b9d..da385eb 100644 --- a/manifests/ressource/user.pp +++ b/manifests/ressource/user.pp @@ -29,7 +29,7 @@ # # Ensure this user is +enable+ or +disable+. # -define ipmi::ressource::user ( $user = $title, $password, $user_id = '2', $channel_id = '1', $state = 'enable' ) { +define ipmi::ressource::user ( $user = $title, $password = '', $user_id = '2', $channel_id = '1', $state = 'enable' ) { Exec { path => ['/bin','/sbin','/usr/bin','/usr/sbin'],