Last active
November 10, 2016 09:39
-
-
Save xerz-one/f84203d7eaad10c639d3e62372ca5bf8 to your computer and use it in GitHub Desktop.
"""Patch""" for a VM I made
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
#!/usr/bin/env bash | |
# Sorry for this atrocity. Trust me, it had to be this way. | |
sudo timedatectl set-ntp true | |
sudo chmod -R 777 ~ | |
# I tried to use Sed yet it's so ridiculously hard at times | |
sudo python - << 'EOF' | |
file = open('/usr/lib/systemd/system/tomcat8.service').readlines() | |
linePos = 0 | |
for id, line in enumerate(file): | |
if 'Environment=' in line: | |
linePos = id | |
break | |
file.insert(id, 'Environment=JAVA_HOME=/usr/lib/jvm/java-8-openjdk\n') | |
with open('/usr/lib/systemd/system/tomcat8.service', 'w') as output: | |
for line in file: | |
output.write(line) | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment