56k zeigt seine Werke - ab 25.10. in der vicious gallery. Man darf gespannt sein - brauch aber wohl erfahrungsgemäß nicht mit Enttäuschungen zu rechnen.
Rants, thoughts and fun about technology, society and more
import groovy.text.SimpleTemplateEngine
def engine = new SimpleTemplateEngine()
// read the content file into a string (name: first argument)
def contentFilename = args [0]
println "reading file $contentFilename"
def contentFile = new File(contentFilename)
def content = contentFile.text
// read the template file
// TODO: maybe read args[1] for template name and 2 for out name?!
//def templateFileName = args[1]
def templateText = new File("template.html").text
def binding = ["BODY":content]
// replace the $BODY variable with the content stuff
template = engine.createTemplate(templateText).make(binding)
//save as index.html
def outFile = new File("index.html")
outFile.delete()
outFile << template.toString()
modprobe cryptoloop
modprobe dm_crypt
...
Enter LUKS passphrase:
Failed to setup dm-crypt key mapping.
Check kernel for support for the aes-cbc-essiv:sha256 cipher spec and verify that /dev/sdb2 contains at least 133 sectors.
Failed to read from key storage
Command failed: No key available with this passphrase.