emul64: use public init method for gumd service
[platform/upstream/gumd.git] / test / data / gumd.conf
1 #
2 # gumd Configuration file.
3 #
4
5 #
6 # This group contains top-level settings.
7 #
8 [General]
9
10 # Comma separate listed of groups, which every user (other than system user)
11 # will be added to at the time of user account creation. Default value is:
12 # ''
13 DEFAULT_USR_GROUPS=
14
15 # Primary group name for the new user. If the primary group does not
16 # exist, it will be created otherwise user gid will be set accordingly.
17 # Default primary group name is same as name of the user.
18 #USR_PRIMARY_GRPNAME=users
19
20 # Comma separate listed of groups, which admin user will be added to at the
21 # time of user account creation. Default value is: ''
22 #DEFAULT_ADMIN_GROUPS=
23
24 # Path to passwd file which represents user information. Default is
25 # /etc/passwd. More information about the file format can be read at the
26 # manpages for 'passwd'.
27 # Can be overriden in debug builds by setting UM_PASSWD_FILE
28 # environment variable.
29 #PASSWD_FILE=/etc/passwd
30
31 # Path to shadow file which represents user shadowed password information.
32 # Default is /etc/shadow. More information about the file format can be read
33 # at the manpages for 'shadow'.
34 # Can be overriden in debug builds by setting UM_SHADOW_FILE
35 # environment variable.
36 #SHADOW_FILE=/etc/shadow
37
38 # Path to group file which represents group information. Default is /etc/group.
39 # More information about the file format can be read at the manpages for
40 # 'group'.
41 # Can be overriden in debug builds by setting UM_GROUP_FILE
42 # environment variable.
43 #GROUP_FILE=/etc/group
44
45 # Path to group file which represents shadowed group information.
46 # Default is /etc/gshadow. More information about the file format can be read
47 # at the manpages for 'gshadow'.
48 # Can be overriden in debug builds by setting UM_GSHADOW_FILE
49 # environment variable.
50 #GSHADOW_FILE=/etc/gshadow
51
52 # Prefix to be used when creating home directory for the user. For example,
53 # with prefix '/home', user 'newu' home directory will be created as
54 # '/home/newu'. Default value is '/home'
55 # Can be overriden in debug builds by setting UM_HOMEDIR_PREFIX
56 # environment variable.
57 #HOME_DIR=/home
58
59 # Path to user shell executable. Default value is '/bin/bash'
60 #SHELL=/bin/bash
61
62 # Path to skeleton folder. When new users are created, contents of the skel
63 # folder is copied to user home directory. Default value is '/etc/skel'
64 # Can be overriden in debug builds by setting UM_SKEL_DIR
65 # environment variable.
66 #SKEL_DIR=/etc/skel
67
68 # Minimum value for the automatic uid selection. Default value is: 1000
69 #UID_MIN=1000
70
71 # Maximum value for the automatic uid selection. Default value is: 60000
72 #UID_MAX=60000
73
74 # Minimum value for the automatic uid selection for system user. Default
75 # value is: 100
76 #SYS_UID_MIN=100
77
78 # Maximum value for the automatic uid selection for system user. Default value
79 # is: 999
80 #SYS_UID_MAX=999
81
82 # Minimum value for the automatic gid selection. Default value is: 1000
83 #GID_MIN=1000
84
85 # Maximum value for the automatic gid selection. Default value is: 60000
86 #GID_MAX=60000
87
88 # Minimum value for the automatic gid selection for system user. Default value
89 # is: 100
90 #SYS_GID_MIN=100
91
92 # Maximum value for the automatic gid selection for system user. Default value
93 # is: 999
94 #SYS_GID_MAX=999
95
96 # Minimum number of days a password may be used. Default value is: 0
97 #PASS_MIN_DAYS=0
98
99 # Maximum number of days allowed between password changes. Default value is:
100 # 99999
101 #PASS_MAX_DAYS=99999
102
103 # Number of days warning given before a password expires. Default value is:
104 # 7
105 #PASS_WARN_AGE=7
106
107 # Value used to set the mode of home directories created for new users.
108 # Default value is: 077
109 #UMASK=077
110
111 # Value used to set the encryption algorithm. Default
112 # value is: 'SHA512' (other supported options are: 'MD5', 'SHA256', 'DES')
113 #ENCRYPT_METHOD=SHA512
114
115 #
116 # D-Bus related settings.
117 #
118 [ObjectTimeouts]
119
120 # Timeout in seconds for the daemon. Daemon will exit after specified idle time.
121 # If not set (or set to 0), the daemon will not exit. Has no effect if P2P DBus
122 # is in use.
123 DAEMON_TIMEOUT=7
124
125 # Timeout in seconds for user dbus objects. If not set (or set to 0), the dbus
126 # objects will persist
127 #USER_TIMEOUT=5
128
129 # Timeout in seconds for group dbus objects. If not set (or set to 0), the dbus
130 # objects will persist
131 #GROUP_TIMEOUT=5