Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ds 716 #78

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions irods/files/rule-bases/cyverse_logic.re
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ cyverse_logic_acCreateUser {
# *DataObjInfo.logical_path,
# *DataObjInfo.data_owner_name,
# *DataObjInfo.data_owner_zone,
# int(*DataObjInfo.data_size),
# *DataObjInfo.data_size,
# *DataObjInfo.data_type,
# *Username,
# *Zone ),
Expand Down Expand Up @@ -1298,7 +1298,7 @@ cyverse_logic_dataObjCreated(*Username, *Zone, *DataObjInfo, *Step) {
*DataObjInfo.logical_path,
*DataObjInfo.data_owner_name,
*DataObjInfo.data_owner_zone,
int(*DataObjInfo.data_size),
*DataObjInfo.data_size,
*DataObjInfo.data_type,
*Username,
*Zone ),
Expand Down Expand Up @@ -1339,7 +1339,7 @@ cyverse_logic_dataObjMod(*Username, *Zone, *DataObjInfo) {
*DataObjInfo.logical_path,
*DataObjInfo.data_owner_name,
*DataObjInfo.data_owner_zone,
int(*DataObjInfo.data_size),
*DataObjInfo.data_size,
*DataObjInfo.data_type,
*Username,
*Zone );
Expand Down
4 changes: 1 addition & 3 deletions irods/library/irods_user
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# © 2023 The Arizona Board of Regents on behalf of The University of Arizona.
Expand All @@ -17,8 +17,6 @@ from typing import Optional

from ansible.module_utils.basic import AnsibleModule

__metaclass__ = type # pylint: disable=invalid-name

DOCUMENTATION = r'''
---
module: irods_user
Expand Down