Debian and /usr/lib/python3: fix path

Debian based systems (including Ubuntu and other derivatives) always use
/usr/lib/python3 (and not /usr/lib/python3.x), therefore, we shouldn't
use a variable ${pyver3} instead of the 3.

Change-Id: I062ade8509d1e3309f90d473bb95fbeebc01cdd0
This commit is contained in:
Thomas Goirand 2021-06-16 13:57:18 +02:00
parent e04facd640
commit a41ebbc11a
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class watcher::params {
if ($::os_package_type == 'debian') {
$watcher_wsgi_script_source = '/usr/share/watcher-common/app.wsgi'
} else {
$watcher_wsgi_script_source = "/usr/lib/python${pyver3}/dist-packages/watcher/api/app.wsgi"
$watcher_wsgi_script_source = '/usr/lib/python3/dist-packages/watcher/api/app.wsgi'
}
$watcher_wsgi_script_path = '/usr/lib/cgi-bin/watcher'
}