Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kwabena Antwi-Boasiako
slapos
Commits
d23ea6fd
Commit
d23ea6fd
authored
Apr 15, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove cygwin scripts.
parent
2c695d00
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
838 deletions
+0
-838
component/cygwin/brctl
component/cygwin/brctl
+0
-31
component/cygwin/groupadd
component/cygwin/groupadd
+0
-40
component/cygwin/ip
component/cygwin/ip
+0
-624
component/cygwin/tunctl
component/cygwin/tunctl
+0
-69
component/cygwin/useradd
component/cygwin/useradd
+0
-74
No files found.
component/cygwin/brctl
deleted
100755 → 0
View file @
2c695d00
#! /bin/bash
# ------------------------------------------------------------------------------
# Copyright (c) 2010, 2011, 2012 Vifib SARL and Contributors.
# All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ------------------------------------------------------------------------------
#
if
[[
"
$1
"
==
"show"
]]
;
then
netsh bridge show adapter
fi
;
component/cygwin/groupadd
deleted
100755 → 0
View file @
2c695d00
#! /bin/bash
# ------------------------------------------------------------------------------
# Copyright (c) 2010, 2011, 2012 Vifib SARL and Contributors.
# All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ------------------------------------------------------------------------------
#
# Simulate the command groupadd to add a group on the Windows
#
ACTION
=
ADD
GROUP_NAME
=
$1
net localgroup
"
${
GROUP_NAME
}
"
/
${
ACTION
}
if
((
$?
==
0
))
;
then
if
[[
$ACTION
==
"ADD"
]]
;
then
mkgroup |
grep
"^
${
GROUP_NAME
}
:"
>>
/etc/group
elif
[[
$ACTION
==
"DELETE"
]]
;
then
sed
-i
-e
"s/^
${
GROUP_NAME
}
:.*//g"
/etc/group
fi
fi
component/cygwin/ip
deleted
100755 → 0
View file @
2c695d00
This diff is collapsed.
Click to expand it.
component/cygwin/tunctl
deleted
100755 → 0
View file @
2c695d00
#! /bin/bash
# ------------------------------------------------------------------------------
# Copyright (c) 2010, 2011, 2012 Vifib SARL and Contributors.
# All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ------------------------------------------------------------------------------
#
# Simulate the command tunctl on the Cygwin
#
# tunctl -t INTERFACE_NAME -u OWNER_USER
#
# tunctl -d INTERFACE_NAME
#
# Delete the specified interfacename (set it to non-persistent)
#
dev
=
$(
cygpath
"/etc/openvpn/driver/OemWin2k.inf"
)
cmd
=
/usr/bin/devcon.exe
hwid
=
tap0901
vbscript
=
/etc/openvpn/check_and_close_driver_sign_dialog.vbs
if
!
[[
-f
$vbscript
]]
;
then
cat
<<
EOF
>
$vbscript
Set oShell = CreateObject("WScript.Shell")
Do
If oShell.AppActivate("Hardware Installation") Then
oShell.SendKeys "%C"
WScript.Sleep 3000
End If
WScript.Sleep 500
Loop While True
EOF
fi
if
[[
"
$1
"
==
"-t"
]]
;
then
INTERFACE_NAME
=
"
$2
"
cscript.exe
$vbscript
>
/dev/null &
$cmd
install
$dev
$hwid
kill
%
"cscript.exe
$vbscript
"
elif
[[
"
$1
"
==
"-d"
]]
;
then
INTERFACE_NAME
=
"
$2
"
$cmd
remove
$hwid
fi
component/cygwin/useradd
deleted
100755 → 0
View file @
2c695d00
#! /bin/bash
# ------------------------------------------------------------------------------
# Copyright (c) 2010, 2011, 2012 Vifib SARL and Contributors.
# All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ------------------------------------------------------------------------------
#
# Simulate the command useradd to add a user on the Cygwin
# useradd -d path -g init-group -s /bin/false -G group NAME
#
# -g, --gid GROUP
# The group name or number of the user's new initial login group. The group must exist.
#
# -G, --groups GROUP1[,GROUP2,...[,GROUPN]]]
# A list of supplementary groups which the user is also a member of.
# -s
# Shell used by user
#
ACTION
=
ADD
while
getopts
"Dd:g:G:p:s:r"
opt
;
do
case
$opt
in
d
)
USER_HOME
=
$OPTARG
;;
g|G
)
USER_GROUP
=
$OPTARG
;;
p
)
USER_PASSWORD
=
$OPTARG
;;
s
)
;;
r
)
;;
*
)
echo
Error when add user
in
the Cygwin
exit
1
;;
esac
done
shift
$((
$OPTIND
-
1
))
USER_NAME
=
$1
net user
"
${
USER_NAME
}
"
"
${
USER_NAME
}
"
/
${
ACTION
}
if
((
$?
==
0
))
;
then
if
[[
$ACTION
==
"ADD"
]]
;
then
mkpasswd |
grep
"^
${
USER_NAME
}
:"
>>
/etc/passwd
elif
[[
$ACTION
==
"DELETE"
]]
;
then
sed
-i
-e
"s/^
${
USER_NAME
}
:.*//g"
/etc/passwd
fi
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment