diff options
author | intrigeri <intrigeri@boum.org> | 2012-01-26 18:54:00 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-01-26 18:54:00 +0100 |
commit | c192c140deb5c257e4f3d1902edad348338f4802 (patch) | |
tree | a3a46c3657d44f2a79a4487a4f645f3f828b6419 /manifests | |
parent | 09ae06fbea4e53f6b89d13f1f16ed8c6dab83e9d (diff) | |
download | puppet-tor-c192c140deb5c257e4f3d1902edad348338f4802.tar.gz puppet-tor-c192c140deb5c257e4f3d1902edad348338f4802.tar.bz2 |
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.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/daemon.pp | 2 |
1 files changed, 1 insertions, 1 deletions
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'], } |