From 7aeffaa1f5232f87be6b2a6a0dbba3f30d7f9603 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 5 Jan 2022 21:52:46 +0900 Subject: [PATCH] Remove usage of custom os_package_type fact Currently we support usage of distro packages only, and this custom fact can be simply replaced by the default fact. Change-Id: I1f456b86e20f6ab3bfe34f10d191a367742a9d7f --- manifests/wsgi/uwsgi.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/wsgi/uwsgi.pp b/manifests/wsgi/uwsgi.pp index f2b7ba55..51d52f88 100644 --- a/manifests/wsgi/uwsgi.pp +++ b/manifests/wsgi/uwsgi.pp @@ -29,7 +29,7 @@ class cinder::wsgi::uwsgi ( include cinder::deps - if $::os_package_type != 'debian'{ + if $::operatingsystem != 'Debian'{ warning('This class is only valid for Debian, as other operating systems are not using uwsgi by default.') }