From: intrigeri Date: Thu, 26 Jan 2012 17:54:00 +0000 (+0100) Subject: Use /bin/sh as a shell for the debian-tor user. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c192c140deb5c257e4f3d1902edad348338f4802;p=puppet-tor.git Use /bin/sh as a shell for the debian-tor user. The Debian package ships like this, and unless we have a pretty good reason to diverge, we'd better make sure we don't blindly break things. --- diff --git a/manifests/daemon.pp b/manifests/daemon.pp index c779cd0..76f3c64 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -26,7 +26,7 @@ class tor::daemon inherits tor { comment => 'tor user,,,', ensure => present, home => $data_dir, - shell => '/bin/sh', + shell => '/bin/bash', gid => 'debian-tor', require => Group['debian-tor'], }