VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testboxscript/linux/setup-routines.sh@ 53363

Last change on this file since 53363 was 52776, checked in by vboxsync, 10 years ago

fix OSE

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1#!/bin/sh
2# $Id: setup-routines.sh 52776 2014-09-17 14:51:43Z vboxsync $
3## @file
4# VirtualBox Validation Kit - TestBoxScript Service Setup.
5#
6
7#
8# Copyright (C) 2006-2014 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18# The contents of this file may alternatively be used under the terms
19# of the Common Development and Distribution License Version 1.0
20# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21# VirtualBox OSE distribution, in which case the provisions of the
22# CDDL are applicable instead of those of the GPL.
23#
24# You may elect to license modified versions of this file under the
25# terms and conditions of either the GPL or the CDDL or both.
26#
27
28
29# Load the routines we share with the linux installer.
30if test ! -r "${DIR}/linux/setup-installer-routines.sh" -a -r "${DIR}/../../Installer/linux/routines.sh"; then
31 . "${DIR}/../../Installer/linux/routines.sh"
32else
33 . "${DIR}/linux/setup-installer-routines.sh"
34fi
35
36
37os_load_config() {
38 if [ -d /etc/conf.d/ ]; then
39 MY_CONFIG_FILE="/etc/conf.d/testboxscript"
40 elif [ -d /etc/default/ ]; then
41 MY_CONFIG_FILE="/etc/default/testboxscript"
42 else
43 echo "Port me!"
44 exit 1;
45 fi
46 if [ -r "${MY_CONFIG_FILE}" ]; then
47 . "${MY_CONFIG_FILE}"
48 fi
49}
50
51os_install_service() {
52 #
53 # Install the runlevel script.
54 #
55 install_init_script "${TESTBOXSCRIPT_DIR}/testboxscript/linux/testboxscript-service.sh" "testboxscript-service"
56 set +e
57 delrunlevel "testboxscript-service" > /dev/null 2>&1
58 addrunlevel "testboxscript-service" 90 10
59 set -e
60
61 #
62 # Install the configuration file.
63 #
64 echo "# Generated by $0." > "${MY_CONFIG_FILE}"
65 set | sed -n -e '/^TESTBOXSCRIPT_/p' >> "${MY_CONFIG_FILE}"
66 return 0;
67}
68
69os_enable_service() {
70 /etc/init.d/testboxscript-service start
71 return 0;
72}
73
74os_disable_service() {
75 if [ -f /etc/init.d/testboxscript-service ]; then
76 /etc/init.d/testboxscript-service stop || true # Ignore
77 fi
78 return 0;
79}
80
81os_add_user() {
82 ADD_GROUPS=""
83 if ! grep -q wheel /etc/group; then
84 ADD_GROUPS="-G wheel"
85 fi
86 set -e
87 useradd -m -U -p password -s /bin/bash ${ADD_GROUPS} "${TESTBOXSCRIPT_USER}"
88 set +e
89 return 0;
90}
91
92check_for_cifs() {
93 test -x /sbin/mount.cifs -o -x /usr/sbin/mount.cifs
94 grep -wq cifs /proc/filesystems || modprobe cifs;
95 # Note! If modprobe doesn't work above, /sbin and /usr/sbin are probably missing from the search PATH.
96 return 0;
97}
98
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette