J'ai un script qui ajoute un nouvel utilisateur et crée un hôte virtuel pour le nom de domaine des utilisateurs. Le script fonctionne très bien avec une exception ... dans / etc / apache2 / sites-available / tous mes fichiers d'hôte virtuel ont deux copies, une avec un e et une sans.
Je crois que mon problème réside lorsque j'utilise la commande SED. Puis-je obtenir un deuxième avis?
Voici le script:
# set the working directory
dir=$(pwd)
# request the new domain name
printf "Enter the new domain name, without the www (i.e newdomain.com):\n"
read newdomain
# request the new username
printf "Enter the new username (i.e newusername):\n"
read username
# create the new user
sudo adduser $username
# copy the virtual host to sites-available
sudo cp /templates/domain-vhost /etc/apache2/sites-available/$newdomain
# echo results
echo "Successfully created the virtual host file at: /etc/apache2/sites-available/$newdomain.."
# change the domain name in the virtual host file
sudo sed -ie "s/NEWDOMAINNAME/$newdomain/" /etc/apache2/sites-available/$newdomain
# echo results
echo "Modified the virtual host to reflect the new domain: $newdomain.."
# change the directory path in the virtual host
sudo sed -ie "s/NEWUSERNAME/$username/" /etc/apache2/sites-available/$newdomain
# echo results
echo "Successfully modified the new virtual host file.."
# enable the site with apache
cd /etc/apache2/sites-available/
sudo a2ensite $newdomain
# echo results
echo "Successfully enabled the $newdomain.."
# change to previous working directory
cd $dir
# reload apache
sudo /etc/init.d/apache2 reload
# notify user of action
echo "Finished creating the new domain, $newdomain, and restarted Apache.."
Réponses:
Vous avez besoin de séparer
-i
et d'-e
arguments pour séduire.-ie
demande à sed de créer un fichier de sauvegarde avec un «e» ajouté.Pour corriger, remplacez simplement l'invocation sed ci-dessus pour:
la source