mirror of
https://github.com/stucki/docker-lineageos
synced 2024-12-19 17:12:29 -05:00
9 lines
254 B
Bash
9 lines
254 B
Bash
#!/bin/sh
|
|
|
|
# Fix console permissions as long as https://github.com/docker/docker/issues/9806 is not fixed
|
|
usermod --groups tty --append cmbuild
|
|
chgrp tty /dev/console
|
|
chmod g+rw /dev/console
|
|
|
|
su -c "cd /home/cmbuild/android; screen -s /bin/bash" cmbuild
|