Confirmed users
1,377
edits
No edit summary |
|||
| Line 5: | Line 5: | ||
== Packages == | == Packages == | ||
Install the following packages: | Install the following packages: | ||
yum install createrepo rsync make | |||
== User Account == | |||
Create a user account for the user that will create the repo | |||
useradd fedora | |||
passwd fedora #used current root password | |||
== Generate SSH Key == | |||
Create an empty passphrase key to use for uploading to stage | |||
su - fedora | |||
mkdir .ssh | |||
chmod 700 .ssh | |||
cd .ssh | |||
ssh-keygen -t dsa -f fedorarepo-dsa -N "" | |||
# add any pubkeys needed now to ~/.ssh/authorized_keys | |||
chmod 600 * | |||
== Install Scripts == | |||
<tbd> | |||