From 198228f3ba7ce79b69494b69d1ec9419005679d2 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Mon, 27 Nov 2023 19:41:49 +0200 Subject: [PATCH] fix path --- manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 37d242d..72513b0 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -137,13 +137,13 @@ class mastodon ( require => Exec['configure_rbenv'], } file_line { 'mastodon_path': - path => "${mastodon_home}/.bashrc/", + path => "${mastodon_home}/.bashrc", line => 'export PATH="$HOME/.rbenv/bin:$PATH"', match => '^export PATH="$HOME/.rbenv', require => Vcsrepo['rbenv'], } file_line { 'mastodon_rbenv_init': - path => "${mastodon_home}/.bashrc/", + path => "${mastodon_home}/.bashrc", line => 'eval "$(rbenv init -)"', match => '^eval "$(rbenv init -)"', require => Vcsrepo['rbenv'],