File: basic.if

package info (click to toggle)
selint 1.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,948 kB
  • sloc: ansic: 12,163; yacc: 1,149; makefile: 389; lex: 183; sh: 11
file content (20 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## <summary> Some interfaces for test </summary>

# Comments get ignored
interface(`basic_domtrans',`
	gen_require(`
		type basic_t, basic_exec_t;
	')

	domtrans_pattern($1, basic_exec_t, basic_t)
')

template(`basic_template',`
	gen_require(`
		type basic_t;
	')

	type $1_basic_t;

	allow $1_basic_t basic_t:process signal;
')