Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
05e7cd4a
Commit
05e7cd4a
authored
Jul 02, 2017
by
Stéphane Graber
Committed by
GitHub
Jul 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1664 from d4s/altlinux-template
Added '--apt-conf' argument for ALTLinux template.
parents
5147c5ee
bffda95b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
lxc-altlinux.in
templates/lxc-altlinux.in
+14
-2
No files found.
templates/lxc-altlinux.in
View file @
05e7cd4a
...
@@ -166,6 +166,15 @@ EOF
...
@@ -166,6 +166,15 @@ EOF
download_altlinux
()
download_altlinux
()
{
{
if
[
-z
"
$aptconfver
"
]
;
then
case
"
$release
"
in
sisyphus
)
aptconfver
=
apt-conf-sisyphus
;;
*
)
aptconfver
=
apt-conf-branch
;;
esac
fi
# check the mini altlinux was not already downloaded
# check the mini altlinux was not already downloaded
INSTALL_ROOT
=
$cache
/partial
INSTALL_ROOT
=
$cache
/partial
mkdir
-p
$INSTALL_ROOT
mkdir
-p
$INSTALL_ROOT
...
@@ -179,7 +188,7 @@ download_altlinux()
...
@@ -179,7 +188,7 @@ download_altlinux()
APT_GET
=
"apt-get -o RPM::RootDir=
$INSTALL_ROOT
-y"
APT_GET
=
"apt-get -o RPM::RootDir=
$INSTALL_ROOT
-y"
PKG_LIST
=
"
$(
grep
-hs
'^[^#]'
"
$profile_dir
/
$profile
"
)
"
PKG_LIST
=
"
$(
grep
-hs
'^[^#]'
"
$profile_dir
/
$profile
"
)
"
# if no configuration file $profile -- fall back to default list of packages
# if no configuration file $profile -- fall back to default list of packages
[
-z
"
$PKG_LIST
"
]
&&
PKG_LIST
=
"interactivesystem apt
apt-conf
etcnet-full openssh-server systemd-sysvinit systemd-units systemd NetworkManager-daemon"
[
-z
"
$PKG_LIST
"
]
&&
PKG_LIST
=
"interactivesystem apt
$aptconfver
etcnet-full openssh-server systemd-sysvinit systemd-units systemd NetworkManager-daemon"
mkdir
-p
$INSTALL_ROOT
/var/lib/rpm
mkdir
-p
$INSTALL_ROOT
/var/lib/rpm
rpm
--root
$INSTALL_ROOT
--initdb
rpm
--root
$INSTALL_ROOT
--initdb
...
@@ -362,6 +371,7 @@ usage:
...
@@ -362,6 +371,7 @@ usage:
[-4|--ipv4=<ipv4 address>] [-6|--ipv6=<ipv6 address>]
[-4|--ipv4=<ipv4 address>] [-6|--ipv6=<ipv6 address>]
[-g|--gw=<gw address>] [-d|--dns=<dns address>]
[-g|--gw=<gw address>] [-d|--dns=<dns address>]
[-P|--profile=<name of the profile>] [--rootfs=<path>]
[-P|--profile=<name of the profile>] [--rootfs=<path>]
[-a|--apt-conf=<apt-conf>]
[-A|--arch=<arch of the container>]
[-A|--arch=<arch of the container>]
[-h|--help]
[-h|--help]
Mandatory args:
Mandatory args:
...
@@ -375,6 +385,7 @@ Optional args:
...
@@ -375,6 +385,7 @@ Optional args:
-g,--gw specify the default gw, eg. 192.168.1.1
-g,--gw specify the default gw, eg. 192.168.1.1
-G,--gw6 specify the default gw, eg. 2003:db8:1:0:214:1234:fe0b:3596
-G,--gw6 specify the default gw, eg. 2003:db8:1:0:214:1234:fe0b:3596
-d,--dns specify the DNS server, eg. 192.168.1.2
-d,--dns specify the DNS server, eg. 192.168.1.2
-a,--apt-conf specify preferred 'apt-conf' package, eg. 'apt-conf-branch'
-P,--profile Profile name is the file name in /etc/lxc/profiles contained packages name for install to cache.
-P,--profile Profile name is the file name in /etc/lxc/profiles contained packages name for install to cache.
-A,--arch NOT USED YET. Define what arch the container will be [i686,x86_64]
-A,--arch NOT USED YET. Define what arch the container will be [i686,x86_64]
---rootfs rootfs path
---rootfs rootfs path
...
@@ -383,7 +394,7 @@ EOF
...
@@ -383,7 +394,7 @@ EOF
return
0
return
0
}
}
options
=
$(
getopt
-o
hp:n:P:cR:4:6:g:d:
-l
help
,rootfs:,path:,name:,profile:,clean,release:,ipv4:,ipv6:,gw:,dns
:
--
"
$@
"
)
options
=
$(
getopt
-o
hp:n:P:cR:4:6:g:d:
a:
-l
help
,rootfs:,path:,name:,profile:,clean,release:,ipv4:,ipv6:,gw:,dns:,apt-conf
:
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
usage
$(
basename
$0
)
usage
$(
basename
$0
)
exit
1
exit
1
...
@@ -404,6 +415,7 @@ do
...
@@ -404,6 +415,7 @@ do
-6
|
--ipv6
)
ipv6
=
$2
;
shift
2
;;
-6
|
--ipv6
)
ipv6
=
$2
;
shift
2
;;
-g
|
--gw
)
gw
=
$2
;
shift
2
;;
-g
|
--gw
)
gw
=
$2
;
shift
2
;;
-d
|
--dns
)
dns
=
$2
;
shift
2
;;
-d
|
--dns
)
dns
=
$2
;
shift
2
;;
-a
|
--apt-conf
)
aptconfver
=
$2
;
shift
2
;;
--
)
shift
1
;
break
;;
--
)
shift
1
;
break
;;
*
)
break
;;
*
)
break
;;
esac
esac
...
...
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