diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-09-22 19:42:27 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-09-22 21:21:54 +0000 |
commit | 43566bd0d1d6b9a779e62a6bc3c81d869ff67ec6 (patch) | |
tree | 6b99231e56f072fd93c84c8abb2f1d67648bc25b /freeradius3-model.lua | |
parent | ab450415062ce9dfe9abb1654bbbcdd04115815a (diff) | |
download | acf-freeradius3-43566bd0d1d6b9a779e62a6bc3c81d869ff67ec6.tar.bz2 acf-freeradius3-43566bd0d1d6b9a779e62a6bc3c81d869ff67ec6.tar.xz |
Fix file user/group in model
(cherry picked from commit 905567866869e402ccaa09b3d43f668d12563f03)
Diffstat (limited to 'freeradius3-model.lua')
-rw-r--r-- | freeradius3-model.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/freeradius3-model.lua b/freeradius3-model.lua index 9347604..fd97ddc 100644 --- a/freeradius3-model.lua +++ b/freeradius3-model.lua @@ -12,8 +12,8 @@ subprocess = require("subprocess") local processname = "radiusd" local packagename = "freeradius3" local baseurl = "/etc/raddb" -local owner = "radius" -local group = "root" +local owner = "root" +local group = "radius" local config local configtable |