aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'policy/modules/contrib/livecd.if')
-rw-r--r--policy/modules/contrib/livecd.if102
1 files changed, 0 insertions, 102 deletions
diff --git a/policy/modules/contrib/livecd.if b/policy/modules/contrib/livecd.if
deleted file mode 100644
index e3541811a..000000000
--- a/policy/modules/contrib/livecd.if
+++ /dev/null
@@ -1,102 +0,0 @@
-## <summary>Tool for building alternate livecd for different os and policy versions.</summary>
-
-########################################
-## <summary>
-## Execute a domain transition to run livecd.
-## </summary>
-## <param name="domain">
-## <summary>
-## Domain allowed to transition.
-## </summary>
-## </param>
-#
-interface(`livecd_domtrans',`
- gen_require(`
- type livecd_t, livecd_exec_t;
- ')
-
- corecmd_search_bin($1)
- domtrans_pattern($1, livecd_exec_t, livecd_t)
-')
-
-########################################
-## <summary>
-## Execute livecd in the livecd
-## domain, and allow the specified
-## role the livecd domain.
-## </summary>
-## <param name="domain">
-## <summary>
-## Domain allowed to transition.
-## </summary>
-## </param>
-## <param name="role">
-## <summary>
-## Role allowed access.
-## </summary>
-## </param>
-#
-interface(`livecd_run',`
- gen_require(`
- attribute_role livecd_roles;
- ')
-
- livecd_domtrans($1)
- roleattribute $2 livecd_roles;
-')
-
-########################################
-## <summary>
-## Read livecd temporary files.
-## </summary>
-## <param name="domain">
-## <summary>
-## Domain allowed access.
-## </summary>
-## </param>
-#
-interface(`livecd_read_tmp_files',`
- gen_require(`
- type livecd_tmp_t;
- ')
-
- files_search_tmp($1)
- read_files_pattern($1, livecd_tmp_t, livecd_tmp_t)
-')
-
-########################################
-## <summary>
-## Read and write livecd temporary files.
-## </summary>
-## <param name="domain">
-## <summary>
-## Domain allowed access.
-## </summary>
-## </param>
-#
-interface(`livecd_rw_tmp_files',`
- gen_require(`
- type livecd_tmp_t;
- ')
-
- files_search_tmp($1)
- rw_files_pattern($1, livecd_tmp_t, livecd_tmp_t)
-')
-
-########################################
-## <summary>
-## Read and write livecd semaphores.
-## </summary>
-## <param name="domain">
-## <summary>
-## Domain allowed access.
-## </summary>
-## </param>
-#
-interface(`livecd_rw_semaphores',`
- gen_require(`
- type livecd_t;
- ')
-
- allow $1 livecd_t:sem rw_sem_perms;
-')