summaryrefslogtreecommitdiffstats
path: root/hostname-controller.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2010-01-20 13:34:15 +0000
committerTed Trask <ttrask01@yahoo.com>2010-01-20 13:34:15 +0000
commitb2f01eefe16bc19797360ee2a05805e6dc330d38 (patch)
treefd3759e41271c7cdabbeff6316a769d7eb12306e /hostname-controller.lua
parent301c747b1f0532d81e4a919a09ad80026460c96b (diff)
downloadacf-alpine-baselayout-b2f01eefe16bc19797360ee2a05805e6dc330d38.tar.bz2
acf-alpine-baselayout-b2f01eefe16bc19797360ee2a05805e6dc330d38.tar.xz
Change hostname get to return fqdn if available.
Diffstat (limited to 'hostname-controller.lua')
-rw-r--r--hostname-controller.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/hostname-controller.lua b/hostname-controller.lua
index 10ab81c..623373f 100644
--- a/hostname-controller.lua
+++ b/hostname-controller.lua
@@ -6,7 +6,7 @@ require("controllerfunctions")
default_action = "read"
read = function(self)
- return self.model.get()
+ return self.model.get(true)
end
edit = function(self)