Exemple #1
0
def display_aup():
    print('''
Use of Tapis requires acceptance of the TACC Acceptable Use Policy 
which can be found at https://portal.tacc.utexas.edu/tacc-usage-policy
''')
    return prompt_accept('Do you agree to abide by this AUP?',
                         None,
                         exit_reject=True)
Exemple #2
0
def display_coc():
    print('''
Use of Tapis requires acceptance of the Tapis Project Code of Conduct
which can be found at https://tapis-project.org/code-conduct
''')
    return prompt_accept('Do you agree to abide by this CoC?',
                         None,
                         exit_reject=True)
Exemple #3
0
def opt_in_reporting():
    print('''
To improve our ability to support Tapis and the Tapis CLI, we would like to
collect your IP address, operating system and Python version. No personally-
identifiable information will be collected. This data will only be shared in
aggregate form with funders and Tapis platform stakeholders.
''')
    return prompt_accept('Do you consent to this reporting?',
                         'y',
                         exit_reject=False)