Skip to content

Instantly share code, notes, and snippets.

@xerz-one
Last active November 10, 2016 09:39
Show Gist options
  • Save xerz-one/f84203d7eaad10c639d3e62372ca5bf8 to your computer and use it in GitHub Desktop.
Save xerz-one/f84203d7eaad10c639d3e62372ca5bf8 to your computer and use it in GitHub Desktop.
"""Patch""" for a VM I made
#!/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