mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 09:42:15 +03:00
permission set feature
This commit is contained in:
parent
a7979e6006
commit
ab2e096f7b
1 changed files with 6 additions and 1 deletions
|
@ -13,6 +13,7 @@ import hashlib
|
|||
import datetime
|
||||
import uuid
|
||||
|
||||
|
||||
class Util:
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
@ -243,3 +244,7 @@ class Util:
|
|||
@staticmethod
|
||||
def generate_uuid():
|
||||
return str(uuid.uuid4())
|
||||
|
||||
@staticmethod
|
||||
def set_permission(path, permission_code):
|
||||
Util.execute('chmod {} {}'.format(permission_code, path))
|
||||
|
|
Loading…
Reference in a new issue