diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-09-23 07:22:53 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-09-23 07:22:53 +0000 |
commit | f32a278d211208a1ec7074486915fa3fc431063c (patch) | |
tree | 71414a3dd1e9d0cc443cb3624403a4d4beaaf2ba /net-dialup/freeradius/files | |
parent | clean up (diff) | |
download | gentoo-2-f32a278d211208a1ec7074486915fa3fc431063c.tar.gz gentoo-2-f32a278d211208a1ec7074486915fa3fc431063c.tar.bz2 gentoo-2-f32a278d211208a1ec7074486915fa3fc431063c.zip |
Don't stop radiusd service in prerm anymore since /var/run/radius is no longer removed by portage during update. Stable on amd64.
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-dialup/freeradius/files')
-rw-r--r-- | net-dialup/freeradius/files/radius.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-dialup/freeradius/files/radius.init b/net-dialup/freeradius/files/radius.init index 75392c846058..2b51958334f5 100644 --- a/net-dialup/freeradius/files/radius.init +++ b/net-dialup/freeradius/files/radius.init @@ -14,7 +14,7 @@ checkconfig() { return 1 fi - if [[ ! -d /var/run/radiusd ]] && ! mkdir /var/run/radiusd ; then + if [ ! -d /var/run/radiusd ] && ! mkdir /var/run/radiusd ; then eerror "Failed to create /var/run/radiusd" return 1 fi |