diff options
Diffstat (limited to 'user/apache-httpd/apache-httpd.pre-upgrade')
-rw-r--r-- | user/apache-httpd/apache-httpd.pre-upgrade | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/user/apache-httpd/apache-httpd.pre-upgrade b/user/apache-httpd/apache-httpd.pre-upgrade new file mode 100644 index 000000000..d4ede7476 --- /dev/null +++ b/user/apache-httpd/apache-httpd.pre-upgrade @@ -0,0 +1,8 @@ +#!/bin/sh + +addgroup -S -g 82 www-data 2>/dev/null +addgroup -S apache 2>/dev/null +adduser -S -D -H -h /var/www -s /sbin/nologin -G apache -g apache apache 2>/dev/null +addgroup apache www-data 2>/dev/null + +exit 0 |