diff options
Diffstat (limited to 'manifests/cgit.pp')
-rw-r--r-- | manifests/cgit.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/cgit.pp b/manifests/cgit.pp index 47c7eff..ac676ff 100644 --- a/manifests/cgit.pp +++ b/manifests/cgit.pp @@ -12,11 +12,16 @@ class git::cgit( } } - # For synthax highlighting + # Old synthax highlighting dependency #package { 'python-pygments': # ensure => present, #} + # For synthax highlighting + package { 'python3-pygments': + ensure => present, + } + file { '/etc/cgitrc': owner => "root", group => "root", |