Resolves: RHEL-23468
Allow for PostgreSQL datasource Allow gid to be 0
This commit is contained in:
parent
1159ac80de
commit
893890a436
@ -52,7 +52,7 @@ index dafa075a2c..eda358c425 100755
|
|||||||
+ cfg:default.paths.logs=${LOG_DIR} \
|
+ cfg:default.paths.logs=${LOG_DIR} \
|
||||||
+ cfg:default.paths.plugins=${PLUGINS_DIR}")
|
+ cfg:default.paths.plugins=${PLUGINS_DIR}")
|
||||||
+
|
+
|
||||||
+if [ "$(id -u)" -eq 0 ]; then
|
+if [ "$(id -u)" -eq 0 -o "$(id -g)" -eq 0 ]; then
|
||||||
+ cd "${GRAFANA_HOME}"
|
+ cd "${GRAFANA_HOME}"
|
||||||
+ exec runuser -u "${GRAFANA_USER}" -- "$EXECUTABLE" "${OPTS[@]}" "$@"
|
+ exec runuser -u "${GRAFANA_USER}" -- "$EXECUTABLE" "${OPTS[@]}" "$@"
|
||||||
+elif [ "$(id -u -n)" = "${GRAFANA_USER}" ]; then
|
+elif [ "$(id -u -n)" = "${GRAFANA_USER}" ]; then
|
||||||
|
@ -25,7 +25,7 @@ end}
|
|||||||
|
|
||||||
Name: grafana
|
Name: grafana
|
||||||
Version: 9.2.10
|
Version: 9.2.10
|
||||||
Release: 14%{?dist}
|
Release: 15%{?dist}
|
||||||
Summary: Metrics dashboard and graph editor
|
Summary: Metrics dashboard and graph editor
|
||||||
License: AGPL-3.0-only
|
License: AGPL-3.0-only
|
||||||
URL: https://grafana.org
|
URL: https://grafana.org
|
||||||
@ -1008,6 +1008,11 @@ fi
|
|||||||
%{_datadir}/selinux/*/grafana.pp
|
%{_datadir}/selinux/*/grafana.pp
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jan 31 2024 Sam Feifer <sfeifer@redhat.com> 9.2.10-15
|
||||||
|
- Resolves RHEL-23468
|
||||||
|
- Allows for gid to be 0
|
||||||
|
- Allows for postgreSQL datasource in selinux policy
|
||||||
|
|
||||||
* Tue Dec 19 2023 Sam Feifer <sfeifer@redhat.com> 9.2.10-14
|
* Tue Dec 19 2023 Sam Feifer <sfeifer@redhat.com> 9.2.10-14
|
||||||
- Fixes postgresql AVC denial
|
- Fixes postgresql AVC denial
|
||||||
- Related RHEL-7505
|
- Related RHEL-7505
|
||||||
|
11
grafana.te
11
grafana.te
@ -27,6 +27,13 @@ gen_tunable(grafana_can_tcp_connect_elasticsearch_port, false)
|
|||||||
## </desc>
|
## </desc>
|
||||||
gen_tunable(grafana_can_tcp_connect_mysql_port, false)
|
gen_tunable(grafana_can_tcp_connect_mysql_port, false)
|
||||||
|
|
||||||
|
## <desc>
|
||||||
|
## <p>
|
||||||
|
## Allow grafana to connect to postgresql's default tcp port of 5432
|
||||||
|
## </p>
|
||||||
|
## </desc>
|
||||||
|
gen_tunable(grafana_can_tcp_connect_postgresql_port, false)
|
||||||
|
|
||||||
## <desc>
|
## <desc>
|
||||||
## <p>
|
## <p>
|
||||||
## Allow grafana to connect to prometheus' default tcp port of 9090
|
## Allow grafana to connect to prometheus' default tcp port of 9090
|
||||||
@ -179,6 +186,10 @@ tunable_policy(`grafana_can_tcp_connect_mysql_port',` # Mysql default tcp port 3
|
|||||||
corenet_tcp_connect_mysqld_port(grafana_t)
|
corenet_tcp_connect_mysqld_port(grafana_t)
|
||||||
')
|
')
|
||||||
|
|
||||||
|
tunable_policy(`grafana_can_tcp_connect_postgresql_port',` # Postgresql default tcp port 5432
|
||||||
|
corenet_tcp_connect_postgresql_port(grafana_t)
|
||||||
|
')
|
||||||
|
|
||||||
tunable_policy(`grafana_can_tcp_connect_prometheus_port',` # Prometheus default tcp port 9090
|
tunable_policy(`grafana_can_tcp_connect_prometheus_port',` # Prometheus default tcp port 9090
|
||||||
corenet_tcp_connect_websm_port(grafana_t)
|
corenet_tcp_connect_websm_port(grafana_t)
|
||||||
')
|
')
|
||||||
|
Loading…
Reference in New Issue
Block a user