diff --git a/refpolicy/policy/modules/admin/amanda.te b/refpolicy/policy/modules/admin/amanda.te
index ccb9d98..b4e07e0 100644
--- a/refpolicy/policy/modules/admin/amanda.te
+++ b/refpolicy/policy/modules/admin/amanda.te
@@ -206,7 +206,7 @@ allow amanda_recover_t amanda_recover_dir_t:file create_file_perms;
allow amanda_recover_t amanda_recover_dir_t:lnk_file create_lnk_perms;
allow amanda_recover_t amanda_recover_dir_t:sock_file create_file_perms;
allow amanda_recover_t amanda_recover_dir_t:fifo_file create_file_perms;
-userdom_create_sysadm_home(amanda_recover_t,amanda_recover_dir_t,{ dir file lnk_file sock_file fifo_file })
+userdom_filetrans_sysadm_home_dir(amanda_recover_t,amanda_recover_dir_t,{ dir file lnk_file sock_file fifo_file })
allow amanda_recover_t amanda_tmp_t:dir create_dir_perms;
allow amanda_recover_t amanda_tmp_t:file create_file_perms;
diff --git a/refpolicy/policy/modules/system/userdomain.if b/refpolicy/policy/modules/system/userdomain.if
index d95ac0c..3212b7d 100644
--- a/refpolicy/policy/modules/system/userdomain.if
+++ b/refpolicy/policy/modules/system/userdomain.if
@@ -3202,31 +3202,21 @@ interface(`userdom_dontaudit_read_sysadm_home_files',`
##
## Domain allowed access.
##
-##
+##
+## The type of the object to be created.
+##
+##
## The class of the object to be created.
## If not specified, file is used.
##
#
-interface(`userdom_create_sysadm_home',`
+interface(`userdom_filetrans_sysadm_home_dir',`
gen_require(`
- type sysadm_home_dir_t, sysadm_home_t;
+ type sysadm_home_dir_t;
')
allow $1 sysadm_home_dir_t:dir rw_dir_perms;
-
- ifelse(`$2',`',`
- ifelse(`$3',`',`
- type_transition $1 sysadm_home_dir_t:file sysadm_home_t;
- ',`
- type_transition $1 sysadm_home_dir_t:$3 sysadm_home_t;
- ')
- ',`
- ifelse(`$3',`',`
- type_transition $1 sysadm_home_dir_t:file $2;
- ',`
- type_transition $1 sysadm_home_dir_t:$3 $2;
- ')
- ')
+ type_transition $1 sysadm_home_dir_t:$3 $2;
')
########################################