still working
This commit is contained in:
parent
08c70cc18f
commit
eb90496cbc
8 changed files with 541 additions and 264 deletions
25
examples/init.d/00_proxy.sh
Normal file
25
examples/init.d/00_proxy.sh
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh
|
||||
echo "Configuring proxy settings..."
|
||||
|
||||
# Set proxy for Alpine package manager
|
||||
mkdir -p /etc/apk
|
||||
cat > /etc/apk/repositories << EOF
|
||||
http://dl-cdn.alpinelinux.org/alpine/latest-stable/main
|
||||
http://dl-cdn.alpinelinux.org/alpine/latest-stable/community
|
||||
|
||||
# Configure proxy
|
||||
proxy=http://proxy.example.com:8080
|
||||
EOF
|
||||
|
||||
# Set proxy for other tools
|
||||
export HTTP_PROXY="http://proxy.example.com:8080"
|
||||
export HTTPS_PROXY="http://proxy.example.com:8080"
|
||||
export NO_PROXY="localhost,127.0.0.1,.internal.example.com"
|
||||
|
||||
# Test proxy configuration
|
||||
echo "Testing proxy configuration..."
|
||||
if curl -s -m 5 https://www.google.com > /dev/null; then
|
||||
echo "Proxy configuration successful!"
|
||||
else
|
||||
echo "Warning: Proxy test failed. Check your proxy settings."
|
||||
fi
|
||||
20
examples/init.d/10_install_git.sh
Normal file
20
examples/init.d/10_install_git.sh
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
echo "Installing additional development tools..."
|
||||
|
||||
# Install git and related tools
|
||||
apk add git git-lfs
|
||||
|
||||
# Configure git defaults
|
||||
git config --global init.defaultBranch main
|
||||
git config --global core.editor vi
|
||||
git config --global pull.rebase false
|
||||
|
||||
# Add some helpful git aliases
|
||||
git config --global alias.st status
|
||||
git config --global alias.co checkout
|
||||
git config --global alias.br branch
|
||||
git config --global alias.ci commit
|
||||
git config --global alias.unstage 'reset HEAD --'
|
||||
git config --global alias.last 'log -1 HEAD'
|
||||
|
||||
echo "Git configuration complete."
|
||||
19
examples/init.d/20_custom_repos.sh
Normal file
19
examples/init.d/20_custom_repos.sh
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
echo "Setting up additional package repositories..."
|
||||
|
||||
# Add testing repository for newer packages
|
||||
echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
|
||||
|
||||
# Add community repository
|
||||
echo "@community http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
||||
|
||||
# Update package list
|
||||
apk update
|
||||
|
||||
# Install some useful tools from testing/community
|
||||
apk add \
|
||||
@testing golang \
|
||||
@community rust \
|
||||
@community cargo
|
||||
|
||||
echo "Additional repositories configured and packages installed."
|
||||
Loading…
Add table
Add a link
Reference in a new issue