toaruos/util/update-devtable.py

29 lines
1.1 KiB
Python
Raw Normal View History

2018-07-18 07:03:13 +03:00
#!/usr/bin/env python3
import os
import glob
from pathlib import Path
with open('util/devtable','w') as devtable:
2018-07-19 08:09:49 +03:00
# Set sudo apps to setuid, executable, no write
devtable.write('/bin/gsudo f 4555 0 0 - - - - -\n')
devtable.write('/bin/sudo f 4555 0 0 - - - - -\n')
# Set master.passwd to not be visible except by root
2018-07-18 07:03:13 +03:00
devtable.write('/etc/master.passwd f 600 0 0 - - - - -\n') # /etc/master.passwd should be restricted
2018-07-19 08:09:49 +03:00
# Copy permissions and set ownership for user files
2018-07-18 07:03:13 +03:00
for user_details in [('local',1000)]:
user, uid = user_details
2018-07-19 03:38:20 +03:00
for path in glob.glob('./base/home/{user}/**'.format(user=user),recursive=True):
2018-07-18 07:03:13 +03:00
p = Path(path)
2018-07-19 08:09:49 +03:00
path_mod = path.replace('./base','').rstrip('/')
2018-07-18 07:03:13 +03:00
path_type = 'd' if p.is_dir() else 'f'
st = os.stat(path)
mode = '{:o}'.format(st.st_mode & 0o7777)
2018-07-19 03:38:20 +03:00
devtable.write('{path_mod} {path_type} {mode} {uid} {uid} - - - - -\n'.format(path_mod=path_mod,path_type=path_type,mode=mode,uid=uid))
2018-07-18 07:03:13 +03:00
2018-07-19 08:09:49 +03:00
# Special case /tmp to allow all users to write
devtable.write('/tmp d 777 0 0 - - - - -\n')