diff -r 000000000000 -r 28b7682d5476 pre_init.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pre_init.sh Tue Nov 04 18:26:39 2014 +0100 @@ -0,0 +1,59 @@ +#!/bin/sh + +# ------------------------------------------------------------ +# opensecurity package file +# +# Autor: X-Net Services GmbH +# +# Copyright 2013-2014 X-Net and AIT Austrian Institute of Technology +# +# +# X-Net Technologies GmbH +# Elisabethstrasse 1 +# 4020 Linz +# AUSTRIA +# https://www.x-net.at +# +# AIT Austrian Institute of Technology +# Donau City Strasse 1 +# 1220 Wien +# AUSTRIA +# http://www.ait.ac.at +# +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ------------------------------------------------------------ + +DEVICE="$1" + +# This script makes sure that the stick is unmounted and unused +# Run this Script before the init process + +# make sure to have "/dev/sdb" (not "/dev/sdb1") +#DEVICE="${DEVICE:0:8}" the bash way does not work in dash -.- +DEVICE="$(echo "$DEVICE" | awk '{print substr($1,0,9)}')" + +# make sure the device is not mounted +chattr -i "/tmp/usbmount" +umount /tmp/usbmount/* +sleep 1 +rmdir /tmp/usbmount/* +umount /media/usb* + +# search for already encrypted volumes +device=$(encryptionprovider.py -g) + +if [ "$?" = "0" ] +then + encryptionprovider.py -u $device +fi \ No newline at end of file