Skip to content

Commit

Permalink
Replace pki_user/pki_group with PKIServer.user/group
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Nov 15, 2023
1 parent 20f1799 commit da09ae2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ def destroy(self, deployer):
# that are present in the corresponding configuration file
deployer.configuration_file.verify_command_matches_configuration_file()
# establish 'uid' and 'gid'
deployer.identity.set_uid(deployer.mdict['pki_user'])
deployer.identity.set_gid(deployer.mdict['pki_group'])
deployer.identity.set_uid(instance.user)
deployer.identity.set_gid(instance.group)
# get ports to remove selinux context
deployer.configuration_file.populate_non_default_ports()

Expand Down

0 comments on commit da09ae2

Please sign in to comment.