Ryan Lane has submitted this change and it was merged. Change subject: Shell access for Sean Pringle ......................................................................
Shell access for Sean Pringle New DBA. Key from https://office.wikimedia.org/wiki/User:SPringle_%28WMF%29 I assume he will be given shell access at some point. Please merge this to approve his request. Change-Id: I5e517866ea8efe029eef9e16b73f2f2acd6f81c7 --- M manifests/admins.pp 1 file changed, 20 insertions(+), 0 deletions(-) Approvals: Ryan Lane: Looks good to me, approved jenkins-bot: Verified diff --git a/manifests/admins.pp b/manifests/admins.pp index da5e515..0e36df2 100644 --- a/manifests/admins.pp +++ b/manifests/admins.pp @@ -2921,6 +2921,25 @@ } } + class springle inherits baseaccount { + $username = "springle" + $realname = "Sean Pringle" + $uid = 645 + + unixaccount { $realname: username => $username, uid => $uid, gid => $gid } + + if $manage_home { + Ssh_authorized_key { require => Unixaccount[$realname] } + + ssh_authorized_key { + "sean@mintaka": + ensure => present, + user => $username, + type => "ssh-rsa", + key => "AAAAB3NzaC1yc2EAAAADAQABAAABAQDZ632eqrXOJ2vVKmxwode44lGL6UGEXUWG8muUP1ItqSCdYqmG11zaeH3uJNfsbqUu0jJbKpO7uiKSwolaYrHDPLDl5v5jNyRx7aQDzMgCjtVGAZIN3zQGGybl7v8ZQ635L9SAaATuYd7nOdDGa5TZ46YiAv1BA/+RGnUSz5h/ycb09V7o+RlQbHRTsTCIxjIMg45Rqnn3ukBeGNEZAU4IgaTRkg19PfPeSH9q6Ni6Wa1jz32ygmotT38vKuCvOXZxigrHJKwovS6xdfdxC67UBMV5J+KICpRPVAn1iIQMyiatdG4tBlPOUEecZcL6f7QaZufZwI/gU3wkC2zlVchF", + } + } + } # FIXME: not an admin. This is more like a system account. class l10nupdate inherits baseaccount { @@ -2980,6 +2999,7 @@ include accounts::py include accounts::robh include accounts::sara # disabled + include accounts::springle include accounts::tfinc include accounts::tstarling } -- To view, visit https://gerrit.wikimedia.org/r/70121 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I5e517866ea8efe029eef9e16b73f2f2acd6f81c7 Gerrit-PatchSet: 1 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Tim Starling <[email protected]> Gerrit-Reviewer: Lcarr <[email protected]> Gerrit-Reviewer: Ryan Lane <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
