summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTony2018-04-13 14:39:30 +0000
committeradmin2018-04-13 14:39:30 +0000
commit477acf784b9b57c9cb35c9ff8384b72a29d9fa0c (patch)
treeb0b2abcb80081ccdc1dc058c7662b09a281aca3e /doc
parent23a75544e7ce47448e68356ebc757d308d9b9b3b (diff)
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/Problem_with_getting_started.mdwn42
1 files changed, 23 insertions, 19 deletions
diff --git a/doc/forum/Problem_with_getting_started.mdwn b/doc/forum/Problem_with_getting_started.mdwn
index 4d750553..f929c3b3 100644
--- a/doc/forum/Problem_with_getting_started.mdwn
+++ b/doc/forum/Problem_with_getting_started.mdwn
@@ -3,25 +3,29 @@ Hello, I hope this is the right place to ask for help.
I am new to Haskell and Propellor; just want to give it a try. I have been using ansible but now looking for an alternative.
I did the following steps:
-- install propellor on control machine with: `stack install propellor`
-- `propellor --init`
-- create a minimal config.hs file, which does nothing:
-```
-abc :: Host
-abc = host "abc" $ props
- & osDebian (Stable "stretch") X86_64
-```
-
-when I run `propellor --spin abc`, it ended with the last following:
-.
-.
-Installed propellor-5.3.4
-Resolving dependencies...
-Configuring config-0...
-Preprocessing executable 'propellor-config' for config-0...
-cabal: can't find source for config in .
-sh: 1: ./propellor: not found
-propellor: user error (ssh <long text>
+
+* install propellor on control machine with: `stack install propellor`
+
+* `propellor --init`
+
+* create a minimal config.hs file, which does nothing:
+
+ abc :: Host
+ abc = host "abc" $ props
+ & osDebian (Stable "stretch") X86_64
+
+
+when I run `propellor --spin abc`, it ended with the following message:
+
+ .
+ .
+ Installed propellor-5.3.4
+ Resolving dependencies...
+ Configuring config-0...
+ Preprocessing executable 'propellor-config' for config-0...
+ cabal: can't find source for config in .
+ sh: 1: ./propellor: not found
+ propellor: user error (ssh <long text>
Can someone give me a hint how to process further?