Ottomata has submitted this change and it was merged.

Change subject: Revert previous changes to make sure file_mover has uid and gid 
30001
......................................................................


Revert previous changes to make sure file_mover has uid and gid 30001

NetApp requires this.  Hopefully the require on this user will
fix the previous problem

Bug: T115943
Change-Id: I9d339ffddadd64e3d8c9e7e7ff2b4d77a639e474
---
M manifests/role/logging.pp
1 file changed, 3 insertions(+), 0 deletions(-)

Approvals:
  Ottomata: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/manifests/role/logging.pp b/manifests/role/logging.pp
index 6af7778..c1070d2 100644
--- a/manifests/role/logging.pp
+++ b/manifests/role/logging.pp
@@ -253,16 +253,19 @@
 
     group { 'file_mover':
         ensure => present,
+        gid    => 30001,
         name   => 'file_mover',
         system => true,
     }
 
     user { 'file_mover':
+        uid        => 30001,
         shell      => '/bin/bash',
         gid        => 'file_mover',
         home       => '/var/lib/file_mover',
         managehome => true,
         system     => true,
+        require    => Group['file_mover'],
     }
 
     file { '/var/lib/file_mover':

-- 
To view, visit https://gerrit.wikimedia.org/r/247606
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I9d339ffddadd64e3d8c9e7e7ff2b4d77a639e474
Gerrit-PatchSet: 3
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Ottomata <[email protected]>
Gerrit-Reviewer: Ottomata <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to