From e44a093d5bbe9908285ea2c8c9300e55bf690b7b Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 18 Jun 2021 18:49:30 +0200 Subject: [PATCH] The users are system users. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index bbef40c..bb5606f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -46,7 +46,7 @@ notify: Restart php-fpm - name: Create the users under the php-fpm processes will run - user: name={{ item.user }} comment="{{ item.user }}" home=/dev/null createhome=no shell=/usr/sbin/nologin + user: name={{ item.user }} comment="{{ item.user }}" home=/dev/null createhome=no shell=/usr/sbin/nologin system=yes with_items: '{{ phpfpm_pools }}' when: phpfpm_create_users notify: Restart php-fpm