/usr/share/doc/postbooks-schema-empty/init.sql is in postbooks-schema-empty 4.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | --
-- This script creates the group xtrole and the user admin
--
--
-- Create the xtrole group
--
CREATE GROUP xtrole;
--
-- Create the admin user with createdb and createuser
-- permissions. Place the user in the xtrole group and
-- set the password to the default of admin.
--
CREATE USER admin WITH PASSWORD 'admin'
CREATEDB CREATEUSER
IN GROUP xtrole;
|