summaryrefslogtreecommitdiff
path: root/doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn
diff options
context:
space:
mode:
authorcraige@a46118dff5bc0fad85259759970d8b4b9fc377d72016-09-18 01:09:48 +0000
committeradmin2016-09-18 01:09:48 +0000
commit9094cf25e7ebd69db37ae576d0123971e7fc19bf (patch)
tree7b7029fdf5005dcff3dcdb9bfcc2230accb59745 /doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn
parent684a713b812651d32bd0f75ef3fc2d468a594a9c (diff)
Initial post.
Diffstat (limited to 'doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn')
-rw-r--r--doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn b/doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn
new file mode 100644
index 00000000..57737b6d
--- /dev/null
+++ b/doc/forum/Modules_with_Multiple_cmdProperty_causing_build_failures.mdwn
@@ -0,0 +1,24 @@
+I have module that I'm trying to write, which is always failing to build when ever I add a second (or more) cmdProperty to it.
+
+I've tried a variety of ways to write the module but clearly my limited Haskell skills are causing me to reach the barrier of ignorance which I'm failing to penetrate.
+
+The module is Pebble.hs and can be found here:
+
+<https://git.mcwhirter.io/craige/propellor-mio/blob/master/src/Propellor/Property/SiteSpecific/Pebble.hs>
+
+I'm hoping to shape that up into an upstream contribution, at some point :-)
+
+I've tried quite a few variations of:
+
+ sdk :: Property UnixLike|DebianLike -- (with and without HasInfo)
+ sdk = propertyList|combineProperties ("Pebble SDK") $ props
+
+I've compared it over and over again to examples in JoeySites and my own working modules ie:
+
+<https://git.mcwhirter.io/craige/propellor-mio/blob/master/src/Propellor/Property/SiteSpecific/OwnCloud.hs>
+
+As I uncomment an additional cmdProperty, the build of Pebble.hs fails.
+
+At a loss, cluebat blows greatly appreciated.
+
+Most recent build output is here <https://git.mcwhirter.io/snippets/5> with [Line 95](https://git.mcwhirter.io/snippets/5#L95) being the point of interest, I think.