diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-06-24 23:17:03 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-06-24 23:17:03 +0000 |
commit | 2edc2b6147f36f88b468a20944f50d369961f8b4 (patch) | |
tree | 2ce8e34290dae4b7d40e1d59aa0d98f4d1a36056 /security/openssh | |
parent | 115f1e63d639f04fe09fde74414446e6dcd20f5b (diff) | |
download | FreeBSD-ports-2edc2b6147f36f88b468a20944f50d369961f8b4.zip FreeBSD-ports-2edc2b6147f36f88b468a20944f50d369961f8b4.tar.gz |
Create user when package is extracted
Diffstat (limited to 'security/openssh')
-rw-r--r-- | security/openssh/pkg-plist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/openssh/pkg-plist b/security/openssh/pkg-plist index 49bdec0..977c6e9 100644 --- a/security/openssh/pkg-plist +++ b/security/openssh/pkg-plist @@ -33,3 +33,6 @@ libdata/ssh/Ssh.bin @exec if [ ! -f %D/etc/ssh/ssh_host_key ]; then echo ">> Generating a secret RSA1 host key."; %D/bin/ssh-keygen -t rsa1 -N "" -f %D/etc/ssh/ssh_host_key; fi @exec if [ ! -f %D/etc/ssh/ssh_host_rsa_key ]; then echo ">> Generating a secret RSA host key."; %D/bin/ssh-keygen -t rsa -N "" -f %D/etc/ssh/ssh_host_rsa_key; fi @exec if [ ! -f %D/etc/ssh/ssh_host_dsa_key ]; then echo ">> Generating a secret DSA host key."; %D/bin/ssh-keygen -t dsa -N "" -f %D/etc/ssh/ssh_host_dsa_key; fi +@dirrm empty +@exec if ! pw groupshow sshd 2>/dev/null; then pw groupadd sshd -g 22; fi +@exec if ! pw usershow sshd 2>/dev/null; then pw useradd sshd -g smmsp -u 22 -h - -d %D/empty -s /nonexistent -c "sshd privilege separation"; fi |