summaryrefslogtreecommitdiff
path: root/community/freeradius/freeradius.install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/freeradius/freeradius.install
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/freeradius/freeradius.install')
-rw-r--r--community/freeradius/freeradius.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/community/freeradius/freeradius.install b/community/freeradius/freeradius.install
new file mode 100644
index 000000000..cb7590e77
--- /dev/null
+++ b/community/freeradius/freeradius.install
@@ -0,0 +1,17 @@
+post_install() {
+ groupadd -r radiusd
+ useradd -r -m -d /var/lib/radiusd -g radiusd -s /bin/false radiusd
+
+ touch var/log/radius/radius.log
+ chown -R radiusd:radiusd var/log/radius/radius.log
+
+ [ -d etc/raddb ] || cp -a etc/raddb.default etc/raddb
+
+ true
+}
+
+post_remove() {
+ userdel radiusd
+ groupdel radiusd
+ true
+}