mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-23 14:32:08 +00:00
Correct some typos
Found by codespell Signed-off-by: Christian Göttsche <cgzones@googlemail.com> Acked-by: Petr Lautrbach <plautrba@redhat.com>
This commit is contained in:
parent
0b833973bf
commit
b1a3c2030c
@ -12,7 +12,7 @@ AUDITH ?= $(shell test -f $(INCLUDEDIR)/libaudit.h && echo y)
|
||||
# This will make newrole a setuid root program.
|
||||
# The capabilities used are: CAP_AUDIT_WRITE.
|
||||
AUDIT_LOG_PRIV ?= n
|
||||
# Enable capabilities to permit newrole to utilitize the pam_namespace module.
|
||||
# Enable capabilities to permit newrole to utilize the pam_namespace module.
|
||||
# This will make newrole a setuid root program.
|
||||
# The capabilities used are: CAP_SYS_ADMIN, CAP_CHOWN, CAP_FOWNER and
|
||||
# CAP_DAC_OVERRIDE.
|
||||
|
@ -1022,7 +1022,7 @@ static int set_signal_handles(void)
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
char *new_context = NULL; /* target security context */
|
||||
char *old_context = NULL; /* original securiy context */
|
||||
char *old_context = NULL; /* original security context */
|
||||
char *tty_context = NULL; /* current context of tty */
|
||||
char *new_tty_context = NULL; /* new context of tty */
|
||||
|
||||
|
@ -129,7 +129,7 @@ class SetImportFile(argparse.Action):
|
||||
sys.exit(1)
|
||||
setattr(namespace, self.dest, values)
|
||||
|
||||
# define dictonary for seobject OBEJCTS
|
||||
# define dictionary for seobject OBEJCTS
|
||||
object_dict = {
|
||||
'login': seobject.loginRecords,
|
||||
'user': seobject.seluserRecords,
|
||||
@ -146,7 +146,7 @@ object_dict = {
|
||||
}
|
||||
|
||||
def generate_custom_usage(usage_text, usage_dict):
|
||||
# generate custom usage from given text and dictonary
|
||||
# generate custom usage from given text and dictionary
|
||||
sorted_keys = []
|
||||
for i in usage_dict.keys():
|
||||
sorted_keys.append(i)
|
||||
@ -160,7 +160,7 @@ def generate_custom_usage(usage_text, usage_dict):
|
||||
|
||||
|
||||
def handle_opts(args, dict, target_key):
|
||||
# handle conflict and required options for given dictonary
|
||||
# handle conflict and required options for given dictionary
|
||||
# {action:[conflict_opts,require_opts]}
|
||||
|
||||
# first we need to catch conflicts
|
||||
|
@ -42,7 +42,7 @@ PERMS = 3
|
||||
ROLE = 4
|
||||
DEST_TYPE = 5
|
||||
|
||||
# String represenations of the above constants
|
||||
# String representations of the above constants
|
||||
field_to_str = ["source", "target", "object", "permission", "role", "destination" ]
|
||||
str_to_field = { "source" : SRC_TYPE, "target" : TGT_TYPE, "object" : OBJ_CLASS,
|
||||
"permission" : PERMS, "role" : ROLE, "destination" : DEST_TYPE }
|
||||
|
@ -1502,7 +1502,7 @@ class Grammar(object):
|
||||
self.Precedence = {} # Precedence rules for each terminal. Contains tuples of the
|
||||
# form ('right',level) or ('nonassoc', level) or ('left',level)
|
||||
|
||||
self.UsedPrecedence = set() # Precedence rules that were actually used by the grammer.
|
||||
self.UsedPrecedence = set() # Precedence rules that were actually used by the grammar.
|
||||
# This is only used to provide error checking and to generate
|
||||
# a warning about unused precedence rules.
|
||||
|
||||
|
@ -797,7 +797,7 @@ SELinux %(domainname)s policy is very flexible allowing users to setup their %(d
|
||||
.B STANDARD FILE CONTEXT
|
||||
|
||||
SELinux defines the file context types for the %(domainname)s, if you wanted to
|
||||
store files with these types in a diffent paths, you need to execute the semanage command to sepecify alternate labeling and then use restorecon to put the labels on disk.
|
||||
store files with these types in a diffent paths, you need to execute the semanage command to specify alternate labeling and then use restorecon to put the labels on disk.
|
||||
|
||||
.B semanage fcontext -a -t %(type)s '/srv/%(domainname)s/content(/.*)?'
|
||||
.br
|
||||
|
@ -360,7 +360,7 @@ dontauditx
|
||||
|
||||
Do not audit the access rights defined when access denied. This stops excessive log entries for known events.
|
||||
|
||||
Note that for this to work there must *also* be atleast one [`allowx`](cil_access_vector_rules.md#allowx) rule associated with the target type.
|
||||
Note that for this to work there must *also* be at least one [`allowx`](cil_access_vector_rules.md#allowx) rule associated with the target type.
|
||||
|
||||
Note that these rules can be omitted by the CIL compiler command line parameter `-D` or `--disable-dontaudit` flags.
|
||||
|
||||
|
@ -208,7 +208,7 @@
|
||||
<context name="String" attribute="String" lineEndContext="#stay">
|
||||
<RegExpr attribute="Char" context="#stay" String="#\\."/>
|
||||
|
||||
<!-- allow escaping " or similiar -->
|
||||
<!-- allow escaping " or similar -->
|
||||
<HlCStringChar attribute="String Char" context="#stay"/>
|
||||
|
||||
<DetectChar attribute="String" context="#pop" char="""/>
|
||||
|
@ -84,7 +84,7 @@
|
||||
)
|
||||
|
||||
|
||||
;; Inherting the abstract block causes the allow rule to be in the policy
|
||||
;; Inheriting the abstract block causes the allow rule to be in the policy
|
||||
(type t5)
|
||||
(block b5
|
||||
(blockabstract b5)
|
||||
|
Loading…
Reference in New Issue
Block a user