1
|
<?php
|
2
|
|
3
|
global $priv_list;
|
4
|
|
5
|
/*
|
6
|
* USER PRIVILEGE DEFINITIONS
|
7
|
*/
|
8
|
|
9
|
$priv_list['user-shell-access'] = array();
|
10
|
$priv_list['user-shell-access']['name'] = "User - Shell account access";
|
11
|
$priv_list['user-shell-access']['descr'] = "Indicates whether the user is able to login for ".
|
12
|
"example via SSH.";
|
13
|
|
14
|
$priv_list['user-copy-files'] = array();
|
15
|
$priv_list['user-copy-files']['name'] = "User - Copy files";
|
16
|
$priv_list['user-copy-files']['descr'] = "Indicates whether the user is allowed to copy files ".
|
17
|
"onto the {$g['product_name']} appliance via SCP/SFTP. ".
|
18
|
"If you are going to use this privilege, you must install ".
|
19
|
"scponly on the appliance (Hint: pkg_add -r scponly).";
|
20
|
|
21
|
$priv_list['user-l2tp-dialin'] = array();
|
22
|
$priv_list['user-l2tp-dialin']['name'] = "User - L2TP Dialin";
|
23
|
$priv_list['user-l2tp-dialin']['descr'] = "Indicates whether the user is allowed to dial in via L2TP";
|
24
|
|
25
|
$priv_list['user-pptp-dialin'] = array();
|
26
|
$priv_list['user-pptp-dialin']['name'] = "User - PPTP Dialin";
|
27
|
$priv_list['user-pptp-dialin']['descr'] = "Indicates whether the user is allowed to dial in via PPTP";
|
28
|
|
29
|
$priv_list['user-pppoe-dialin'] = array();
|
30
|
$priv_list['user-pppoe-dialin']['name'] = "User - PPPOE Dialin";
|
31
|
$priv_list['user-pppoe-dialin']['descr'] = "Indicates whether the user is allowed to dial in via PPPOE";
|
32
|
|
33
|
?>
|