From c2ed3c22b5342521dd00000d0711dde47aa485c2 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 18 Nov 2021 15:25:46 -0800 Subject: [PATCH] puppet: Remove unused smokescreen symlink. --- puppet/zulip/manifests/profile/smokescreen.pp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/puppet/zulip/manifests/profile/smokescreen.pp b/puppet/zulip/manifests/profile/smokescreen.pp index b5236dc832..27e5b0513b 100644 --- a/puppet/zulip/manifests/profile/smokescreen.pp +++ b/puppet/zulip/manifests/profile/smokescreen.pp @@ -28,12 +28,6 @@ class zulip::profile::smokescreen { ensure => file, require => Exec['compile smokescreen'], } - file { '/usr/local/bin/smokescreen': - ensure => 'link', - target => $bin, - require => File[$bin], - notify => Service[supervisor], - } unless $::operatingsystem == 'Ubuntu' and $::operatingsystemrelease == '18.04' { # Puppet 5.5.0 and below make this always-noisy, as they spout out # a notify line about tidying the managed file above. Skip @@ -43,7 +37,7 @@ class zulip::profile::smokescreen { path => '/usr/local/bin', recurse => 1, matches => 'smokescreen-*', - require => [File[$bin], File['/usr/local/bin/smokescreen']], + require => File[$bin], } }