HomeSort by: relevance | last modified time | path
    Searched refs:user (Results 1 - 25 of 1539) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/utils/embedded/files/
creds_msdos 32 # "sshkeyfile <user> <path on msdos>"
33 # "sshkey <user> <entry>"
34 # "useraddhash <user> <passwd hash>"
35 # "useradd <user> <passwd>"
55 local user="$1"
59 if ! id -u "${user}" > /dev/null 2>&1; then
60 useradd -m -G "${group}" "${user}" || fail "Useradd failed."
63 eval ssh_userdir=~"${user}/.ssh"
66 chown "${user}" "${ssh_userdir}"
72 local user="$1
    [all...]
creds_msdos 32 # "sshkeyfile <user> <path on msdos>"
33 # "sshkey <user> <entry>"
34 # "useraddhash <user> <passwd hash>"
35 # "useradd <user> <passwd>"
55 local user="$1"
59 if ! id -u "${user}" > /dev/null 2>&1; then
60 useradd -m -G "${group}" "${user}" || fail "Useradd failed."
63 eval ssh_userdir=~"${user}/.ssh"
66 chown "${user}" "${ssh_userdir}"
72 local user="$1
    [all...]
creds_msdos 32 # "sshkeyfile <user> <path on msdos>"
33 # "sshkey <user> <entry>"
34 # "useraddhash <user> <passwd hash>"
35 # "useradd <user> <passwd>"
55 local user="$1"
59 if ! id -u "${user}" > /dev/null 2>&1; then
60 useradd -m -G "${group}" "${user}" || fail "Useradd failed."
63 eval ssh_userdir=~"${user}/.ssh"
66 chown "${user}" "${ssh_userdir}"
72 local user="$1
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvif/
nouveau_nvif_user.c 27 #include <nvif/user.h>
35 if (device->user.func) {
36 nvif_object_fini(&device->user.object);
37 device->user.func = NULL;
54 if (device->user.func)
62 &device->user.object);
66 nvif_object_map(&device->user.object, NULL, 0);
67 device->user.func = users[cid].func;
nouveau_nvif_user.c 27 #include <nvif/user.h>
35 if (device->user.func) {
36 nvif_object_fini(&device->user.object);
37 device->user.func = NULL;
54 if (device->user.func)
62 &device->user.object);
66 nvif_object_map(&device->user.object, NULL, 0);
67 device->user.func = users[cid].func;
nouveau_nvif_user.c 27 #include <nvif/user.h>
35 if (device->user.func) {
36 nvif_object_fini(&device->user.object);
37 device->user.func = NULL;
54 if (device->user.func)
62 &device->user.object);
66 nvif_object_map(&device->user.object, NULL, 0);
67 device->user.func = users[cid].func;
nouveau_nvif_userc361.c 27 #include <nvif/user.h>
30 nvif_userc361_doorbell(struct nvif_user *user, u32 token)
32 nvif_wr32(&user->object, 0x90, token);
nouveau_nvif_userc361.c 27 #include <nvif/user.h>
30 nvif_userc361_doorbell(struct nvif_user *user, u32 token)
32 nvif_wr32(&user->object, 0x90, token);
nouveau_nvif_userc361.c 27 #include <nvif/user.h>
30 nvif_userc361_doorbell(struct nvif_user *user, u32 token)
32 nvif_wr32(&user->object, 0x90, token);
  /src/usr.sbin/bootp/bootpd/
syslog.conf 9 # Note: Have to exclude user from most lines so that user.alert
10 # and user.emerg are not included, because old sendmails
13 # can remove all the special cases for "user" logging.
15 #*.err;kern.debug;auth.notice;user.none /dev/console
16 kern.debug;user,mail.crit;auth.notice /dev/console
19 #*.err;kern.debug;daemon,auth.notice;mail.crit;user.none /var/adm/messages
20 kern.debug;user,mail.crit;auth.notice /var/adm/messages
25 *.alert;kern.err;daemon.err;user.none operator
26 *.alert;user.none roo
    [all...]
syslog.conf 9 # Note: Have to exclude user from most lines so that user.alert
10 # and user.emerg are not included, because old sendmails
13 # can remove all the special cases for "user" logging.
15 #*.err;kern.debug;auth.notice;user.none /dev/console
16 kern.debug;user,mail.crit;auth.notice /dev/console
19 #*.err;kern.debug;daemon,auth.notice;mail.crit;user.none /var/adm/messages
20 kern.debug;user,mail.crit;auth.notice /var/adm/messages
25 *.alert;kern.err;daemon.err;user.none operator
26 *.alert;user.none roo
    [all...]
syslog.conf 9 # Note: Have to exclude user from most lines so that user.alert
10 # and user.emerg are not included, because old sendmails
13 # can remove all the special cases for "user" logging.
15 #*.err;kern.debug;auth.notice;user.none /dev/console
16 kern.debug;user,mail.crit;auth.notice /dev/console
19 #*.err;kern.debug;daemon,auth.notice;mail.crit;user.none /var/adm/messages
20 kern.debug;user,mail.crit;auth.notice /var/adm/messages
25 *.alert;kern.err;daemon.err;user.none operator
26 *.alert;user.none roo
    [all...]
  /src/lib/libpam/modules/pam_login_access/
pam_login_access.c 64 const void *rhost, *tty, *user; local in function:pam_sm_acct_mgmt
68 pam_err = pam_get_item(pamh, PAM_USER, &user);
72 if (user == NULL)
75 PAM_LOG("Got user: %s", (const char *)user);
88 PAM_LOG("Checking login.access for user %s on tty %s",
89 (const char *)user, (const char *)tty);
90 if (login_access(user, tty) != 0)
93 (const char *)user, (const char *)tty);
95 PAM_LOG("Checking login.access for user %s from host %s"
    [all...]
pam_login_access.c 64 const void *rhost, *tty, *user; local in function:pam_sm_acct_mgmt
68 pam_err = pam_get_item(pamh, PAM_USER, &user);
72 if (user == NULL)
75 PAM_LOG("Got user: %s", (const char *)user);
88 PAM_LOG("Checking login.access for user %s on tty %s",
89 (const char *)user, (const char *)tty);
90 if (login_access(user, tty) != 0)
93 (const char *)user, (const char *)tty);
95 PAM_LOG("Checking login.access for user %s from host %s"
    [all...]
pam_login_access.c 64 const void *rhost, *tty, *user; local in function:pam_sm_acct_mgmt
68 pam_err = pam_get_item(pamh, PAM_USER, &user);
72 if (user == NULL)
75 PAM_LOG("Got user: %s", (const char *)user);
88 PAM_LOG("Checking login.access for user %s on tty %s",
89 (const char *)user, (const char *)tty);
90 if (login_access(user, tty) != 0)
93 (const char *)user, (const char *)tty);
95 PAM_LOG("Checking login.access for user %s from host %s"
    [all...]
  /src/tests/usr.sbin/inetd/
inetd_ratelimit.conf 11 user = root,
21 user = root,
30 user = root,
39 user = root,
50 user = root,
59 user = root,
70 user = root,
80 user = root,
89 user = root,
98 user = root
    [all...]
inetd_ratelimit.conf 11 user = root,
21 user = root,
30 user = root,
39 user = root,
50 user = root,
59 user = root,
70 user = root,
80 user = root,
89 user = root,
98 user = root
    [all...]
inetd_ratelimit.conf 11 user = root,
21 user = root,
30 user = root,
39 user = root,
50 user = root,
59 user = root,
70 user = root,
80 user = root,
89 user = root,
98 user = root
    [all...]
  /src/distrib/utils/libhack/
getnetgr.c 38 getnetgrent(host, user, domain)
40 const char **user;
47 innetgr(grp, host, user, domain)
48 const char *grp, *host, *user, *domain;
getnetgr.c 38 getnetgrent(host, user, domain)
40 const char **user;
47 innetgr(grp, host, user, domain)
48 const char *grp, *host, *user, *domain;
getnetgr.c 38 getnetgrent(host, user, domain)
40 const char **user;
47 innetgr(grp, host, user, domain)
48 const char *grp, *host, *user, *domain;
  /src/lib/libpanel/
getuser.c 40 return p->user;
getuser.c 40 return p->user;
getuser.c 40 return p->user;
  /src/usr.sbin/user/
Makefile 10 PROG= user
11 SRCS+= user.c main.c
12 LINKS+= ${BINDIR}/user ${BINDIR}/useradd
13 LINKS+= ${BINDIR}/user ${BINDIR}/userdel
14 LINKS+= ${BINDIR}/user ${BINDIR}/usermod
15 LINKS+= ${BINDIR}/user ${BINDIR}/group
16 LINKS+= ${BINDIR}/user ${BINDIR}/groupadd
17 LINKS+= ${BINDIR}/user ${BINDIR}/groupdel
18 LINKS+= ${BINDIR}/user ${BINDIR}/groupmod
19 LINKS+= ${BINDIR}/user ${BINDIR}/userinf
    [all...]

Completed in 165 milliseconds

1 2 3 4 5 6 7 8 91011>>