fix: enabling fstrim.timer from setup.py for updating users

This commit is contained in:
Simone Margaritelli 2019-11-08 13:36:27 +01:00
parent bf0e480266
commit fcb5c87ef0

View File

@ -37,7 +37,13 @@ def install_system_files():
os.system("systemctl daemon-reload")
def installer():
install_system_files()
# for people updating https://github.com/evilsocket/pwnagotchi/pull/551/files
os.system("systemctl enable fstrim.timer")
installer()
required = []
with open('requirements.txt') as fp: