-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement option to use multiple accounts
- Fix #14 - Make configuration file user-friendly
- Loading branch information
Showing
3 changed files
with
53 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
# Set defaults here | ||
username='f2015022' | ||
password='myPass' | ||
# | ||
# This file is for the user configuration | ||
# Set some username and passwords according to you priority | ||
# | ||
# eg: if you have 2 IDs with 'ID1' being the most used, | ||
# then write this: | ||
# | ||
# username[1]='ID1' | ||
# password[1]='ID1_password' | ||
# username[2]='ID2' | ||
# password[2]='ID2_password' | ||
# | ||
# Use can use UNLIMITED ID and password combinations | ||
|
||
username[1]='f2015022' | ||
password[1]='myPass' | ||
|
||
username[2]='f2015023' | ||
password[2]='myPass2' | ||
|
||
# | ||
# Configure features | ||
|
||
# Always force login: | ||
# change to '1' to always use autologin | ||
f=0 | ||
|
||
login_url='https://10.1.0.10:8090/httpclient.html' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters