From c8e9b56cf3b7664e980f312b75c6bfac9b276703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 3 Jan 2022 22:15:39 +0100 Subject: stuff --- modules/blog/manifests/init.pp | 78 ------------------------------------------ 1 file changed, 78 deletions(-) delete mode 100644 modules/blog/manifests/init.pp (limited to 'modules/blog/manifests/init.pp') diff --git a/modules/blog/manifests/init.pp b/modules/blog/manifests/init.pp deleted file mode 100644 index a639311..0000000 --- a/modules/blog/manifests/init.pp +++ /dev/null @@ -1,78 +0,0 @@ -define blog ( - String $root, -) { - vcsrepo { $root: - ensure => latest, - provider => git, - source => 'https://github.com/HugoNikanor/website-blog-2.git', - revision => 'master', - # keep_local_changes => true, - owner => 'hugo', - group => 'www-data', - } - - vcsrepo { "${root}/entries": - ensure => latest, - provider => git, - source => '/home/git/git/blog-entries.git', - revision => 'master', - owner => 'hugo', - group => 'www-data', - } - - file { "${root}/settings.php": - ensure => file, - content => @(EOF) - directory, - recurse => true, - } - - $foot_files = [ - ['about.md', 'About'], - ['contact.md', 'Contact'], - ['legal.md', 'Legal'], - ['qna.md', '"Q&A"'], - ] - - $foot_files.each |$item| { - file { "${root}/footnote/${item[0]}": - source => "puppet:///modules/blog/footers/${item[0]}", - } - } - - - $files_ini = join($foot_files.map |$item| { - @("EOF") - files[] = ${item[0]} - title[] = ${item[1]} - | EOF - }) - - file { "${root}/special-files.ini": - ensure => file, - content => @("EOF") - ; FILE MANAGED BY PUPPET - ; - ; Which files on the website that are "special" - ; This basicly means that they shouldn't have comments - [footnote] - ${files_ini} - - [other] - files[] = list - files[] = entry-not-found.md - | EOF - } -} -- cgit v1.2.3