From ff10b18b370ff4b99794aaf51e1e0b79190c299d Mon Sep 17 00:00:00 2001 From: gueux Date: Thu, 5 Apr 2018 10:41:02 +0000 Subject: Added a comment --- .../comment_2_db1e5b7fcb324d5beb4429945f026096._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/forum/Apt:_use_deb.debian.org__47__debian-security/comment_2_db1e5b7fcb324d5beb4429945f026096._comment diff --git a/doc/forum/Apt:_use_deb.debian.org__47__debian-security/comment_2_db1e5b7fcb324d5beb4429945f026096._comment b/doc/forum/Apt:_use_deb.debian.org__47__debian-security/comment_2_db1e5b7fcb324d5beb4429945f026096._comment new file mode 100644 index 00000000..ab80fbc6 --- /dev/null +++ b/doc/forum/Apt:_use_deb.debian.org__47__debian-security/comment_2_db1e5b7fcb324d5beb4429945f026096._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="gueux" + avatar="http://cdn.libravatar.org/avatar/2982bac2c2cd94ab3860efb189deafc8" + subject="comment 2" + date="2018-04-05T10:41:02Z" + content=""" +The same we get from using http://deb.debian.org/debian instead of http://ftp.debian.org/debian : redundancy, avoiding overloading security.debian.org, ... +"""]] -- cgit v1.2.3 From ec5522bdfa0c90fbedac183247fc89d708e32972 Mon Sep 17 00:00:00 2001 From: Tony Date: Fri, 13 Apr 2018 13:41:20 +0000 Subject: --- doc/forum/Problem_with_getting_started.mdwn | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doc/forum/Problem_with_getting_started.mdwn diff --git a/doc/forum/Problem_with_getting_started.mdwn b/doc/forum/Problem_with_getting_started.mdwn new file mode 100644 index 00000000..6c438b6e --- /dev/null +++ b/doc/forum/Problem_with_getting_started.mdwn @@ -0,0 +1,30 @@ +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 + +Can someone give me a hint how to process further? + +Regards, +Tony + -- cgit v1.2.3 From 23a75544e7ce47448e68356ebc757d308d9b9b3b Mon Sep 17 00:00:00 2001 From: Tony Date: Fri, 13 Apr 2018 13:43:02 +0000 Subject: --- doc/forum/Problem_with_getting_started.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/forum/Problem_with_getting_started.mdwn b/doc/forum/Problem_with_getting_started.mdwn index 6c438b6e..4d750553 100644 --- a/doc/forum/Problem_with_getting_started.mdwn +++ b/doc/forum/Problem_with_getting_started.mdwn @@ -5,12 +5,12 @@ I am new to Haskell and Propellor; just want to give it a try. I have been using 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 - +- 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: . -- cgit v1.2.3 From 477acf784b9b57c9cb35c9ff8384b72a29d9fa0c Mon Sep 17 00:00:00 2001 From: Tony Date: Fri, 13 Apr 2018 14:39:30 +0000 Subject: --- doc/forum/Problem_with_getting_started.mdwn | 42 ++++++++++++++++------------- 1 file 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 + +* 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 Can someone give me a hint how to process further? -- cgit v1.2.3