allow user arg for backup
This commit is contained in:
parent
0a445d1ab3
commit
b5c40b29d2
@ -64,6 +64,9 @@ Usage:
|
||||
|
||||
plex_api_share.py --backup
|
||||
- Backup all user shares to a json file
|
||||
|
||||
plex_api_share.py --backup --user USER
|
||||
- Backup USER shares to a json file
|
||||
|
||||
plex_api_share.py --restore
|
||||
- Only restore all Plex user's shares and settings from backup json file
|
||||
@ -425,7 +428,10 @@ if __name__ == "__main__":
|
||||
if opts.backup:
|
||||
print('Backing up share information...')
|
||||
users_shares = []
|
||||
for user in user_lst:
|
||||
# If user arg is defined then abide, else backup all
|
||||
if not users:
|
||||
users = user_lst
|
||||
for user in users:
|
||||
# print('...Found {}'.format(user))
|
||||
users_shares.append(find_shares(user))
|
||||
json_file = '{}_Plex_share_backup_{}.json'.format(plex.friendlyName, timestr)
|
||||
|
Loading…
Reference in New Issue
Block a user